dawn-cmake/test/tint/statements/decrement/split.wgsl.expected.fxc.hlsl

10 lines
114 B
HLSL

[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
void main() {
int b = 2;
int c = (b - -(b));
}