1#version 300 2 3uniform uint u; 4uniform uint2 u2; 5uniform uint3 u3; 6uniform uint4 u4; 7 8uniform ushort us; 9uniform ushort2 us2; 10uniform ushort3 us3; 11uniform ushort4 us4; 12 13uniform float2x3 f23; 14uniform float2x4 f24; 15uniform float3x2 f32; 16uniform float3x4 f34; 17uniform float4x2 f42; 18uniform float4x3 f43; 19 20uniform half2x3 h23; 21uniform half2x4 h24; 22uniform half3x2 h32; 23uniform half3x4 h34; 24uniform half4x2 h42; 25uniform half4x3 h43; 26 27half4 main(float2 xy) { 28 return half4(0); 29} 30 31/*%%* 32variables of type 'uint' may not be uniform 33variables of type 'uint2' may not be uniform 34variables of type 'uint3' may not be uniform 35variables of type 'uint4' may not be uniform 36variables of type 'ushort' may not be uniform 37variables of type 'ushort2' may not be uniform 38variables of type 'ushort3' may not be uniform 39variables of type 'ushort4' may not be uniform 40variables of type 'float2x3' may not be uniform 41variables of type 'float2x4' may not be uniform 42variables of type 'float3x2' may not be uniform 43variables of type 'float3x4' may not be uniform 44variables of type 'float4x2' may not be uniform 45variables of type 'float4x3' may not be uniform 46variables of type 'half2x3' may not be uniform 47variables of type 'half2x4' may not be uniform 48variables of type 'half3x2' may not be uniform 49variables of type 'half3x4' may not be uniform 50variables of type 'half4x2' may not be uniform 51variables of type 'half4x3' may not be uniform 52*%%*/ 53