tree: c883c3a235a0f4a708174076adfbfbf37d34d3e9 [path history] [tgz]
  1. docs/
  2. gnbuild/
  3. include/
  4. scripts/
  5. src/
  6. tests/
  7. third_party/
  8. .clang-format
  9. BUILD.gn
  10. MAINTAINERS
  11. README.md
lib/magma/README.md

Magma: Graphics for Zircon

Magma is a framework for graphics drivers on the Zircon kernel. Magma drivers are logically divided into a ‘System Driver’ which runs as a userspace Zircon driver service, and an ‘Application Driver’ which runs in the application's address space (this mirrors the architecture of the ‘Kernel Mode Driver’ and ‘User Mode Driver’ in traditional graphics stack for monolithic kernels, but here both components run in userspace).

Magma itself is the body of software that sits between the Application Driver and the System Driver and facilitates communication between the two over Zircon IPC, and provides core buffer sharing logic which underlies the system compositing mechanism.

Both the Application Driver and the System Driver interface with the Magma framework through stable, versioned ABIs in order to allow updating the core graphics system and IHV drivers independently of one another.