dawn-cmake/test/tint/ptr_ref/store/global/i32.spvasm.expected.hlsl

14 lines
143 B
HLSL
Raw Normal View History

static int I = 0;
void main_1() {
I = 123;
I = ((100 + 20) + 3);
return;
}
[numthreads(1, 1, 1)]
void main() {
main_1();
return;
}