use self::{blending::BlendFunction, culling::CullingMode, depth::DepthFunction};
pub mod blending;
pub mod culling;
pub mod depth;
pub mod enable;
#[derive(Default, Clone)]
pub struct StateDescriptor {
pub blend_func: Option<BlendFunction>,
pub culling: Option<CullingMode>,
pub depth_func: Option<DepthFunction>,
}