aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/SkSLGLSLCodeGenerator.h
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2016-11-17 16:13:37 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-18 14:34:08 +0000
commitd8df21a1e08b5b3380261f4b90acfbdc538ef93c (patch)
treed0d9454eec7c469335c40938aa497c055f89297b /src/sksl/SkSLGLSLCodeGenerator.h
parent833dcf48844dd053ddf7ecea20e3e1c2b6b47e01 (diff)
switched skslc from std::string to SkString
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4977 Change-Id: I15e24963b09b719a2c07da67745114f5ac66cee8 Reviewed-on: https://skia-review.googlesource.com/4977 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'src/sksl/SkSLGLSLCodeGenerator.h')
-rw-r--r--src/sksl/SkSLGLSLCodeGenerator.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/sksl/SkSLGLSLCodeGenerator.h b/src/sksl/SkSLGLSLCodeGenerator.h
index 16d6192a71..b8cb34e84f 100644
--- a/src/sksl/SkSLGLSLCodeGenerator.h
+++ b/src/sksl/SkSLGLSLCodeGenerator.h
@@ -12,6 +12,7 @@
#include <tuple>
#include <unordered_map>
+#include "SkStream.h"
#include "glsl/GrGLSLCaps.h"
#include "SkSLCodeGenerator.h"
#include "ir/SkSLBinaryExpression.h"
@@ -75,7 +76,7 @@ public:
: fContext(*context)
, fCaps(*caps) {}
- void generateCode(const Program& program, std::ostream& out) override;
+ void generateCode(const Program& program, SkWStream& out) override;
private:
void write(const char* s);
@@ -84,9 +85,9 @@ private:
void writeLine(const char* s);
- void write(const std::string& s);
+ void write(const SkString& s);
- void writeLine(const std::string& s);
+ void writeLine(const SkString& s);
void writeType(const Type& type);
@@ -156,9 +157,9 @@ private:
const Context& fContext;
const GrGLSLCaps& fCaps;
- std::ostream* fOut = nullptr;
- std::stringstream fHeader;
- std::string fFunctionHeader;
+ SkWStream* fOut = nullptr;
+ SkDynamicMemoryWStream fHeader;
+ SkString fFunctionHeader;
Program::Kind fProgramKind;
int fVarCount = 0;
int fIndentation = 0;