blob: 0c9eb2e0755a1fafb26e8ca1b3d436f707a04953 [file] [log] [blame]
float tint_float_mod(float lhs, float rhs) {
return (lhs - (trunc((lhs / rhs)) * rhs));
}
[numthreads(1, 1, 1)]
void f() {
const float a = 1.0f;
const float b = 2.0f;
const float r = tint_float_mod(a, b);
return;
}