perf/pixel-rate: new pixel throughput microbenchmark
[piglit.git] / tests / glslparsertest / shaders / CGDataTypes.frag
blobe17af03e62bc553376f55feb06b44f397f7da4ad
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.10
4 //
5 // [end config]
7 void main()
9         half h1; // Not a basic type.
10         half2 h2; // Not a basic type.
11         half3 h3; // Not a basic type.
12         half4 h4; // Not a basic type.
13         float2 f2; // Not a basic type.
14         float3 f3; // Not a basic type.
15         float4 f4; // Not a basic type.
16         fixed fx1; // Not a basic type.
17         fixed2 fx2; // Not a basic type.
18         fixed3 fx3; // Not a basic type.
19         fixed4 fx4; // Not a basic type.
20         float3x3 f3x3; // Not a basic type.
21         float2x4 f2x4; // Not a basic type.
22         half4x4 h4x4; // Not a basic type.