dawn-cmake/test/tint/expressions/binary/bit-xor/scalar-scalar/i32.wgsl.expected.fxc.hlsl

8 lines
108 B
HLSL
Raw Normal View History

[numthreads(1, 1, 1)]
void f() {
const int a = 1;
const int b = 2;
const int r = (a ^ b);
return;
}