Sign in
chromium
/
external
/
github.com
/
KhronosGroup
/
glslang
/
HEAD
/
.
/
Test
/
gl_samplemask_array_size.frag
blob: 52ef849686abde65a75b4f73f0e25e68d277ddbe [
file
]
#version 320 es
layout
(
location
=
0
)
out
mediump vec4 fragColor
;
void
main
(
void
)
{
for
(
int
i
=
0
;
i
<
gl_SampleMask
.
length
();
++
i
)
gl_SampleMask
[
i
]
=
int
(
0xAAAAAAAA
);
fragColor
=
vec4
(
0.0
,
1.0
,
0.0
,
1.0
);
}