cvkg-compositor 0.2.13

Cyber Viking Kvasir Graph (CVKG) - High-fidelity agentic UI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# cvkg-compositor TLDR.md

## Purpose
Own the compositor: layer management, z-ordering, blend modes, and the final compositing pipeline that combines all visual layers into the output frame.

## Ownership
- `src/lib.rs` — Compositor state, layer stack, blend modes
- Integration with cvkg-render-gpu for GPU-accelerated compositing

## Local Contracts
- Compositor must handle arbitrary layer depth without overflow.
- Blend modes must be composable and order-independent where possible.
- Must integrate with the Kvasir render graph for GPU compositing.

## Verification
- Run `cargo test -p cvkg-compositor`
- Run `cargo check --workspace`