Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
tests
/
sksl
/
shared
/
VertexIDInFunction.glsl
blob: ad59ea3ec866274e5dd71409a0eb6f7ae25f1806 [
file
] [
log
] [
blame
]
layout
(
location
=
1
)
out
int
id
;
int
fn_i
()
{
return
gl_VertexID
;
}
void
main
()
{
id
=
fn_i
();
}