cvkg-render-software 0.3.2

CVKG internal crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# cvkg-render-software TLDR.md

## Purpose
Own the software renderer backend: CPU-based rendering fallback for environments where GPU acceleration is unavailable.

## Ownership
- `src/lib.rs` — Software renderer implementation
- CPU-based path rendering, blending, compositing

## Local Contracts
- Must produce pixel-identical results to GPU backend (within rounding tolerance).
- Must be performant enough for development and testing use.
- Must implement the full cvkg-core Renderer trait.

## Verification
- Run `cargo test -p cvkg-render-software`
- Run `cargo check --workspace`