mirror of
https://github.com/guilhermewerner/wgpu-renderer
synced 2025-06-15 13:24:20 +00:00
9 lines
178 B
Rust
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,
|
|
}
|