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

19 lines
230 B
GLSL

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