blob: 5ea2fbd98fc1ed3b1e805611de57e1d324cc9f69 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
const float3 a = float3(1.0f, 2.0f, 3.0f);
const float3 b = float3(0.0f, 5.0f, 0.0f);
const float3 r = (a % b);
return;
}