kml_ckr
kml_ckr

Reputation: 2251

Android 2D graphics programming

What is the difference between Canvas and OpenGL for doing 2D graphics with Android?

Does Canvas use OpenGL in the background? Are there cases where OpenGL might be slower than Canvas?

Upvotes: 4

Views: 1000

Answers (1)

Romain Guy
Romain Guy

Reputation: 98521

Canvas does not use OpenGL, it uses the software rendering library called Skia.

Upvotes: 2

Related Questions