Sign in
skia
/
skia
/
e8ab6e172d07e8d0f04e1fdf17f1202a4547359a
/
.
/
resources
/
sksl
/
shared
/
StackingVectorCasts.sksl
blob: 84620a86f8caacde5b1a677f0dc4e249f3237b29 [
file
] [
log
] [
blame
]
uniform half4 colorGreen
,
colorRed
;
half4 main
(
float2 coords
)
{
if
(
half4
(
0
,
0
,
1
,
1
)
==
half4
(
int4
(
0
,
0
,
1
,
1
)))
return
colorGreen
;
else
return
colorRed
;
}