diff options
Diffstat (limited to 'wgpu/src/primitive')
| -rw-r--r-- | wgpu/src/primitive/pipeline.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/wgpu/src/primitive/pipeline.rs b/wgpu/src/primitive/pipeline.rs index b59aeff1..5dbd6697 100644 --- a/wgpu/src/primitive/pipeline.rs +++ b/wgpu/src/primitive/pipeline.rs @@ -10,10 +10,10 @@ use std::sync::Arc;  #[derive(Clone, Debug)]  /// A custom primitive which can be used to render primitives associated with a custom pipeline.  pub struct Pipeline { -    /// The bounds of the [`Shader`]. +    /// The bounds of the [`Pipeline`].      pub bounds: Rectangle, -    /// The [`custom::Primitive`] to render. +    /// The [`Primitive`] to render.      pub primitive: Arc<dyn Primitive>,  }  | 
