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

11 lines
93 B
WebGPU Shading Language

struct S {
i : i32;
};
[[stage(compute)]]
fn main() {
var V : S;
V.i = 5;
return;
}