dawn-cmake/test/tint/expressions/binary/mod/scalar-scalar/f32.wgsl.expected.fxc.hlsl

12 lines
226 B
HLSL

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;
}