summaryrefslogtreecommitdiffstats
path: root/wgpu/src/target.rs
diff options
context:
space:
mode:
Diffstat (limited to 'wgpu/src/target.rs')
-rw-r--r--wgpu/src/target.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/wgpu/src/target.rs b/wgpu/src/target.rs
deleted file mode 100644
index 1e72c0c3..00000000
--- a/wgpu/src/target.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-use crate::Viewport;
-
-/// A rendering target.
-#[derive(Debug)]
-pub struct Target<'a> {
- /// The texture where graphics will be rendered.
- pub texture: &'a wgpu::TextureView,
-
- /// The viewport of the target.
- ///
- /// Most of the time, you will want this to match the dimensions of the
- /// texture.
- pub viewport: &'a Viewport,
-}