diff options
-rw-r--r-- | src/glean/tglsl1.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/glean/tglsl1.cpp b/src/glean/tglsl1.cpp index 9999bd6..0ef5a6a 100644 --- a/src/glean/tglsl1.cpp +++ b/src/glean/tglsl1.cpp @@ -2545,6 +2545,29 @@ static const ShaderProgram Programs[] = { FLAG_NONE }, + { + "TPPStreamCompiler::assignOperands", + NO_VERTEX_SHADER, + "struct S { \n" + " float f; \n" + "}; \n" + "\n" + "void F(S s) {} \n" + "\n" + "const S s = S(0.0); \n" + "\n" + "void F() { \n" + " F(s); \n" + "} \n" + "\n" + "void main() { \n" + " gl_FragColor = vec4(0.0, 0.0, 0.0, 0.0); \n" + "} \n", + { 0.0, 0.0, 0.0, 0.0 }, + DONT_CARE_Z, + FLAG_NONE + }, + // Matrix tests ====================================================== { "matrix column check (1)", |