Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
57709e14e24924b9a2fbbb6983f9ab5b41294117
/
.
/
resources
/
sksl
/
inliner
/
InlineWithModifiedArgument.sksl
blob: ca2871a5f1498f0fdb0526b08f1f63cbf12e30e1 [
file
] [
log
] [
blame
]
uniform half4 colorGreen
;
inline
half parameterWrite
(
half x
)
{
x
*=
x
;
return
x
;
}
half4 main
(
float2 coords
)
{
half4 c
=
colorGreen
;
c
.
g
=
parameterWrite
(
c
.
g
);
return
c
;
}