Sign in
skia
/
skia
/
eb8a53033e88618cd56bfa3ed1c5a381180d5296
/
.
/
resources
/
sksl
/
wgsl
/
BuiltinVertexStageIO.vert
blob: 3014367d9020811f68b9e62fabf8d6161e0e2f0c [
file
] [
log
] [
blame
]
void
main
()
{
// Declarations for all fragment function built-ins referenced here should be present
// in the output.
float
x
=
float
(
sk_VertexID
);
float
y
=
float
(
sk_InstanceID
);
sk_PointSize
=
x
;
sk_Position
=
float4
(
x
,
y
,
1
,
1
);
}