1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
//! //! Types shared across rendy //! #[doc(inline)] pub mod vertex; /// Set layout #[derive(Clone, Debug, Default)] pub struct SetLayout { /// Set layout bindings. pub bindings: Vec<gfx_hal::pso::DescriptorSetLayoutBinding>, } /// Pipeline layout #[derive(Clone, Debug)] pub struct Layout { /// Sets in pipeline layout. pub sets: Vec<SetLayout>, /// Push constants in pipeline layout. pub push_constants: Vec<(gfx_hal::pso::ShaderStageFlags, std::ops::Range<u32>)>, }