Reputation: 2251
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
Reputation: 98521
Canvas does not use OpenGL, it uses the software rendering library called Skia.
Upvotes: 2