2022-06-02 14:36:10 +00:00
|
|
|
#version 310 es
|
|
|
|
|
|
|
|
struct modf_result_vec3 {
|
|
|
|
vec3 fract;
|
|
|
|
vec3 whole;
|
|
|
|
};
|
|
|
|
|
|
|
|
modf_result_vec3 tint_modf(vec3 param_0) {
|
|
|
|
modf_result_vec3 result;
|
|
|
|
result.fract = modf(param_0, result.whole);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-05 15:11:44 +00:00
|
|
|
void modf_5ea256() {
|
2022-07-26 14:27:25 +00:00
|
|
|
vec3 arg_0 = vec3(1.0f);
|
2022-06-02 14:36:10 +00:00
|
|
|
modf_result_vec3 res = tint_modf(arg_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
vec4 vertex_main() {
|
2022-08-05 15:11:44 +00:00
|
|
|
modf_5ea256();
|
2022-06-02 14:36:10 +00:00
|
|
|
return vec4(0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
gl_PointSize = 1.0;
|
|
|
|
vec4 inner_result = vertex_main();
|
|
|
|
gl_Position = inner_result;
|
|
|
|
gl_Position.y = -(gl_Position.y);
|
|
|
|
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#version 310 es
|
|
|
|
precision mediump float;
|
|
|
|
|
|
|
|
struct modf_result_vec3 {
|
|
|
|
vec3 fract;
|
|
|
|
vec3 whole;
|
|
|
|
};
|
|
|
|
|
|
|
|
modf_result_vec3 tint_modf(vec3 param_0) {
|
|
|
|
modf_result_vec3 result;
|
|
|
|
result.fract = modf(param_0, result.whole);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-05 15:11:44 +00:00
|
|
|
void modf_5ea256() {
|
2022-07-26 14:27:25 +00:00
|
|
|
vec3 arg_0 = vec3(1.0f);
|
2022-06-02 14:36:10 +00:00
|
|
|
modf_result_vec3 res = tint_modf(arg_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void fragment_main() {
|
2022-08-05 15:11:44 +00:00
|
|
|
modf_5ea256();
|
2022-06-02 14:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
fragment_main();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#version 310 es
|
|
|
|
|
|
|
|
struct modf_result_vec3 {
|
|
|
|
vec3 fract;
|
|
|
|
vec3 whole;
|
|
|
|
};
|
|
|
|
|
|
|
|
modf_result_vec3 tint_modf(vec3 param_0) {
|
|
|
|
modf_result_vec3 result;
|
|
|
|
result.fract = modf(param_0, result.whole);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-05 15:11:44 +00:00
|
|
|
void modf_5ea256() {
|
2022-07-26 14:27:25 +00:00
|
|
|
vec3 arg_0 = vec3(1.0f);
|
2022-06-02 14:36:10 +00:00
|
|
|
modf_result_vec3 res = tint_modf(arg_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void compute_main() {
|
2022-08-05 15:11:44 +00:00
|
|
|
modf_5ea256();
|
2022-06-02 14:36:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
void main() {
|
|
|
|
compute_main();
|
|
|
|
return;
|
|
|
|
}
|