dawn-cmake/test/ptr_ref/load/local/struct_field.wgsl.expected....

11 lines
101 B
HLSL
Raw Normal View History

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