26 lines
439 B
GLSL
26 lines
439 B
GLSL
#version 310 es
|
|
|
|
struct modf_result {
|
|
float fract;
|
|
float whole;
|
|
};
|
|
|
|
modf_result tint_modf(float param_0) {
|
|
modf_result result;
|
|
result.fract = modf(param_0, result.whole);
|
|
return result;
|
|
}
|
|
|
|
|
|
void tint_symbol() {
|
|
modf_result res = tint_modf(1.230000019f);
|
|
float tint_symbol_1 = res.fract;
|
|
float whole = res.whole;
|
|
}
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void main() {
|
|
tint_symbol();
|
|
return;
|
|
}
|