SlideShare a Scribd company logo
The Android graphics path
in depth
The Android graphics path 1 Copyright ©2011-2014, 2net Limited
License
These slides are available under a Creative Commons Attribution-ShareAlike 3.0
license. You can read the full text of the license here
http://creativecommons.org/licenses/by-sa/3.0/legalcode
You are free to
• copy, distribute, display, and perform the work
• make derivative works
• make commercial use of the work
Under the following conditions
• Attribution: you must give the original author credit
• Share Alike: if you alter, transform, or build upon this work, you may distribute
the resulting work only under a license identical to this one (i.e. include this
page exactly as it is)
• For any reuse or distribution, you must make clear to others the license terms of
this work
The orginals are at http://2net.co.uk/slides/android-graphics-abs-2014.pdf
The Android graphics path 2 Copyright ©2011-2014, 2net Limited
About Chris Simmonds
• Consultant and trainer
• Working with embedded Linux since 1999
• Android since 2009
• Speaker at many conferences and
workshops
"Looking after the Inner Penguin" blog at http://2net.co.uk/
https://uk.linkedin.com/in/chrisdsimmonds/
https://google.com/+chrissimmonds
The Android graphics path 3 Copyright ©2011-2014, 2net Limited
Overview
• The Android graphics stack changed a lot in Jelly
Bean as a result of project Butter
• This presentation describes the current (JB) graphics
stack from top to bottom
• Main topics covered
• The application layer
• SurfaceFlinger, interfaces and buffer queues
• The hardware modules HWComposer and Gralloc
• OpenGL ES and EGL
The Android graphics path 4 Copyright ©2011-2014, 2net Limited
The big picture
SurfaceFlinger
Activity
OpenGL vendor
libraries
OpenGL ES
GPU driver
HWComposer
ION
Gralloc alloc
FB driver
Gralloc FB
Android
framework
Vendor HAL
library
Kernel
driver
Activity
Activity
Manager
Window
Manager
BufferQueue
The Android graphics path 5 Copyright ©2011-2014, 2net Limited
Inception of a pixel
• Everything begins when an activity draws to a surface
• 2D applications can use
• drawing functions in Canvas to write to a Bitmap:
android.graphics.Canvas.drawRect(), drawText(), etc
• descendants of the View class to draw objects such
as buttons and lists
• a custom View class to implement your own
appearance and behaviour
• In all cases the drawing is rendered to a Surface
which contains a GraphicBuffer
The Android graphics path 6 Copyright ©2011-2014, 2net Limited
2D rendering path
Activity
Canvas
Surface
SkiaOpenGL ES
Vendor Open GL
GPU driver
Activity
HWUI
The Android graphics path 7 Copyright ©2011-2014, 2net Limited
Skia and hwui
• For 2D drawing there are two rendering paths
• hwui: (libwhui.so) hardware accelerated using
OpenGL ES 2.0
• skia: (libskia.so) software render engine
• hwui is the default
• Hardware rendering can be disabled per view,
window, activity, application or for the whole device
• Maybe for comparability reasons: hwui produces
results different to skia in some (rare) cases
The Android graphics path 8 Copyright ©2011-2014, 2net Limited
3D rendering path
• An activity can instead create a GLSurfaceView and
use OpenGL ES bindings for Java (the
android.opengl.* classes)
• Using either the vendor GPU driver (which must
support OpenGL ES 2.0 and optinally 3.0)
• Or as a fall-back, using PixelFlinger, a software GPU
that implements OpenGL ES 1.0 only
• Once again, the drawing is rendered to a Surface
The Android graphics path 9 Copyright ©2011-2014, 2net Limited
3D rendering path
Activity
Surface
OpenGL ES
Vendor Open GL
GPU driver
Activity
Android GL
PixelFlinger
The Android graphics path 10 Copyright ©2011-2014, 2net Limited
Composition
SurfaceFlinger
Wallpaper
Launcher
Navigation
bar
Status
bar
The Android graphics path 11 Copyright ©2011-2014, 2net Limited
SurfaceFlinger
frameworks/native/services/surfaceflinger
• A high-priority native (C++) daemon, started by init
with UID=system
• Services connections from activities via Binder
interface ISurfaceComposer
• Receives activity status from Activity Manager
• Receives window status (visibility, Z-order) from
Window Manager
• Composits multiple Surfaces into a single image
• Passes image to one or more displays
• Manages buffer allocation, synchronisation
The Android graphics path 12 Copyright ©2011-2014, 2net Limited
SurfaceFlinger binder interfaces
SurfaceFlinger
Client
ISurfaceComposer ISurfaceComposerClient IDisplayEventConnection
e.g. activity
createConnection()
createDisplayEventConnection()
createSurface()
destroySurface()
getDataChannel()
The Android graphics path 13 Copyright ©2011-2014, 2net Limited
ISurfaceComposer
• ISurfaceComposer
• Clients use this interface to set up a connection with
SurfaceFlinger
• Client begins by calling createConnection() which
spawns an ISurfaceComposerClient
• Client calls createGraphicBufferAlloc() to create an
instance of IGraphicBufferAlloc (discussed later)
• Client calls createDisplayEventConnection() to create
an instance of IDisplayEventConnection
• Other methods include captureScreen() and
setTransactionState()
The Android graphics path 14 Copyright ©2011-2014, 2net Limited
ISurfaceComposerClient
• ISurfaceComposerClient
• This interface has two methods:
• createSurface() asks SufraceFlinger to create a new
Surface
• destroySurface() destroys a Surface
The Android graphics path 15 Copyright ©2011-2014, 2net Limited
IDisplayEventConnection
• IDisplayEventConnection
• This interface passes vsync event information from
SurfaceFlinger to the client
• setVsyncRate() sets the vsync event delivery rate:
value of 1 returns all events, 0 returns none
• requestNextVsync() schedules the next vsync event:
has no effect if the vsync rate is non zero
• getDataChannel() returns a BitTube which can be
used to receive events
The Android graphics path 16 Copyright ©2011-2014, 2net Limited
BufferQueue
frameworks/native/include/gui/BufferQueue.h
• Mechanism for passing GraphicBuffers to
SurfaceFlinger
• Contains an array of between 2 and 32
GraphicBuffers
• Uses interface IGraphicBufferAlloc to allocate buffers
(see later)
• Provides two Binder interfaces
• IGraphicBufferProducer for the client (Activity)
• IGraphicBufferConsumer for the consumer
(SurfaceFlinger)
• Buffers cycle between producer and consumer
The Android graphics path 17 Copyright ©2011-2014, 2net Limited
BufferQueue state diagram
FREE
QUEUED
DEQUEUEDACQUIRED
IGraphicBufferProducer::
dequeueBuffer()
IGraphicBufferConsumer::
releaseBuffer()
IGraphicBufferProducer::
queueBuffer()
IGraphicBufferConsumer::
acquireBuffer()
IGraphicBufferProducer::
cancelBuffer()
The Android graphics path 18 Copyright ©2011-2014, 2net Limited
BufferQueue
• Default number of buffer slots since JB is 3
(previously 2)
• In JB you can compile Layer.cpp with
TARGET_DISABLE_TRIPLE_BUFFERING to return to 2 slots
• Call setBufferCount() to change the number of slots
• BufferQueue operates in two modes:
• Synchronous: client blocks until there is a free slot
• Asynchronous: queueBuffer() discards any existing
buffers in QUEUED state so the queue only holds the
most recent frame
The Android graphics path 19 Copyright ©2011-2014, 2net Limited
GraphicBuffer
frameworks/native/include/ui/GraphicBuffer.h
• Represents a buffer, wraps ANativeWindowBuffer
• Attributes including width, height, format, usage
inherited from ANativeWindowBuffer
The Android graphics path 20 Copyright ©2011-2014, 2net Limited
Composition
• On a vsync event, SurfaceFlinger calls
handleMessageRefresh() which goes through a
composition cycle:
• preComposition(): sort layers by Z order and call
onPreComposition() for each
• doComposition(): loop through displays: if there is a
dirty region, mark it to be drawn then call
postFameBuffer() to do the drawing
• postComposition(): loop through layers in Z order and
call onPostComposition()
The Android graphics path 21 Copyright ©2011-2014, 2net Limited
Layer
frameworks/native/services/surfaceflinger/Layer.h
• Each Layer has
• Z order
• Alpha value from 0 to 255
• visibleRegion
• crop region
• transformation: rotate 0, 90, 180, 270: flip H, V: scale
• SurfaceFlinger composits the layers using
• HWComposer, if it supports the operation
• Fall back to the GPU, via OpenGL ES (version 1.0
only, for historical reasons)
The Android graphics path 22 Copyright ©2011-2014, 2net Limited
HWComposer
hardware/libhardware/include/hardware/hwcomposer.h
• HWComposer is a vendor-supplied library, at run-time
in /system/lib/hw/hwcomposer.[product name].so
• Optional: in all cases there are fall-backs if HWC is
absent
• HWC does several different things
• sync framework (vsync callback)
• modesetting, display hotplug (e.g. hdmi)
• compositing layers together using features of the
display controller
• displaying frames on the screen
The Android graphics path 23 Copyright ©2011-2014, 2net Limited
prepare() and set()
• SurfaceFlinger calls HWComposer in two stages
• prepare()
• Passes a list of layers
• For each layer, HWComposer returns
• HWC_FRAMEBUFFER: SurfaceFlinger should write this
layer (using OpenGL)
• HWC_OVERLAY: will be composed by HWComposer
• set()
• Passes the list of layers for HWComposer to handle
• set() is used in place of eglSwapBuffers()
The Android graphics path 24 Copyright ©2011-2014, 2net Limited
vsync
• Since JB 4.1 SurfaceFlinger is synchronised to a
60Hz (16.7ms period) vsync event
• If HWComposer present, it is responsible for vsync
• Usually using an interrupt from the display: if no h/w
trigger, fake in software
• vsync() is a callback registered with HWComposer
• Each callback includes a display identifier and a
timestamp (in ns)
• If no HWComposer, SurfaceFlinger uses 16ms
timeout in s/w
The Android graphics path 25 Copyright ©2011-2014, 2net Limited
Displays
• HWComposer defines three display types
HWC_DISPLAY_PRIMARY e.g. built-in LCD screen
HWC_DISPLAY_EXTERNAL e.g. HDMI, WiDi
HWC_DISPLAY_VIRTUAL not a real display
• For each display there is an instance of
DisplayDevice in SurfaceFlinger
The Android graphics path 26 Copyright ©2011-2014, 2net Limited
IGraphicBufferAlloc and friends
frameworks/native/include/gui/IGraphicBufferAlloc.h
• Binder interface used by SurfaceFlinger to allocate
buffers
• Has one function createGraphicBuffer
• Implemented by class GraphicBufferAllocator, which
wraps the ANativeWindowBuffer class
• Uses Gralloc.alloc to the the actual allocation
• Underlying buffer is referenced by a buffer_handle_t
which is a file descriptor (returned by gralloc alloc)
• Binder can pass open file descriptors from process to
process
• Access buffer data using mmap
The Android graphics path 27 Copyright ©2011-2014, 2net Limited
Buffer usage and pixel format
frameworks/native/include/ui/GraphicBuffer.h
USAGE_HW_TEXTURE OpenGL ES texture
USAGE_HW_RENDER OpenGL ES render target
USAGE_HW_2D 2D hardware blitter
USAGE_HW_COMPOSER used by the HWComposer HAL
USAGE_HW_VIDEO_ENCODER HW video encoder
frameworks/native/include/ui/PixelFormat.h
PIXEL_FORMAT_RGBA_8888 4x8-bit RGBA
PIXEL_FORMAT_RGBX_8888 4x8-bit RGB0
PIXEL_FORMAT_RGB_888 3x8-bit RGB
PIXEL_FORMAT_RGB_565 16-bit RGB
PIXEL_FORMAT_BGRA_8888 4x8-bit BGRA
The Android graphics path 28 Copyright ©2011-2014, 2net Limited
Gralloc
hardware/libhardware/include/hardware/gralloc.h
• Gralloc is a vendor-supplied library, at run-time in
/system/lib/hw/gralloc.[product name].so
• Does two things
• gralloc alloc: allocates graphic buffers
• gralloc framebuffer: interface to Linux framebuffer
device, e.g. /dev/graphics/fb0
• gralloc alloc allocates all graphic buffers using a
kernel memory manager, typically ION
• Selects appropriate ION heap based on the buffer
usage flags
The Android graphics path 29 Copyright ©2011-2014, 2net Limited
OpenGL ES
• The Khronos OpenGL ES and EGL APIs are
implemented in these libraries
• /system/lib/libEGL.so
• /system/lib/libGLESv1_CM.so
• /system/lib/libGLESv2.so
• /system/lib/libGLESv3.so (optional from JB 4.3
onwards: actually a symlink to libGLESv2.so)
• In most cases they simply call down to the
vendor-supplied libraries in /system/lib/egl
The Android graphics path 30 Copyright ©2011-2014, 2net Limited
EGL
• EGL is the Khronos Native Platform Graphics
Interface
• Rendering operations are executed in an EGLContext
• In most cases the EGLContext is based on the
default display
• The mapping from the EGL generic display type is
done in
frameworks/native/opengl/include/EGL/eglplatform.h
typedef struct ANativeWindow* EGLNativeWindowType;
• EGLNativeWindowType is defined in
system/core/include/system/window.h
The Android graphics path 31 Copyright ©2011-2014, 2net Limited
OpenGL vendor implementation
• The vendor OpenGL libraries form the interface to the
GPU
• Responsible for
• creating display lists
• scheduling work for the GPU
• managing buffer synchronisation (typically using
fences, see background at the end)
• Usually there is a kernel driver which handles low
level memory management, DMA and interrupts
• The kernel interface is usually a group of ioctl
functions
The Android graphics path 32 Copyright ©2011-2014, 2net Limited
• Questions?
The Android graphics path 33 Copyright ©2011-2014, 2net Limited
Background: fences
The Android graphics path 34 Copyright ©2011-2014, 2net Limited
Buffer synchronisation
• There are many producers and consumers of
graphics buffers
• Pre JB sync was implicit: buffer not released until
operation complete
• Did not encourage parallel processing
• JB introduced explicit sync: each buffer has a sync
object called a fence
• Means a buffer can be passed to the next user before
operations complete
• The next user waits on the fence before accessing
the buffer contents
The Android graphics path 35 Copyright ©2011-2014, 2net Limited
Synchronisation using fences
• Represented by file handles: can be passed between
applications in binder messages
• Can also be passed from applications to drivers
• Each device driver (display, camera, video codec...)
has its own timeline
• A fence may have synchronisation points on multiple
timelines
• Allows buffers to be passed between multiple devices
The Android graphics path 36 Copyright ©2011-2014, 2net Limited
Timeline and sync point
• Timeline
• Per-device (display, GPU, camera, ...)
• Monotonically increasing 32-bit value
• Incremented after each event (essentially it is a count
of the jobs processed by the device)
• Sync point
• A point on a timeline
• Becomes signalled when the timeline passes it
The Android graphics path 37 Copyright ©2011-2014, 2net Limited
Fence
• Fence
• A collection of one or more sync points, possibly from
different timelines
• Represented by a file descriptor so an application can
wait using poll()
• Two fences can be merged to create a new fence that
depends on all the sync points of the original pair
The Android graphics path 38 Copyright ©2011-2014, 2net Limited
Fence: example
FB
timeline
GPU
timeline
Sync pt
Sync pt
Sync
Fence
The Android graphics path 39 Copyright ©2011-2014, 2net Limited
Background: ION
The Android graphics path 40 Copyright ©2011-2014, 2net Limited
Memory constraints
• Often necessary for a buffer to be accessed by
hardware
• Example: graphics buffer and display controller or
GPU
• Hardware may constrain memory access
• Example: hardware without IOMMU usually needs
physically contiguous memory
• To avoid copying, the memory must be allocated for
the most constrained device
The Android graphics path 41 Copyright ©2011-2014, 2net Limited
ION
• Previous memory allocators include pmem
(Qualcomm), cmem (TI), and nvmap (NVIDA)
• ION provides a unified interface for these needs
• Different allocation constraints
• Different caching requirements
• But the programmer still has to make the right choices
The Android graphics path 42 Copyright ©2011-2014, 2net Limited
Types of heap
• ION_HEAP_TYPE_SYSTEM
• memory allocated via vmalloc
• ION_HEAP_TYPE_SYSTEM_CONTIG
• memory allocated via kmalloc
• ION_HEAP_TYPE_CARVEOUT
• memory allocated from a pre reserved carveout heap
• allocations are physically contiguous
The Android graphics path 43 Copyright ©2011-2014, 2net Limited
Heap flags
• ION_FLAG_CACHED
• mappings of this buffer should be cached, ION will do
cache maintenance when the buffer is mapped for
DMA
• ION_FLAG_CACHED_NEEDS_SYNC
• Cache must be managed manually, e.g. using
ION_IOC_SYNC
The Android graphics path 44 Copyright ©2011-2014, 2net Limited

