summaryrefslogtreecommitdiffstats
path: root/wgpu/src/quad.rs
diff options
context:
space:
mode:
Diffstat (limited to 'wgpu/src/quad.rs')
-rw-r--r--wgpu/src/quad.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/wgpu/src/quad.rs b/wgpu/src/quad.rs
index de432d2f..311cd81f 100644
--- a/wgpu/src/quad.rs
+++ b/wgpu/src/quad.rs
@@ -1,12 +1,15 @@
+mod background_image;
mod gradient;
mod solid;
+use background_image::BackgroundImage;
use gradient::Gradient;
use solid::Solid;
use crate::core::{Background, Rectangle, Transformation};
use crate::graphics;
use crate::graphics::color;
+use crate::image::Cache;
use bytemuck::{Pod, Zeroable};
@@ -47,6 +50,7 @@ pub struct Quad {
pub struct Pipeline {
solid: solid::Pipeline,
gradient: gradient::Pipeline,
+ background_image: background_image::Pipeline,
constant_layout: wgpu::BindGroupLayout,
layers: Vec<Layer>,
prepare_layer: usize,
@@ -85,6 +89,7 @@ impl Pipeline {
device: &wgpu::Device,
encoder: &mut wgpu::CommandEncoder,
belt: &mut wgpu::util::StagingBelt,
+ #[cfg(any(feature = "svg", feature = "image"))] cache: &mut Cache,
quads: &Batch,
transformation: Transformation,
scale: f32,
@@ -139,6 +144,7 @@ impl Pipeline {
gradient_offset += count;
}
+ Kind::Image => todo!(),
}
}
}
@@ -238,6 +244,9 @@ pub struct Batch {
/// The gradient quads of the [`Layer`].
gradients: Vec<Gradient>,
+ /// The image quads of the [`Layer`].
+ images: Vec<BackgroundImage>,
+
/// The quad order of the [`Layer`].
order: Order,
}
@@ -273,6 +282,11 @@ impl Batch {
Kind::Gradient
}
+ Background::Image(background_image) => {
+ self.images.push(BackgroundImage { quad });
+
+ Kind::Image
+ }
};
match self.order.last_mut() {
@@ -299,6 +313,8 @@ enum Kind {
Solid,
/// A gradient quad
Gradient,
+ /// A background image quad
+ Image,
}
fn color_target_state(