Sign in
fuchsia
/
third_party
/
mesa
/
main
/
.
/
src
/
compiler
/
glsl
/
tests
/
warnings
/
027-inout-function-parameter-shaderout.vert
blob: 57ca755be3d437d8c4f22c57d37463ce60255e6e [
file
] [
log
] [
blame
]
#version 130
void
fooFunction
(
inout
float
outVar
);
out
float
fooOut
;
void
main
()
{
float
willBeDefined
;
fooFunction
(
willBeDefined
);
fooOut
=
willBeDefined
;
}