Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
skia
/
resources
/
sksl
/
shared
/
UnaryPositiveNegative.sksl
blob: 3f122c0804b77fb73825f542eccc8cbea065d9cd [
file
] [
log
] [
blame
]
uniform half4 colorWhite
,
colorGreen
,
colorRed
;
half4 main
(
float2 coords
)
{
half2 x
=
colorWhite
.
rg
;
x
=
+
x
;
x
=
-
x
;
return
x
==
half2
(-
1
)
?
colorGreen
:
colorRed
;
}