File: hlsl.constructArray.vert

package info (click to toggle)
glslang 15.1.0%2B1.4.309.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 46,976 kB
  • sloc: cpp: 92,728; yacc: 4,145; sh: 609; python: 305; ansic: 94; javascript: 74; makefile: 17
file content (10 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
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;
}