mirror of
https://github.com/guilhermewerner/wgpu-renderer
synced 2025-06-16 05:44:21 +00:00
10 lines
179 B
Rust
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,
|
|
|
|
}
|