Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
tests
/
sksl
/
runtime
/
IncrementDisambiguation.minified.sksl
blob: 8b9c28ba79f58dac816750474ce9dbe020025911 [
file
] [
log
] [
blame
]
uniform half4 colorRed
;
float4 main
(
float2 a
){
half4 b
=
colorRed
;
b
.
y
=
b
.
w
++
+
b
.
z
;
b
.
y
=
b
.
w
-
--
b
.
x
;
return
float4
(
saturate
(
b
));}