blob: b547642ce05edd1b2b25cdf1ddd056439f335a36 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
int3 tint_mod_v3i32(int3 lhs, int3 rhs) {
int3 const v = select(rhs, int3(1), ((rhs == int3(0)) | ((lhs == int3((-2147483647 - 1))) & (rhs == int3(-1)))));
return (lhs - ((lhs / v) * v));
}
kernel void f() {
int const a = 4;
int3 const b = int3(0, 2, 0);
int3 const r = tint_mod_v3i32(int3(a), b);
}