dawn-cmake/test/tint/var/initialization/function/struct.wgsl.expected.glsl

17 lines
204 B
GLSL

#version 310 es
struct S {
int a;
float b;
};
void tint_symbol() {
S v = S(0, 0.0f);
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
tint_symbol();
return;
}