concinnity_render/metal/mod.rs
1// src/metal/mod.rs
2//
3// GPU-free, CPU-side pieces of the Metal backend: the repr(C) uniform structs
4// mirrored in the MSL shaders and the shader-layout binding contract. None of these touch a Metal device or encoder, and they are
5// unit-tested without a GPU. They live in concinnity-render (not the excluded
6// concinnity-device crate) and are compiled unconditionally, so their layout
7// tests run on every platform's CI and count toward coverage. The Metal backend
8// re-exports them under `metal` so it keeps its existing `uniforms` /
9// `shader_layout` paths.
10
11pub mod shader_layout;
12pub mod uniforms;