Sign in
flutter
/
third_party
/
glslang
/
refs/heads/flutter-ce138e
/
.
/
Test
/
spv.debuginfo.const_variables.glsl.frag
blob: a73ef9c435cdce18768afc038fa88b82f3ddd3c1 [
file
] [
edit
]
#version 460
const
vec4 constGlobal
=
vec4
(
1.0
,
0.0
,
0.0
,
1.0
);
out
vec4 outColor
;
void
main
()
{
const
float
constLocal
=
3.14
;
outColor
=
constGlobal
*
constLocal
;
}