Files
filament/third_party/glslang/Test/hlsl.constructArray.vert
Romain Guy 9f2592ed9d Update SPIRV libraries (#99)
* Update SPIRV libraries

- Update `spirv-cross`
- Update `spirv-tools`
- Update `glslang`

`spirv-tools` contains a fix for an issue we reported (unnecessary promotions to highp in certain expressions).

* Add SPIRV-Tools dependency to matinfo
2018-08-15 12:59:17 -07:00

11 lines
291 B
GLSL

float4 main() : SV_POSITION
{
int4 int4_array[3];
float4 float4_array_times[2] = (float4[2])int4_array;
float2 float2_array_times2[4] = (float2[4])int4_array;
int4 int4_array2[2] = (int4[2])int4_array;
int int1_array[2] = (int[2])int4_array;
return (float4)0.0;
}