mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-14 16:01:07 +00:00
dd603eab58
Won't really be correct if the spec constant is changed outside SPIRV-Cross, but nothing we can do about that, really.
18 lines
287 B
GLSL
18 lines
287 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
layout(constant_id = 10) const int Value = 2;
|
|
layout(binding = 0) uniform SpecConstArray
|
|
{
|
|
vec4 samples[Value];
|
|
};
|
|
|
|
layout(location = 0) flat in int Index;
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = samples[Index];
|
|
}
|
|
|