Sign in
fuchsia
/
third_party
/
mesa
/
main
/
.
/
src
/
compiler
/
glsl
/
tests
/
warnings
/
001-use-undefined-then-define.vert
blob: 7272c6c15a86000ae12c8050e5ca2eb6af00573c [
file
] [
log
] [
blame
]
#version 130
void
main
()
{
float
foo
;
float
undefinedThenDefined
;
foo
=
undefinedThenDefined
;
undefinedThenDefined
=
2.0
;
foo
=
undefinedThenDefined
;
gl_Position
=
vec4
(
1.0
);
}