More Related Content

What's hot (20)

PDF
Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...
Opersys inc.
 
PPT
Learning AOSP - Android Booting Process
Nanik Tolaram
 
PDF
Embedded Android : System Development - Part I
Emertxe Information Technologies Pvt Ltd
 
PDF
Embedded Android : System Development - Part IV (Android System Services)
Emertxe Information Technologies Pvt Ltd
 
PDF
Introduction to Android Window System
National Cheng Kung University
 
PDF
Android Boot Time Optimization
Kan-Ru Chen
 
PPTX
Binder: Android IPC
Shaul Rosenzwieg
 
PDF
Hardware Accelerated 2D Rendering for Android
National Cheng Kung University
 
PDF
Booting Android: bootloaders, fastboot and boot images
Chris Simmonds
 
PDF
Android IPC Mechanism
National Cheng Kung University
 
PDF
Android media framework overview
Jerrin George
 
PDF
Embedded Android : System Development - Part III (Audio / Video HAL)
Emertxe Information Technologies Pvt Ltd
 
PDF
Android internals 07 - Android graphics (rev_1.1)
Egor Elizarov
 
PPT
Android booting sequece and setup and debugging
Utkarsh Mankad
 
PPTX
Overview of Android binder IPC implementation
Chethan Pchethan
 
