dawn-cmake/test/bug/tint/492.wgsl.expected.glsl

22 lines
263 B
GLSL

#version 310 es
precision mediump float;
struct S {
int a;
};
layout(binding = 0) buffer S_1 {
int a;
} buf;
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void tint_symbol() {
buf.a = 12;
return;
}
void main() {
tint_symbol();
}