blob: c4f5eb58a7b2d0564df5d812ddb87dc3346802ec [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
uint3 a = uint3(1u, 2u, 3u);
uint3 b = uint3(4u, 5u, 6u);
uint3 r = (a - b);
return;
}