shdrlib 0.2.0

High-level shader compilation and rendering library built on wgpu and naga
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Backend module for wgpu integration.
//!
//! This module handles GPU device initialization, shader module creation,
//! and render pipeline construction.

pub mod device;
pub mod shader;
pub mod pipeline;

pub use device::GPUDevice;
pub use shader::WGPUShader;
pub use pipeline::RenderPipelineBuilder;