Sign in
skia
/
skia
/
3658238492093ca6039e939c34e8e721f5cbbc85
/
.
/
resources
/
sksl
/
inliner
/
TernaryTestCanBeInlined.sksl
blob: b9cd02e49c80d50dc643ae1f786e37cd2027b0f3 [
file
] [
log
] [
blame
]
uniform half4 colorGreen
,
colorRed
;
inline
bool
test
(
half4 v
)
{
return
bool
(
v
.
g
);
}
half4 main
(
float2 coords
)
{
return
test
(
colorGreen
)
?
colorGreen
:
colorRed
;
}