summaryrefslogtreecommitdiffstats
path: root/wgpu
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-08 19:34:43 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-08 19:34:43 +0200
commit99c1464cc16979381b3a531d293ee34fd6697480 (patch)
tree5bcd99647c79dba266b3c061f755d0047cfe6ed9 /wgpu
parentbed53f81436c595e479009427e1fa4ff4a1048d3 (diff)
downloadiced-99c1464cc16979381b3a531d293ee34fd6697480.tar.gz
iced-99c1464cc16979381b3a531d293ee34fd6697480.tar.bz2
iced-99c1464cc16979381b3a531d293ee34fd6697480.zip
Update `glyphon` fork to a cleaner branch
Diffstat (limited to 'wgpu')
-rw-r--r--wgpu/src/text.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/wgpu/src/text.rs b/wgpu/src/text.rs
index 9ecd5c99..05db5f80 100644
--- a/wgpu/src/text.rs
+++ b/wgpu/src/text.rs
@@ -116,7 +116,7 @@ impl Storage {
viewport: &glyphon::Viewport,
encoder: &mut wgpu::CommandEncoder,
format: wgpu::TextureFormat,
- pipeline: &glyphon::Pipeline,
+ state: &glyphon::Cache,
cache: &Cache,
new_transformation: Transformation,
bounds: Rectangle,
@@ -132,7 +132,7 @@ impl Storage {
Group {
atlas: glyphon::TextAtlas::with_color_mode(
- device, queue, pipeline, format, COLOR_MODE,
+ device, queue, state, format, COLOR_MODE,
),
version: 0,
should_trim: false,
@@ -274,7 +274,7 @@ impl Viewport {
#[allow(missing_debug_implementations)]
pub struct Pipeline {
- state: glyphon::Pipeline,
+ state: glyphon::Cache,
format: wgpu::TextureFormat,
atlas: glyphon::TextAtlas,
renderers: Vec<glyphon::TextRenderer>,
@@ -288,7 +288,7 @@ impl Pipeline {
queue: &wgpu::Queue,
format: wgpu::TextureFormat,
) -> Self {
- let state = glyphon::Pipeline::new(device);
+ let state = glyphon::Cache::new(device);
let atlas = glyphon::TextAtlas::with_color_mode(
device, queue, &state, format, COLOR_MODE,
);