blob: b03e6c8bb719d696d18a35d1872017f8a67f6ea2 [file] [log] [blame]
float3 tint_float_mod(float3 lhs, float3 rhs) {
return (lhs - (trunc((lhs / rhs)) * rhs));
}
[numthreads(1, 1, 1)]
void f() {
const float3 a = float3(1.0f, 2.0f, 3.0f);
const float3 b = float3(4.0f, 5.0f, 6.0f);
const float3 r = tint_float_mod(a, b);
return;
}