blob: a517f2eab2a682d423a678e1e8318c11056c2fa0 [file] [log] [blame]
#version 310 es
precision highp float;
precision highp int;
struct modf_result_vec3_f32 {
vec3 fract;
vec3 whole;
};
void modf_5ea256() {
modf_result_vec3_f32 res = modf_result_vec3_f32(vec3(-0.5f), vec3(-1.0f));
}
void main() {
modf_5ea256();
}
#version 310 es
struct modf_result_vec3_f32 {
vec3 fract;
vec3 whole;
};
void modf_5ea256() {
modf_result_vec3_f32 res = modf_result_vec3_f32(vec3(-0.5f), vec3(-1.0f));
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
modf_5ea256();
}
#version 310 es
struct modf_result_vec3_f32 {
vec3 fract;
vec3 whole;
};
struct VertexOutput {
vec4 pos;
};
void modf_5ea256() {
modf_result_vec3_f32 res = modf_result_vec3_f32(vec3(-0.5f), vec3(-1.0f));
}
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = VertexOutput(vec4(0.0f));
tint_symbol.pos = vec4(0.0f);
modf_5ea256();
return tint_symbol;
}
void main() {
gl_Position = vertex_main_inner().pos;
gl_Position.y = -(gl_Position.y);
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
gl_PointSize = 1.0f;
}