]> git.tdb.fi Git - libs/gl.git/blob - tests/glsl/undeclared_types.glsl
Validate some aspects of type declarations
[libs/gl.git] / tests / glsl / undeclared_types.glsl
1 typedef vector(2) nonexistent nvec2;
2 typedef image(dimensions=2) nonexistent nsampler2D;
3
4 /* Expected error:
5 <test>:1: Parse error at 'nonexistent': expected a type
6 <test>:2: Parse error at 'nonexistent': expected a type
7 */