aquamarine/README.md

28 lines
860 B
Markdown
Raw Normal View History

2024-06-18 11:38:26 +02:00
## Aquamarine
Aquamarine is a very light linux rendering backend library. It provides basic abstractions
for an application to render on a Wayland session (in a window) or a native DRM session.
It is agnostic of the rendering API (Vulkan/OpenGL) and designed to be lightweight, performant, and
minimal.
## Stability
Aquamarine depends on the ABI stability of the stdlib implementation of your compiler. Sover bumps will be done only for aquamarine ABI breaks, not stdlib.
## Building
```sh
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
```
## TODOs
2024-06-19 23:08:35 +02:00
- [x] Wayland backend
2024-06-18 11:38:26 +02:00
- [ ] DRM backend (DRM / KMS / libinput)
- [ ] Virtual backend (aka. Headless)
- [ ] Hardware plane support