blob: c204531c9dcb8229b70ad1f2eff2196daa475cd3 [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() {
int3 a = int3(1, 2, 3);
int3 b = int3(0, 5, 0);
int3 const r = tint_mod_v3i32(a, b);
}