git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@21721
e7fa87d3-cd2b-0410-9028-
fcbf551c1848
float uvec3;
float uvec4;
//packed; // ERROR, reserved word
+
+ {
+ mat4 m;
+ vec4 v;
+ bool b;
+ gl_FragColor += b ? v : m; // ERROR, types don't match around ":"
+ }
}
float imageBuffer;
else
return 0;
}
+
+ // After conversion, types have to match.
+ if (falseBlock->getType() != trueBlock->getType())
+ return 0;
//
// See if all the operands are constant, then fold it otherwise not.