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

14 lines
148 B
HLSL
Raw Normal View History

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