What did they name the android graphics server?

I am wondering which server or service is using android to display the view. For example, on Linux, this is called the Xorg server. Can anyone tell me what it's called in android?

+3
source share
1 answer

There is no such thing as an Xorg server on Android. They use a different approach. Android depends on the standard frame buffering device (/ dev / fb0). In addition, there is a "surface flinger" and then a window manager.

See here for more information:

+1

All Articles