Sign in
skia
/
skia
/
67c3ee616fb5014d483c5314900eea663f10f1e3
/
.
/
tests
/
sksl
/
folding
/
TernaryFolding.minified.sksl
blob: b8012067d3355589078ff04dc0fae1884f3af816 [
file
] [
log
] [
blame
]
uniform half4 colorRed
;
uniform half4 colorGreen
;
bool
a
(
out
bool
b
){
b
=
true
;
return
false
;}
half4 main
(
float2 b
){
bool
c
=
true
;
half4 d
=
colorGreen
;
half4 e
=
colorRed
;
bool
f
=
false
;
bool
g
=(
a
(
f
),
true
);
return
(
c
&&
f
)&&
g
?
d
:
e
;}