Android 2D Programming

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

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

+4
source share
1 answer

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

+2
source

Source: https://habr.com/ru/post/1334261/


All Articles