*Update*: Solved :white_check_mark: Thanks to <@U3...
# compose
s
Update: Solved Thanks to @romainguy. It's called
blendMode
Hi friends There is something called
xfermode
that is available in the Android Canvas Paint object. Is there any direct alternative to it in the SKIA Paint object? For example, for the
BlurMaskFilter
object, I was able to find
MaskFilter.makeBlur
in Skia, but I'm not able to find something similar for
xfermode
. Do you guys know of anything?
r
Look for BlendMode
s
Found it! Thank you
r
Skia originally called it Xfermode and they changed the names years after Android shipped so we had to keep the name for compatibility
s
Interesting!
r
Note that android also has blend modes too
It's the same as xfermodes
s
Understood Thanks for the info