xref
: /
external
/
mesa3d
/
src
/
compiler
/
glsl
/
tests
/
warnings
/
000-basic-test.vert
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#version 130
2
3
void main()
4
{
5
float foo;
6
float undefined;
7
8
foo = undefined;
9
}
10
11