| 6 | |
| 7 | #[derive(Clone, Debug)] |
| 8 | pub struct BufferRendererConfig { |
| 9 | pub width: u32, |
| 10 | pub height: u32, |
| 11 | pub usage: TextureUsages, |
| 12 | } |
| 13 | |
| 14 | /// Utility struct for rendering to `Vec<u8>` |
| 15 | pub struct BufferRenderer { |
nothing calls this directly
no outgoing calls
no test coverage detected