2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
|
2022-01-28 22:36:58 +00:00
|
|
|
layout(location = 0) in int loc0_1;
|
|
|
|
layout(location = 1) in uint loc1_1;
|
|
|
|
layout(location = 2) in uint loc1_2;
|
|
|
|
layout(location = 3) in vec4 loc3_1;
|
2021-11-16 15:15:36 +00:00
|
|
|
struct VertexInputs0 {
|
|
|
|
uint vertex_index;
|
|
|
|
int loc0;
|
|
|
|
};
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2021-11-16 15:15:36 +00:00
|
|
|
struct VertexInputs1 {
|
|
|
|
uint loc1;
|
|
|
|
vec4 loc3;
|
|
|
|
};
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2022-01-28 22:36:58 +00:00
|
|
|
vec4 tint_symbol(VertexInputs0 inputs0, uint loc1, uint instance_index, VertexInputs1 inputs1) {
|
2021-11-16 15:15:36 +00:00
|
|
|
uint foo = (inputs0.vertex_index + instance_index);
|
|
|
|
return vec4(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void main() {
|
2022-01-28 22:36:58 +00:00
|
|
|
VertexInputs0 tint_symbol_1 = VertexInputs0(uint(gl_VertexID), loc0_1);
|
|
|
|
VertexInputs1 tint_symbol_2 = VertexInputs1(loc1_2, loc3_1);
|
|
|
|
vec4 inner_result = tint_symbol(tint_symbol_1, loc1_1, uint(gl_InstanceID), tint_symbol_2);
|
|
|
|
gl_Position = inner_result;
|
|
|
|
gl_Position.y = -(gl_Position.y);
|
|
|
|
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
|
|
|
|
return;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|