blob: 69e0498394908aa48a5132ba8e8f0c92f28f99f4 [file] [log] [blame]
Michael Ludwiga4275592018-08-31 10:52:47 -04001/*
2 * Copyright 2018 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#include "SkSLCPPUniformCTypes.h"
9#include "SkSLHCodeGenerator.h"
10#include "SkSLStringStream.h"
11
12#include <vector>
13
14namespace SkSL {
15
16/////////////////////////
17// Template evaluation //
18/////////////////////////
19
20static String eval_template(const String& format, const std::vector<String>& tokens,
21 const std::vector<const String*>& values) {
22 StringStream stream;
23
24 int tokenNameStart = -1;
25 for (size_t i = 0; i < format.size(); i++) {
26 if (tokenNameStart >= 0) {
27 // Within a token name so check if it is the end
28 if (format[i] == '}') {
29 // Skip 2 extra characters at the beginning for the $ and {, which must exist since
30 // otherwise tokenNameStart < 0
31 String token(format.c_str() + tokenNameStart + 2, i - tokenNameStart - 2);
32 // Search for the token in supported list
33 bool found = false;
34 for (size_t j = 0; j < tokens.size(); j++) {
35 if (token == tokens[j]) {
36 // Found a match so append the value corresponding to j to the output
37 stream.writeText(values[j]->c_str());
38 found = true;
39 break;
40 }
41 }
42
43 if (!found) {
44 // Write out original characters as if we didn't consider it to be a token name
45 stream.writeText("${");
46 stream.writeText(token.c_str());
47 stream.writeText("}");
48 }
49
50 // And end the token name state
51 tokenNameStart = -1;
52 }
53 } else {
54 // Outside of a token name, so check if this character starts a name:
55 // i == $ and i+1 == {
56 if (i < format.size() - 1 && format[i] == '$' && format[i + 1] == '{') {
57 // Begin parsing the token
58 tokenNameStart = i;
59 } else {
60 // Just a character so append it
61 stream.write8(format[i]);
62 }
63 }
64 }
65
66 return stream.str();
67}
68
69static bool determine_inline_from_template(const String& uniformTemplate) {
70 // True if there is at most one instance of the ${var} template matcher in fUniformTemplate.
71 int firstMatch = uniformTemplate.find("${var}");
72
73 if (firstMatch < 0) {
74 // Template doesn't use the value variable at all, so it can "inlined"
75 return true;
76 }
77
78 // Check for another occurrence of ${var}, after firstMatch + 6
79 int secondMatch = uniformTemplate.find("${var}", firstMatch + strlen("${var}"));
80 // If there's no second match, then the value can be inlined in the c++ code
81 return secondMatch < 0;
82}
83
84///////////////////////////////////////
85// UniformCTypeMapper implementation //
86///////////////////////////////////////
87
88String UniformCTypeMapper::dirtyExpression(const String& newVar, const String& oldVar) const {
89 if (fSupportsTracking) {
90 std::vector<String> tokens = { "newVar", "oldVar" };
91 std::vector<const String*> values = { &newVar, &oldVar };
92 return eval_template(fDirtyExpressionTemplate, tokens, values);
93 } else {
94 return "";
95 }
96}
97
98String UniformCTypeMapper::saveState(const String& newVar, const String& oldVar) const {
99 if (fSupportsTracking) {
100 std::vector<String> tokens = { "newVar", "oldVar" };
101 std::vector<const String*> values = { &newVar, &oldVar };
102 return eval_template(fSaveStateTemplate, tokens, values);
103 } else {
104 return "";
105 }
106}
107
108String UniformCTypeMapper::setUniform(const String& pdman, const String& uniform,
109 const String& var) const {
110 std::vector<String> tokens = { "pdman", "uniform", "var" };
111 std::vector<const String*> values = { &pdman, &uniform, &var };
112 return eval_template(fUniformTemplate, tokens, values);
113}
114
115UniformCTypeMapper::UniformCTypeMapper(
116 const String& ctype, const std::vector<String>& skslTypes,
117 const String& setUniformFormat, bool enableTracking, const String& defaultValue,
118 const String& dirtyExpressionFormat, const String& saveStateFormat)
119 : fCType(ctype)
120 , fSKSLTypes(skslTypes)
121 , fUniformTemplate(setUniformFormat)
122 , fInlineValue(determine_inline_from_template(setUniformFormat))
123 , fSupportsTracking(enableTracking)
124 , fDefaultValue(defaultValue)
125 , fDirtyExpressionTemplate(dirtyExpressionFormat)
126 , fSaveStateTemplate(saveStateFormat) { }
127
128// NOTE: These would be macros, but C++ initialization lists for the sksl type names do not play
129// well with macro parsing.
130
131static UniformCTypeMapper REGISTER(const char* ctype, const std::vector<String>& skslTypes,
132 const char* uniformFormat, const char* defaultValue,
133 const char* dirtyExpression) {
134 return UniformCTypeMapper(ctype, skslTypes, uniformFormat, defaultValue, dirtyExpression,
135 "${oldVar} = ${newVar}");
136}
137
138static UniformCTypeMapper REGISTER(const char* ctype, const std::vector<String>& skslTypes,
139 const char* uniformFormat, const char* defaultValue) {
140 return REGISTER(ctype, skslTypes, uniformFormat, defaultValue,
141 "${oldVar} != ${newVar}");
142}
143
144//////////////////////////////
145// Currently defined ctypes //
146//////////////////////////////
147
148static const std::vector<UniformCTypeMapper>& get_mappers() {
149 static const std::vector<UniformCTypeMapper> registeredMappers = {
150 REGISTER("SkRect", { "half4", "float4", "double4" },
151 "${pdman}.set4fv(${uniform}, 1, reinterpret_cast<const float*>(&${var}))", // to gpu
152 "SkRect::MakeEmpty()", // default value
153 "${oldVar}.isEmpty() || ${oldVar} != ${newVar}"), // dirty check
154
155 REGISTER("SkIRect", { "int4", "short4", "byte4" },
156 "${pdman}.set4iv(${uniform}, 1, reinterpret_cast<const int*>(&${var}))", // to gpu
157 "SkIRect::MakeEmpty()", // default value
158 "${oldVar}.isEmpty() || ${oldVar} != ${newVar}"), // dirty check
159
160 REGISTER("GrColor4f", { "half4", "float4", "double4" },
161 "${pdman}.set4fv(${uniform}, 1, ${var}.fRGBA)", // to gpu
162 "GrColor4f::kIllegalConstructor"), // default value
163
164 REGISTER("SkPoint", { "half2", "float2", "double2" } ,
165 "${pdman}.set2f(${uniform}, ${var}.fX, ${var}.fY)", // to gpu
166 "SkPoint::Make(NaN, NaN)"), // default value
167
168 REGISTER("SkIPoint", { "int2", "short2", "byte2" },
169 "${pdman}.set2i(${uniform}, ${var}.fX, ${var}.fY)", // to gpu
170 "SkIPoint::Make(~0, ~0)"), // default value
171
172 REGISTER("SkMatrix", { "half3x3", "float3x3", "double3x3" },
173 "${pdman}.setSkMatrix(${uniform}, ${var})", // to gpu
174 "SkMatrix::MakeScale(NaN)", // default value
175 "!${oldVar}.cheapEqualTo(${newVar})"), // dirty check
176
177 REGISTER("SkMatrix44", { "half4x4", "float4x4", "double4x4" },
178 "${pdman}.setSkMatrix44(${uniform}, ${var})", // to gpu
179 "SkMatrix::MakeScale(NaN)", // default value
180 "!${oldVar}.cheapEqualTo(${newVar})"), // dirty check
181
182 REGISTER("float", { "half", "float", "double" },
183 "${pdman}.set1f(${uniform}, ${var})", // to gpu
184 "NaN"), // default value
185
186 REGISTER("int32_t", { "int", "short", "byte" },
187 "${pdman}.set1i(${uniform}, ${var})", // to gpu
188 "SK_NaN32"), // default value
189 };
190
191 return registeredMappers;
192}
193
194/////
195
196// Greedy search through registered handlers for one that has a matching
197// ctype and supports the sksl type of the variable.
198const UniformCTypeMapper* UniformCTypeMapper::Get(const Context& context, const Type& type,
199 const Layout& layout) {
200 const std::vector<UniformCTypeMapper>& registeredMappers = get_mappers();
201
202 String ctype = layout.fCType;
203 // If there's no custom ctype declared in the layout, use the default type mapping
204 if (ctype == "") {
205 ctype = HCodeGenerator::ParameterType(context, type, layout);
206 }
207
208 const String& skslType = type.name();
209
210 for (size_t i = 0; i < registeredMappers.size(); i++) {
211 if (registeredMappers[i].ctype() == ctype) {
212 // Check for sksl support, since some c types (e.g. SkMatrix) can be used in multiple
213 // uniform types and send data to the gpu differently in those conditions
214 const std::vector<String> supportedSKSL = registeredMappers[i].supportedTypeNames();
215 for (size_t j = 0; j < supportedSKSL.size(); j++) {
216 if (supportedSKSL[j] == skslType) {
217 // Found a match, so return it or an explicitly untracked version if tracking is
218 // disabled in the layout
219 return &registeredMappers[i];
220 }
221 }
222 }
223 }
224
225 // Didn't find a match
226 return nullptr;
227}
228
229} // namespace