blob: 1cb142e68f049e1023597449bc41c1310907aa6b [file] [log] [blame]
uint3 tint_mod(uint3 lhs, uint3 rhs) {
return (lhs % ((rhs == (0u).xxx) ? (1u).xxx : rhs));
}
[numthreads(1, 1, 1)]
void f() {
uint3 a = uint3(1u, 2u, 3u);
uint3 b = uint3(0u, 5u, 0u);
const uint3 r = tint_mod(a, (b + b));
return;
}