Sign in
flutter
/
third_party
/
glslang
/
refs/heads/flutter-ce138e
/
.
/
Test
/
spv.debuginfo.declaration.glsl.frag
blob: de801891ae512e646740ae3474dc475a7fc8f6a7 [
file
] [
edit
]
#version 460
uniform UBO
{
int
x
;
};
out
vec4 outColor
;
void
main
()
{
int
x
=
41
;
{
int
x
=
42
;
while
(
bool
test
=
x
<
45
)
{
x
+=
1
;
}
for
(
int
x
=
50
;
bool
test
=
x
<
53
;
)
{
x
+=
1
;
}
outColor
=
vec4
(
x
);
}
}