Files
wgpu-renderer/Source/Render/Pipeline/PipelineDescriptor.rs
2022-01-05 09:41:22 -03:00

9 lines
178 B
Rust

use std::borrow::Cow;
#[derive(Clone, Debug)]
pub struct PipelineDescriptor {
pub label: Cow<'static, str>,
pub layout: Option<String>,
pub shader_stages: String,
}