mirror of
https://github.com/guilhermewerner/wgpu-renderer
synced 2025-06-16 13:54:21 +00:00
Initial pipeline abstraction
This commit is contained in:
59
Source/Render/Pipeline/mod.rs
Normal file
59
Source/Render/Pipeline/mod.rs
Normal file
@ -0,0 +1,59 @@
|
||||
#[path = "CompareFunction.rs"]
|
||||
mod _CompareFunction;
|
||||
pub use self::_CompareFunction::*;
|
||||
|
||||
#[path = "DepthStencilState.rs"]
|
||||
mod _DepthStencilState;
|
||||
pub use self::_DepthStencilState::*;
|
||||
|
||||
#[path = "DepthBiasState.rs"]
|
||||
mod _DepthBiasState;
|
||||
pub use self::_DepthBiasState::*;
|
||||
|
||||
#[path = "Face.rs"]
|
||||
mod _Face;
|
||||
pub use self::_Face::*;
|
||||
|
||||
#[path = "FragmentState.rs"]
|
||||
mod _FragmentState;
|
||||
pub use self::_FragmentState::*;
|
||||
|
||||
#[path = "FrontFace.rs"]
|
||||
mod _FrontFace;
|
||||
pub use self::_FrontFace::*;
|
||||
|
||||
#[path = "PipelineDescriptor.rs"]
|
||||
mod _PipelineDescriptor;
|
||||
pub use self::_PipelineDescriptor::*;
|
||||
|
||||
#[path = "PolygonMode.rs"]
|
||||
mod _PolygonMode;
|
||||
pub use self::_PolygonMode::*;
|
||||
|
||||
#[path = "PrimitiveState.rs"]
|
||||
mod _PrimitiveState;
|
||||
pub use self::_PrimitiveState::*;
|
||||
|
||||
#[path = "PrimitiveTopology.rs"]
|
||||
mod _PrimitiveTopology;
|
||||
pub use self::_PrimitiveTopology::*;
|
||||
|
||||
#[path = "StencilFaceState.rs"]
|
||||
mod _StencilFaceState;
|
||||
pub use self::_StencilFaceState::*;
|
||||
|
||||
#[path = "StencilOperation.rs"]
|
||||
mod _StencilOperation;
|
||||
pub use self::_StencilOperation::*;
|
||||
|
||||
#[path = "StencilState.rs"]
|
||||
mod _StencilState;
|
||||
pub use self::_StencilState::*;
|
||||
|
||||
#[path = "TextureFormat.rs"]
|
||||
mod _TextureFormat;
|
||||
pub use self::_TextureFormat::*;
|
||||
|
||||
#[path = "VertexState.rs"]
|
||||
mod _VertexState;
|
||||
pub use self::_VertexState::*;
|
Reference in New Issue
Block a user