Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
tests
/
sksl
/
runtime
/
FunctionParameterAliasingFirst.minified.sksl
blob: ef4347102d90b73ca536dc2325055f048c1add32 [
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
=
colorRed
;
half4 c
=
a
(
b
);
c
=
a
(
half4
(
colorGreen
.
xyz
,
1.
));
return
c
;}