PPT
Learning AOSP - Android Linux Device Driver
Nanik Tolaram
 
PDF
Embedded Android : System Development - Part II (Linux device drivers)
Emertxe Information Technologies Pvt Ltd
 
PDF
Embedded Android Workshop
Opersys inc.
 
PPTX
Aidl service
Anjan Debnath
 
PDF
Android's Multimedia Framework
Opersys inc.
 
Native Android Userspace part of the Embedded Android Workshop at Linaro Conn...
Opersys inc.
 
Learning AOSP - Android Booting Process
Nanik Tolaram
 
Embedded Android : System Development - Part I
Emertxe Information Technologies Pvt Ltd
 
Embedded Android : System Development - Part IV (Android System Services)
Emertxe Information Technologies Pvt Ltd
 
Introduction to Android Window System
National Cheng Kung University
 
Android Boot Time Optimization
Kan-Ru Chen
 
Binder: Android IPC
Shaul Rosenzwieg
 
Hardware Accelerated 2D Rendering for Android
National Cheng Kung University
 
Booting Android: bootloaders, fastboot and boot images
Chris Simmonds
 
Android IPC Mechanism
National Cheng Kung University
 
Android media framework overview
Jerrin George
 
Embedded Android : System Development - Part III (Audio / Video HAL)
Emertxe Information Technologies Pvt Ltd
 
