Sign in
fuchsia
/
third_party
/
glslang
/
refs/heads/sandbox/liyl/SDK-candidate-2-withEnumFix
/
.
/
Test
/
spv.dataOutIndirect.vert
blob: cb6b7e0d7cff16a6cb36d09d0938b999f0fc35da [
file
] [
log
] [
blame
] [
edit
]
#version 140
attribute vec4 color
;
out
vec4 colorOut
[
6
];
void
main
()
{
for
(
int
i
=
1
;
i
<
5
;
++
i
)
colorOut
[
i
]
=
color
;
gl_Position
=
colorOut
[
2
];
}