Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
tests
/
sksl
/
runtime
/
MultipleCallsInOneStatement.minified.sksl
blob: 3a668ed670e8cdc8715bd9342a6a119fc3b281b0 [
file
] [
log
] [
blame
]
uniform half4 colorRed
;
uniform half4 colorGreen
;
int
a
(
int
b
){
return
b
;}
half4 main
(
float2 b
){
int
c
=(
a
(
5
)+
a
(
3
))+
a
(
2
);
return
c
==
10
?
colorGreen
:
colorRed
;}