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

18 lines
212 B
GLSL

#version 310 es
struct S {
int i;
};
void tint_symbol() {
S V = S(0);
int i = V.i;
return;
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
tint_symbol();
return;
}