EndStreamPrimitive not supported when there is #extension GL_ARB_gpu_shader5
[platform/upstream/glslang.git] / Test / hlsl.matType.frag
1 float1 f1 = float1(1.0);
2 float1x1 fmat11;
3 float4x1 fmat41;
4 float1x2 fmat12;
5 double2x3 dmat23;
6 int4x4 int44;
7
8 float1 ShaderFunction(float1 inFloat1, float inScalar) : COLOR0
9 {
10     return inFloat1;
11 }