Using SKIA library instead of Android Canvas

10,683

Solution 1

You can find information here: Using Skia in Android NDK

All UI animation performed by Android are implementing using SKIA, but is very inefficient for huge graphical stuff since it does not use the graphic hardware available on the phone.

Solution 2

The Skia library is the Canvas, by and large. See: How do the pieces of Android's (2D) Canvas drawing pipeline fit together?

Share:
10,683
user1985973
Author by

user1985973

Updated on June 05, 2022

Comments

  • user1985973
    user1985973 almost 2 years

    While I am researching about 2D rendering pipeline of android, I came to know a graphic library SKIA written in C++.

    But I am not sure it can be used instead of android Canvas.

    Can it be used as a replacement of the Canvas?

    Thanks in advance for your help.