SPIRV-Cross/reference/shaders/frag/constant-array.frag

30 lines
676 B
GLSL
Raw Normal View History

2016-03-02 17:09:16 +00:00
#version 310 es
precision mediump float;
precision highp int;
const vec4 _37[3] = vec4[](vec4(1.0), vec4(2.0), vec4(3.0));
const vec4 _55[2][2] = vec4[][](vec4[](vec4(1.0), vec4(2.0)), vec4[](vec4(8.0), vec4(10.0)));
2016-03-02 17:09:16 +00:00
struct Foobar
{
float a;
float b;
};
layout(location = 0) out vec4 FragColor;
layout(location = 0) flat in mediump int index;
2016-03-02 17:09:16 +00:00
vec4 resolve(Foobar f)
{
return vec4(f.a + f.b);
2016-03-02 17:09:16 +00:00
}
void main()
{
Foobar param = Foobar(10.0, 20.0);
Foobar indexable[2] = Foobar[](Foobar(10.0, 40.0), Foobar(90.0, 70.0));
Foobar param_1 = indexable[index];
FragColor = ((_37[index] + (_55[index][index + 1])) + resolve(param)) + resolve(param_1);
2016-03-02 17:09:16 +00:00
}