aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/SkSLGLSLCodeGenerator.h
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2017-06-27 14:36:24 +0000
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-06-27 14:36:44 +0000
commited50200682e0de72c3abecaa4d5324ebcd1ed9f9 (patch)
treef991fa9668072f9b87a9929c7834b55cd9175fff /src/sksl/SkSLGLSLCodeGenerator.h
parentccf59917d3fe7aaf59de714acfbd0596503f324f (diff)
Revert "sksl fragment processor support"
This reverts commit ccf59917d3fe7aaf59de714acfbd0596503f324f. Reason for revert: breaking iOS bots Original change's description: > sksl fragment processor support > > Bug: skia: > Change-Id: Ia3b0305c2b0c78074303831f628fb01852b90d34 > Reviewed-on: https://skia-review.googlesource.com/17843 > Commit-Queue: Ethan Nicholas <ethannicholas@google.com> > Reviewed-by: Ben Wagner <benjaminwagner@google.com> > Reviewed-by: Mike Klein <mtklein@google.com> TBR=mtklein@google.com,benjaminwagner@google.com,ethannicholas@google.com Change-Id: I0a33060c7c42c7b44c5c13d443ac42958291c2f1 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: skia: Reviewed-on: https://skia-review.googlesource.com/20962 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'src/sksl/SkSLGLSLCodeGenerator.h')
-rw-r--r--src/sksl/SkSLGLSLCodeGenerator.h26
1 files changed, 6 insertions, 20 deletions
diff --git a/src/sksl/SkSLGLSLCodeGenerator.h b/src/sksl/SkSLGLSLCodeGenerator.h
index c0a638797b..032b70eea1 100644
--- a/src/sksl/SkSLGLSLCodeGenerator.h
+++ b/src/sksl/SkSLGLSLCodeGenerator.h
@@ -13,7 +13,6 @@
#include <unordered_map>
#include "SkSLCodeGenerator.h"
-#include "SkSLStringStream.h"
#include "ir/SkSLBinaryExpression.h"
#include "ir/SkSLBoolLiteral.h"
#include "ir/SkSLConstructor.h"
@@ -33,7 +32,6 @@
#include "ir/SkSLPostfixExpression.h"
#include "ir/SkSLProgramElement.h"
#include "ir/SkSLReturnStatement.h"
-#include "ir/SkSLSetting.h"
#include "ir/SkSLStatement.h"
#include "ir/SkSLSwitchStatement.h"
#include "ir/SkSLSwizzle.h"
@@ -76,12 +74,11 @@ public:
GLSLCodeGenerator(const Context* context, const Program* program, ErrorReporter* errors,
OutputStream* out)
: INHERITED(program, errors, out)
- , fLineEnding("\n")
, fContext(*context) {}
- bool generateCode() override;
+ virtual bool generateCode() override;
-protected:
+private:
void write(const char* s);
void writeLine();
@@ -92,8 +89,6 @@ protected:
void writeLine(const String& s);
- virtual void writeHeader();
-
void writeType(const Type& type);
void writeExtension(const Extension& ext);
@@ -104,7 +99,7 @@ protected:
void writeFunctionDeclaration(const FunctionDeclaration& f);
- virtual void writeFunction(const FunctionDefinition& f);
+ void writeFunction(const FunctionDefinition& f);
void writeLayout(const Layout& layout);
@@ -112,13 +107,11 @@ protected:
void writeGlobalVars(const VarDeclaration& vs);
- virtual void writeVarInitializer(const Variable& var, const Expression& value);
-
void writeVarDeclarations(const VarDeclarations& decl, bool global);
void writeFragCoord();
- virtual void writeVariableReference(const VariableReference& ref);
+ void writeVariableReference(const VariableReference& ref);
void writeExpression(const Expression& expr, Precedence parentPrecedence);
@@ -134,13 +127,11 @@ protected:
void writeSwizzle(const Swizzle& swizzle);
- static Precedence GetBinaryPrecedence(Token::Kind op);
-
- virtual void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
+ void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence);
void writeTernaryExpression(const TernaryExpression& t, Precedence parentPrecedence);
- virtual void writeIndexExpression(const IndexExpression& expr);
+ void writeIndexExpression(const IndexExpression& expr);
void writePrefixExpression(const PrefixExpression& p, Precedence parentPrecedence);
@@ -152,8 +143,6 @@ protected:
void writeFloatLiteral(const FloatLiteral& f);
- virtual void writeSetting(const Setting& s);
-
void writeStatement(const Statement& s);
void writeStatements(const std::vector<std::unique_ptr<Statement>>& statements);
@@ -172,9 +161,6 @@ protected:
void writeReturnStatement(const ReturnStatement& r);
- virtual void writeProgramElement(const ProgramElement& e);
-
- const char* fLineEnding;
const Context& fContext;
StringStream fHeader;
String fFunctionHeader;