Files
wgpu-renderer/Source/Render/Pipeline/PipelineDescriptor.rs
2021-11-23 20:09:05 -03:00

10 lines
179 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,
}