Sign in
skia
/
skia
/
96b73f61fe61
/
.
/
tests
/
sksl
/
runtime
/
SharedFunctions.minified.sksl
blob: 49ccc3a7d62aa1e1f90162f8123f833a4c7d371e [
file
] [
log
] [
blame
]
uniform half4 colorGreen
;
uniform half4 colorRed
;
half4 main
(
float2 a
){
float4 b
=
unpremul
(
float4
(
colorGreen
));
half4 c
=
unpremul
(
colorRed
);
return
half4
(
half3
(
b
.
xyz
),
c
.
w
);}