Sign in
skia
/
skia
/
eb8a53033e88618cd56bfa3ed1c5a381180d5296
/
.
/
resources
/
sksl
/
wgsl
/
BuiltinFragmentStageIO.sksl
blob: 271cdb79507e02bbc4e2517346f2c9f6e33787d3 [
file
] [
log
] [
blame
]
void
main
()
{
// Declarations for all fragment function built-ins referenced here should be present
// in the output.
float
x
=
sk_FragCoord
.
x
;
float
y
=
float
(
sk_Clockwise
);
sk_FragColor
=
half4
(
x
,
y
,
1
,
1
);
}