Files
gtk/testsuite/gsksl/errors/duplicate-block-member-name.glsl
Benjamin Otte a7dac28a3a gsksl: Redo block parsing
Do not parse blocks while parsing types, instead move it to the
declaration parsing. Also, add a special variable type for the case of
unnamed blocks, so that we can access them directly.
2017-10-30 02:58:03 +01:00

9 lines
52 B
GLSL

uniform Foo {
int x;
int x;
};
void main()
{
}