user1985973
user1985973

Reputation: 191

Using SKIA library instead of Android Canvas

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.

Upvotes: 10

Views: 14210

Answers (2)

Jachu
Jachu

Reputation: 435

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.

Upvotes: 8

CommonsWare
CommonsWare

Reputation: 1007276

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

Upvotes: 1

Related Questions