mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-09 22:00:05 +00:00
5d9df6a31c
Move arrays and structs out to their own global static constants. Also, replace illegal names in HLSL as well.
21 lines
358 B
GLSL
21 lines
358 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
float lut[4] = float[](1.0, 4.0, 3.0, 2.0);
|
|
|
|
struct Foo
|
|
{
|
|
float a;
|
|
float b;
|
|
};
|
|
Foo foos[2] = Foo[](Foo(10.0, 20.0), Foo(30.0, 40.0));
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
layout(location = 0) flat in int line;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(lut[line]);
|
|
FragColor += foos[line].a * foos[1 - line].a;
|
|
}
|