blob: f39516d1d0346406a980684e3649be6e202f34a5 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
const int3 a = int3(1, 2, 3);
const int3 b = int3(4, 5, 6);
const int3 r = (a % b);
return;
}