blob: 40d9982cc3f6ba8ffa14046e457c5c926af1bc07 [file] [log] [blame]
Ethan Nicholas762466e2017-06-29 10:03:38 -04001/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SKSL_CPPCODEGENERATOR
9#define SKSL_CPPCODEGENERATOR
10
11#include "SkSLGLSLCodeGenerator.h"
12#include "SkSLSectionAndParameterHelper.h"
13
14#include <set>
15
16namespace SkSL {
17
18class CPPCodeGenerator : public GLSLCodeGenerator {
19public:
20 CPPCodeGenerator(const Context* context, const Program* program, ErrorReporter* errors,
21 String name, OutputStream* out);
22
23 bool generateCode() override;
24
25private:
26 void writef(const char* s, va_list va) SKSL_PRINTF_LIKE(2, 0);
27
28 void writef(const char* s, ...) SKSL_PRINTF_LIKE(2, 3);
29
Ethan Nicholasf57c0d62017-07-31 11:18:22 -040030 bool writeSection(const char* name, const char* prefix = "");
Ethan Nicholas762466e2017-06-29 10:03:38 -040031
32 void writeHeader() override;
33
Ethan Nicholasf7b88202017-09-18 14:10:39 -040034 bool usesPrecisionModifiers() const override;
Ethan Nicholas762466e2017-06-29 10:03:38 -040035
Ethan Nicholasf7b88202017-09-18 14:10:39 -040036 String getTypeName(const Type& type) override;
Ethan Nicholas5af9ea32017-07-28 15:19:46 -040037
Ethan Nicholas762466e2017-06-29 10:03:38 -040038 void writeBinaryExpression(const BinaryExpression& b, Precedence parentPrecedence) override;
39
40 void writeIndexExpression(const IndexExpression& i) override;
41
Ethan Nicholasdcba08e2017-08-02 10:52:54 -040042 void writeIntLiteral(const IntLiteral& i) override;
43
Ethan Nicholas82399462017-10-16 12:35:44 -040044 void writeSwizzle(const Swizzle& swizzle) override;
45
Ethan Nicholas762466e2017-06-29 10:03:38 -040046 void writeVariableReference(const VariableReference& ref) override;
47
Ethan Nicholasceb4d482017-07-10 15:40:20 -040048 String getSamplerHandle(const Variable& var);
49
Ethan Nicholas6e1cbc02017-07-14 10:12:15 -040050 void writeIfStatement(const IfStatement& s) override;
51
52 void writeSwitchStatement(const SwitchStatement& s) override;
53
Ethan Nicholasceb4d482017-07-10 15:40:20 -040054 void writeFunctionCall(const FunctionCall& c) override;
55
Ethan Nicholas762466e2017-06-29 10:03:38 -040056 void writeFunction(const FunctionDefinition& f) override;
57
58 void writeSetting(const Setting& s) override;
59
60 void writeProgramElement(const ProgramElement& p) override;
61
62 void addUniform(const Variable& var);
63
64 // writes a printf escape that will be filled in at runtime by the given C++ expression string
Ethan Nicholasd608c092017-10-26 09:30:08 -040065 void writeRuntimeValue(const Type& type, const Layout& layout, const String& cppCode);
Ethan Nicholas762466e2017-06-29 10:03:38 -040066
67 void writeVarInitializer(const Variable& var, const Expression& value) override;
68
69 void writePrivateVars();
70
71 void writePrivateVarValues();
72
Ethan Nicholas5b6e6272017-10-13 13:11:06 -040073 void writeCodeAppend(const String& code);
74
Ethan Nicholas762466e2017-06-29 10:03:38 -040075 bool writeEmitCode(std::vector<const Variable*>& uniforms);
76
77 void writeSetData(std::vector<const Variable*>& uniforms);
78
79 void writeGetKey();
80
Brian Salomonf7dcd762018-07-30 14:48:15 -040081 void writeOnTextureSampler();
82
Ethan Nicholasf57c0d62017-07-31 11:18:22 -040083 void writeClone();
84
Ethan Nicholas762466e2017-06-29 10:03:38 -040085 void writeTest();
86
87 String fName;
88 String fFullName;
89 SectionAndParameterHelper fSectionAndParameterHelper;
90 String fExtraEmitCodeCode;
91 std::vector<String> fFormatArgs;
92 std::set<int> fWrittenTransformedCoords;
Ethan Nicholas82399462017-10-16 12:35:44 -040093 // if true, we are writing a C++ expression instead of a GLSL expression
94 bool fCPPMode = false;
Ethan Nicholas762466e2017-06-29 10:03:38 -040095
96 typedef GLSLCodeGenerator INHERITED;
97};
98
99}
100
101#endif