Android internals 07 - Android graphics (rev_1.1)
Egor Elizarov
 
Android booting sequece and setup and debugging
Utkarsh Mankad
 
Overview of Android binder IPC implementation
Chethan Pchethan
 
Learning AOSP - Android Linux Device Driver
Nanik Tolaram
 
Embedded Android : System Development - Part II (Linux device drivers)
Emertxe Information Technologies Pvt Ltd
 
Embedded Android Workshop
Opersys inc.
 
Aidl service
Anjan Debnath
 
Android's Multimedia Framework
Opersys inc.
 

Similar to The Android graphics path, in depth (20)

KEY
Gtug
Mohan Krk
 
PDF
Customizing Android's UI
Opersys inc.
 
PDF
WebKit, HTML5 media and GStreamer on multiple platforms (GStreamer Conference...
Igalia
 
PDF
WebKit, HTML5 media and GStreamer on multiple platforms
philn2
 
PDF
Web dev tools review
Changhyun Lee
 
PPT
Introduction to Skia by Ryan Chou @20141008
Ryan Chou
 
PDF
Droidcon uk2012 androvm
dfages
 
PDF
Customizing Android's UI
Opersys inc.
 
PDF
Customizing Android's UI
Opersys inc.
 
PDF
Android Things Internals
Opersys inc.
 
PDF
Android Things: Android for IoT
Opersys inc.
 
PPTX
20170321 docker with Visual Studio 2017
Takayoshi Tanaka
 
PDF
Android rpi-csimmonds-fosdem-2019
Chris Simmonds
 
PPTX
Android - Application Framework
Yong Heui Cho
 
PDF
Inside Android's UI at AnDevCon V
Opersys inc.
 
PDF
Inside Android's UI
Opersys inc.
 
PDF
Android Things Internals
Opersys inc.
 
PDF
Targeting Android with Qt
Espen Riskedal
 
PPTX
Android Effective UI: Tips, Tricks and Patterns
Adham Enaya
 
PPTX
Настройка окружения для кросскомпиляции проектов на основе docker'a
corehard_by
 
Gtug
Mohan Krk
 
Customizing Android's UI
Opersys inc.
 
WebKit, HTML5 media and GStreamer on multiple platforms (GStreamer Conference...
Igalia
 
WebKit, HTML5 media and GStreamer on multiple platforms
philn2
 
Web dev tools review
Changhyun Lee
 
Introduction to Skia by Ryan Chou @20141008
Ryan Chou
 
Droidcon uk2012 androvm
dfages
 
Customizing Android's UI
Opersys inc.
 
Customizing Android's UI
Opersys inc.
 
Android Things Internals
Opersys inc.
 
Android Things: Android for IoT
Opersys inc.
 
20170321 docker with Visual Studio 2017
Takayoshi Tanaka
 
Android rpi-csimmonds-fosdem-2019
Chris Simmonds
 
Android - Application Framework
Yong Heui Cho
 
Inside Android's UI at AnDevCon V
Opersys inc.
 
Inside Android's UI
Opersys inc.
 
Android Things Internals
Opersys inc.
 
Targeting Android with Qt
Espen Riskedal
 
Android Effective UI: Tips, Tricks and Patterns
Adham Enaya
 
Настройка окружения для кросскомпиляции проектов на основе docker'a
corehard_by
 
Ad

More from Chris Simmonds (19)

PDF
Debugging embedded devices using GDB
Chris Simmonds
 
PDF
Debian or Yocto Project? Which is the best for your Embedded Linux project?
Chris Simmonds
 
PDF
Embedded Linux Quick Start Guide v1.5
Chris Simmonds
 
PDF
Running Android on the Raspberry Pi: Android Pie meets Raspberry Pi
Chris Simmonds
 
PDF
Reducing the boot time of Linux devices
Chris Simmonds
 
PDF
Reducing boot time in embedded Linux
Chris Simmonds
 
PDF
Linux power management: are you doing it right?
Chris Simmonds
 
PDF
Embedded Android: Android beyond the smartphone
Chris Simmonds
 
PDF
Software update for IoT Embedded World 2017
Chris Simmonds
 
PDF
Quick and Easy Device Drivers for Embedded Linux Using UIO
Chris Simmonds
 
PDF
Software update for IoT: the current state of play
Chris Simmonds
 
PDF
Read-only rootfs: theory and practice
Chris Simmonds
 
PDF
Android beyond the smartphone
Chris Simmonds
 
PDF
10 ways hardware engineers can make software integration easier
Chris Simmonds
 
PDF
Userspace drivers-2016
Chris Simmonds
 
PDF
The end of embedded Linux (as we know it)
Chris Simmonds
 
PDF
Linux field-update-2015
Chris Simmonds
 
PDF
Tuning Android for low RAM
Chris Simmonds
 
PDF
A timeline for embedded Linux
Chris Simmonds
 
Debugging embedded devices using GDB
Chris Simmonds
 
Debian or Yocto Project? Which is the best for your Embedded Linux project?
Chris Simmonds
 
Embedded Linux Quick Start Guide v1.5
Chris Simmonds
 
Running Android on the Raspberry Pi: Android Pie meets Raspberry Pi
Chris Simmonds
 
Reducing the boot time of Linux devices
Chris Simmonds
 
Reducing boot time in embedded Linux
Chris Simmonds
 
Linux power management: are you doing it right?
Chris Simmonds
 
Embedded Android: Android beyond the smartphone
Chris Simmonds
 
Software update for IoT Embedded World 2017
Chris Simmonds
 
Quick and Easy Device Drivers for Embedded Linux Using UIO
Chris Simmonds
 
Software update for IoT: the current state of play
Chris Simmonds
 
Read-only rootfs: theory and practice
Chris Simmonds
 
Android beyond the smartphone
Chris Simmonds
 
10 ways hardware engineers can make software integration easier
Chris Simmonds
 
Userspace drivers-2016
Chris Simmonds
 
The end of embedded Linux (as we know it)
Chris Simmonds
 
Linux field-update-2015
Chris Simmonds
 
Tuning Android for low RAM
Chris Simmonds
 
A timeline for embedded Linux
Chris Simmonds
 
Ad

Recently uploaded (20)

PDF
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
PPTX
Homogeneity of Variance Test Options IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
PDF
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
PPTX
Tally software_Introduction_Presentation
AditiBansal54083
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PDF
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PPTX
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
PDF
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
PPTX
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PPTX
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PDF
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
PDF
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 
Empower Your Tech Vision- Why Businesses Prefer to Hire Remote Developers fro...
logixshapers59
 
Homogeneity of Variance Test Options IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
Tally software_Introduction_Presentation
AditiBansal54083
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
Odoo CRM vs Zoho CRM: Honest Comparison 2025
Odiware Technologies Private Limited
 

The Android graphics path, in depth

  • 1. The Android graphics path in depth The Android graphics path 1 Copyright ©2011-2014, 2net Limited
  • 2. License These slides are available under a Creative Commons Attribution-ShareAlike 3.0 license. You can read the full text of the license here http://creativecommons.org/licenses/by-sa/3.0/legalcode You are free to • copy, distribute, display, and perform the work • make derivative works • make commercial use of the work Under the following conditions • Attribution: you must give the original author credit • Share Alike: if you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one (i.e. include this page exactly as it is) • For any reuse or distribution, you must make clear to others the license terms of this work The orginals are at http://2net.co.uk/slides/android-graphics-abs-2014.pdf The Android graphics path 2 Copyright ©2011-2014, 2net Limited
  • 3. About Chris Simmonds • Consultant and trainer • Working with embedded Linux since 1999 • Android since 2009 • Speaker at many conferences and workshops "Looking after the Inner Penguin" blog at http://2net.co.uk/ https://uk.linkedin.com/in/chrisdsimmonds/ https://google.com/+chrissimmonds The Android graphics path 3 Copyright ©2011-2014, 2net Limited
  • 4. Overview • The Android graphics stack changed a lot in Jelly Bean as a result of project Butter • This presentation describes the current (JB) graphics stack from top to bottom • Main topics covered • The application layer • SurfaceFlinger, interfaces and buffer queues • The hardware modules HWComposer and Gralloc • OpenGL ES and EGL The Android graphics path 4 Copyright ©2011-2014, 2net Limited
  • 5. The big picture SurfaceFlinger Activity OpenGL vendor libraries OpenGL ES GPU driver HWComposer ION Gralloc alloc FB driver Gralloc FB Android framework Vendor HAL library Kernel driver Activity Activity Manager Window Manager BufferQueue The Android graphics path 5 Copyright ©2011-2014, 2net Limited
  • 6. Inception of a pixel • Everything begins when an activity draws to a surface • 2D applications can use • drawing functions in Canvas to write to a Bitmap: android.graphics.Canvas.drawRect(), drawText(), etc • descendants of the View class to draw objects such as buttons and lists • a custom View class to implement your own appearance and behaviour • In all cases the drawing is rendered to a Surface which contains a GraphicBuffer The Android graphics path 6 Copyright ©2011-2014, 2net Limited
  • 7. 2D rendering path Activity Canvas Surface SkiaOpenGL ES Vendor Open GL GPU driver Activity HWUI The Android graphics path 7 Copyright ©2011-2014, 2net Limited
  • 8. Skia and hwui • For 2D drawing there are two rendering paths • hwui: (libwhui.so) hardware accelerated using OpenGL ES 2.0 • skia: (libskia.so) software render engine • hwui is the default • Hardware rendering can be disabled per view, window, activity, application or for the whole device • Maybe for comparability reasons: hwui produces results different to skia in some (rare) cases The Android graphics path 8 Copyright ©2011-2014, 2net Limited
  • 9. 3D rendering path • An activity can instead create a GLSurfaceView and use OpenGL ES bindings for Java (the android.opengl.* classes) • Using either the vendor GPU driver (which must support OpenGL ES 2.0 and optinally 3.0) • Or as a fall-back, using PixelFlinger, a software GPU that implements OpenGL ES 1.0 only • Once again, the drawing is rendered to a Surface The Android graphics path 9 Copyright ©2011-2014, 2net Limited
  • 10. 3D rendering path Activity Surface OpenGL ES Vendor Open GL GPU driver Activity Android GL PixelFlinger The Android graphics path 10 Copyright ©2011-2014, 2net Limited
  • 12. SurfaceFlinger frameworks/native/services/surfaceflinger • A high-priority native (C++) daemon, started by init with UID=system • Services connections from activities via Binder interface ISurfaceComposer • Receives activity status from Activity Manager • Receives window status (visibility, Z-order) from Window Manager • Composits multiple Surfaces into a single image • Passes image to one or more displays • Manages buffer allocation, synchronisation The Android graphics path 12 Copyright ©2011-2014, 2net Limited
  • 13. SurfaceFlinger binder interfaces SurfaceFlinger Client ISurfaceComposer ISurfaceComposerClient IDisplayEventConnection e.g. activity createConnection() createDisplayEventConnection() createSurface() destroySurface() getDataChannel() The Android graphics path 13 Copyright ©2011-2014, 2net Limited
  • 14. ISurfaceComposer • ISurfaceComposer • Clients use this interface to set up a connection with SurfaceFlinger • Client begins by calling createConnection() which spawns an ISurfaceComposerClient • Client calls createGraphicBufferAlloc() to create an instance of IGraphicBufferAlloc (discussed later) • Client calls createDisplayEventConnection() to create an instance of IDisplayEventConnection • Other methods include captureScreen() and setTransactionState() The Android graphics path 14 Copyright ©2011-2014, 2net Limited
  • 15. ISurfaceComposerClient • ISurfaceComposerClient • This interface has two methods: • createSurface() asks SufraceFlinger to create a new Surface • destroySurface() destroys a Surface The Android graphics path 15 Copyright ©2011-2014, 2net Limited
  • 16. IDisplayEventConnection • IDisplayEventConnection • This interface passes vsync event information from SurfaceFlinger to the client • setVsyncRate() sets the vsync event delivery rate: value of 1 returns all events, 0 returns none • requestNextVsync() schedules the next vsync event: has no effect if the vsync rate is non zero • getDataChannel() returns a BitTube which can be used to receive events The Android graphics path 16 Copyright ©2011-2014, 2net Limited
  • 17. BufferQueue frameworks/native/include/gui/BufferQueue.h • Mechanism for passing GraphicBuffers to SurfaceFlinger • Contains an array of between 2 and 32 GraphicBuffers • Uses interface IGraphicBufferAlloc to allocate buffers (see later) • Provides two Binder interfaces • IGraphicBufferProducer for the client (Activity) • IGraphicBufferConsumer for the consumer (SurfaceFlinger) • Buffers cycle between producer and consumer The Android graphics path 17 Copyright ©2011-2014, 2net Limited
  • 19. BufferQueue • Default number of buffer slots since JB is 3 (previously 2) • In JB you can compile Layer.cpp with TARGET_DISABLE_TRIPLE_BUFFERING to return to 2 slots • Call setBufferCount() to change the number of slots • BufferQueue operates in two modes: • Synchronous: client blocks until there is a free slot • Asynchronous: queueBuffer() discards any existing buffers in QUEUED state so the queue only holds the most recent frame The Android graphics path 19 Copyright ©2011-2014, 2net Limited
  • 20. GraphicBuffer frameworks/native/include/ui/GraphicBuffer.h • Represents a buffer, wraps ANativeWindowBuffer • Attributes including width, height, format, usage inherited from ANativeWindowBuffer The Android graphics path 20 Copyright ©2011-2014, 2net Limited
  • 21. Composition • On a vsync event, SurfaceFlinger calls handleMessageRefresh() which goes through a composition cycle: • preComposition(): sort layers by Z order and call onPreComposition() for each • doComposition(): loop through displays: if there is a dirty region, mark it to be drawn then call postFameBuffer() to do the drawing • postComposition(): loop through layers in Z order and call onPostComposition() The Android graphics path 21 Copyright ©2011-2014, 2net Limited
  • 22. Layer frameworks/native/services/surfaceflinger/Layer.h • Each Layer has • Z order • Alpha value from 0 to 255 • visibleRegion • crop region • transformation: rotate 0, 90, 180, 270: flip H, V: scale • SurfaceFlinger composits the layers using • HWComposer, if it supports the operation • Fall back to the GPU, via OpenGL ES (version 1.0 only, for historical reasons) The Android graphics path 22 Copyright ©2011-2014, 2net Limited
  • 23. HWComposer hardware/libhardware/include/hardware/hwcomposer.h • HWComposer is a vendor-supplied library, at run-time in /system/lib/hw/hwcomposer.[product name].so • Optional: in all cases there are fall-backs if HWC is absent • HWC does several different things • sync framework (vsync callback) • modesetting, display hotplug (e.g. hdmi) • compositing layers together using features of the display controller • displaying frames on the screen The Android graphics path 23 Copyright ©2011-2014, 2net Limited
  • 24. prepare() and set() • SurfaceFlinger calls HWComposer in two stages • prepare() • Passes a list of layers • For each layer, HWComposer returns • HWC_FRAMEBUFFER: SurfaceFlinger should write this layer (using OpenGL) • HWC_OVERLAY: will be composed by HWComposer • set() • Passes the list of layers for HWComposer to handle • set() is used in place of eglSwapBuffers() The Android graphics path 24 Copyright ©2011-2014, 2net Limited
  • 25. vsync • Since JB 4.1 SurfaceFlinger is synchronised to a 60Hz (16.7ms period) vsync event • If HWComposer present, it is responsible for vsync • Usually using an interrupt from the display: if no h/w trigger, fake in software • vsync() is a callback registered with HWComposer • Each callback includes a display identifier and a timestamp (in ns) • If no HWComposer, SurfaceFlinger uses 16ms timeout in s/w The Android graphics path 25 Copyright ©2011-2014, 2net Limited
  • 26. Displays • HWComposer defines three display types HWC_DISPLAY_PRIMARY e.g. built-in LCD screen HWC_DISPLAY_EXTERNAL e.g. HDMI, WiDi HWC_DISPLAY_VIRTUAL not a real display • For each display there is an instance of DisplayDevice in SurfaceFlinger The Android graphics path 26 Copyright ©2011-2014, 2net Limited
  • 27. IGraphicBufferAlloc and friends frameworks/native/include/gui/IGraphicBufferAlloc.h • Binder interface used by SurfaceFlinger to allocate buffers • Has one function createGraphicBuffer • Implemented by class GraphicBufferAllocator, which wraps the ANativeWindowBuffer class • Uses Gralloc.alloc to the the actual allocation • Underlying buffer is referenced by a buffer_handle_t which is a file descriptor (returned by gralloc alloc) • Binder can pass open file descriptors from process to process • Access buffer data using mmap The Android graphics path 27 Copyright ©2011-2014, 2net Limited
  • 28. Buffer usage and pixel format frameworks/native/include/ui/GraphicBuffer.h USAGE_HW_TEXTURE OpenGL ES texture USAGE_HW_RENDER OpenGL ES render target USAGE_HW_2D 2D hardware blitter USAGE_HW_COMPOSER used by the HWComposer HAL USAGE_HW_VIDEO_ENCODER HW video encoder frameworks/native/include/ui/PixelFormat.h PIXEL_FORMAT_RGBA_8888 4x8-bit RGBA PIXEL_FORMAT_RGBX_8888 4x8-bit RGB0 PIXEL_FORMAT_RGB_888 3x8-bit RGB PIXEL_FORMAT_RGB_565 16-bit RGB PIXEL_FORMAT_BGRA_8888 4x8-bit BGRA The Android graphics path 28 Copyright ©2011-2014, 2net Limited
  • 29. Gralloc hardware/libhardware/include/hardware/gralloc.h • Gralloc is a vendor-supplied library, at run-time in /system/lib/hw/gralloc.[product name].so • Does two things • gralloc alloc: allocates graphic buffers • gralloc framebuffer: interface to Linux framebuffer device, e.g. /dev/graphics/fb0 • gralloc alloc allocates all graphic buffers using a kernel memory manager, typically ION • Selects appropriate ION heap based on the buffer usage flags The Android graphics path 29 Copyright ©2011-2014, 2net Limited
  • 30. OpenGL ES • The Khronos OpenGL ES and EGL APIs are implemented in these libraries • /system/lib/libEGL.so • /system/lib/libGLESv1_CM.so • /system/lib/libGLESv2.so • /system/lib/libGLESv3.so (optional from JB 4.3 onwards: actually a symlink to libGLESv2.so) • In most cases they simply call down to the vendor-supplied libraries in /system/lib/egl The Android graphics path 30 Copyright ©2011-2014, 2net Limited
  • 31. EGL • EGL is the Khronos Native Platform Graphics Interface • Rendering operations are executed in an EGLContext • In most cases the EGLContext is based on the default display • The mapping from the EGL generic display type is done in frameworks/native/opengl/include/EGL/eglplatform.h typedef struct ANativeWindow* EGLNativeWindowType; • EGLNativeWindowType is defined in system/core/include/system/window.h The Android graphics path 31 Copyright ©2011-2014, 2net Limited
  • 32. OpenGL vendor implementation • The vendor OpenGL libraries form the interface to the GPU • Responsible for • creating display lists • scheduling work for the GPU • managing buffer synchronisation (typically using fences, see background at the end) • Usually there is a kernel driver which handles low level memory management, DMA and interrupts • The kernel interface is usually a group of ioctl functions The Android graphics path 32 Copyright ©2011-2014, 2net Limited
  • 33. • Questions? The Android graphics path 33 Copyright ©2011-2014, 2net Limited
  • 34. Background: fences The Android graphics path 34 Copyright ©2011-2014, 2net Limited
  • 35. Buffer synchronisation • There are many producers and consumers of graphics buffers • Pre JB sync was implicit: buffer not released until operation complete • Did not encourage parallel processing • JB introduced explicit sync: each buffer has a sync object called a fence • Means a buffer can be passed to the next user before operations complete • The next user waits on the fence before accessing the buffer contents The Android graphics path 35 Copyright ©2011-2014, 2net Limited
  • 36. Synchronisation using fences • Represented by file handles: can be passed between applications in binder messages • Can also be passed from applications to drivers • Each device driver (display, camera, video codec...) has its own timeline • A fence may have synchronisation points on multiple timelines • Allows buffers to be passed between multiple devices The Android graphics path 36 Copyright ©2011-2014, 2net Limited
  • 37. Timeline and sync point • Timeline • Per-device (display, GPU, camera, ...) • Monotonically increasing 32-bit value • Incremented after each event (essentially it is a count of the jobs processed by the device) • Sync point • A point on a timeline • Becomes signalled when the timeline passes it The Android graphics path 37 Copyright ©2011-2014, 2net Limited
  • 38. Fence • Fence • A collection of one or more sync points, possibly from different timelines • Represented by a file descriptor so an application can wait using poll() • Two fences can be merged to create a new fence that depends on all the sync points of the original pair The Android graphics path 38 Copyright ©2011-2014, 2net Limited
  • 39. Fence: example FB timeline GPU timeline Sync pt Sync pt Sync Fence The Android graphics path 39 Copyright ©2011-2014, 2net Limited
  • 40. Background: ION The Android graphics path 40 Copyright ©2011-2014, 2net Limited
  • 41. Memory constraints • Often necessary for a buffer to be accessed by hardware • Example: graphics buffer and display controller or GPU • Hardware may constrain memory access • Example: hardware without IOMMU usually needs physically contiguous memory • To avoid copying, the memory must be allocated for the most constrained device The Android graphics path 41 Copyright ©2011-2014, 2net Limited
  • 42. ION • Previous memory allocators include pmem (Qualcomm), cmem (TI), and nvmap (NVIDA) • ION provides a unified interface for these needs • Different allocation constraints • Different caching requirements • But the programmer still has to make the right choices The Android graphics path 42 Copyright ©2011-2014, 2net Limited
  • 43. Types of heap • ION_HEAP_TYPE_SYSTEM • memory allocated via vmalloc • ION_HEAP_TYPE_SYSTEM_CONTIG • memory allocated via kmalloc • ION_HEAP_TYPE_CARVEOUT • memory allocated from a pre reserved carveout heap • allocations are physically contiguous The Android graphics path 43 Copyright ©2011-2014, 2net Limited
  • 44. Heap flags • ION_FLAG_CACHED • mappings of this buffer should be cached, ION will do cache maintenance when the buffer is mapped for DMA • ION_FLAG_CACHED_NEEDS_SYNC • Cache must be managed manually, e.g. using ION_IOC_SYNC The Android graphics path 44 Copyright ©2011-2014, 2net Limited