dawn-cmake/test/ptr_ref/store/local/struct_field.spvasm.expecte...

12 lines
97 B
HLSL

struct S {
int i;
};
[numthreads(1, 1, 1)]
void main() {
S V = {0};
V.i = 5;
return;
}