#version 310 es | |
precision mediump float; | |
float tint_float_modulo(float lhs, float rhs) { | |
return (lhs - rhs * trunc(lhs / rhs)); | |
} | |
void main_1() { | |
float x_1 = tint_float_modulo(50.0f, 60.0f); | |
return; | |
} | |
void tint_symbol() { | |
main_1(); | |
} | |
void main() { | |
tint_symbol(); | |
return; | |
} |