Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
tests
/
sksl
/
runtime
/
FunctionParameterAliasingSecond.minified.sksl
blob: dda06da7ff63e667e4e2633a9a39cccfb238c8f9 [
file
] [
log
] [
blame
]
uniform half4 colorGreen
;
uniform half4 colorRed
;
noinline half4 a
(
half4 b
){
return
half4
(
b
.
xy
,
0.
,
b
.
w
);}
half4 main
(
float2
){
half4 b
=
a
(
half4
(
colorRed
.
xyz
,
1.
));
half4 c
=
colorGreen
;
b
=
a
(
c
);
return
b
;}