From 3cf3141e8f07ce1a2c736e2cf1c4d500a6c5f7a7 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Fri, 27 Mar 2026 11:12:46 +0100 Subject: [PATCH 1/4] `wgpu` backend: Enable WebGL fallback (#8038) * Fix for https://github.com/emilk/eframe_template/issues/223 * Related: https://github.com/gfx-rs/wgpu/pull/9319 By default, we would only turn on the WebGPU backend on web, which means browsers without WebGPU support would just crash. You can still opt-out of all the default `wgpu` features by enabling `eframe/wgpu_no_default_features` instead of `eframe/wgpu` --- Cargo.lock | 1 - crates/eframe/Cargo.toml | 3 +-- crates/eframe/src/lib.rs | 2 +- crates/egui-wgpu/Cargo.toml | 7 ++++++- crates/egui_demo_app/Cargo.toml | 5 +---- crates/egui_demo_app/src/backend_panel.rs | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 526f8dd10..d9da12ef5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1330,7 +1330,6 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "wgpu", ] [[package]] diff --git a/crates/eframe/Cargo.toml b/crates/eframe/Cargo.toml index 0f08eb7f1..0530b64a8 100644 --- a/crates/eframe/Cargo.toml +++ b/crates/eframe/Cargo.toml @@ -89,7 +89,7 @@ web_screen_reader = ["web-sys/SpeechSynthesis", "web-sys/SpeechSynthesisUtteranc ## See for more details. ## ## By default, eframe will prefer WebGPU over WebGL, but -## you can configure this at run-time with [`NativeOptions::wgpu_options`]. +## you can configure this at run-time with `WebOptions::wgpu_options`. wgpu = ["wgpu_no_default_features", "egui-wgpu/default"] ## This is exactly like the `wgpu` feature, but does NOT enable the default features of `wgpu` and `egui-wgpu`. @@ -155,7 +155,6 @@ glutin-winit = { workspace = true, optional = true, default-features = false, fe "wgl", ] } home = { workspace = true, optional = true } -wgpu = { workspace = true, optional = true } # mac: [target.'cfg(any(target_os = "macos"))'.dependencies] diff --git a/crates/eframe/src/lib.rs b/crates/eframe/src/lib.rs index 86260ee5f..c644289e0 100644 --- a/crates/eframe/src/lib.rs +++ b/crates/eframe/src/lib.rs @@ -159,7 +159,7 @@ pub use {egui, egui::emath, egui::epaint}; pub use {egui_glow, glow}; #[cfg(feature = "wgpu_no_default_features")] -pub use {egui_wgpu, wgpu}; +pub use {egui_wgpu, egui_wgpu::wgpu}; mod epi; diff --git a/crates/egui-wgpu/Cargo.toml b/crates/egui-wgpu/Cargo.toml index 86cd3192b..0b081e134 100644 --- a/crates/egui-wgpu/Cargo.toml +++ b/crates/egui-wgpu/Cargo.toml @@ -25,7 +25,12 @@ all-features = true rustdoc-args = ["--generate-link-to-definition"] [features] -default = ["fragile-send-sync-non-atomic-wasm", "macos-window-resize-jitter-fix", "wgpu/default"] +default = [ + "fragile-send-sync-non-atomic-wasm", + "macos-window-resize-jitter-fix", + "wgpu/default", + "wgpu/webgl", # A very important fallback for web support +] ## Enables the `capture` module for capturing screenshots. capture = ["dep:egui"] diff --git a/crates/egui_demo_app/Cargo.toml b/crates/egui_demo_app/Cargo.toml index 49609746f..5bb093ced 100644 --- a/crates/egui_demo_app/Cargo.toml +++ b/crates/egui_demo_app/Cargo.toml @@ -37,7 +37,7 @@ serde = ["dep:serde", "egui_demo_lib/serde", "egui/serde"] syntect = ["egui_demo_lib/syntect"] glow = ["eframe/glow"] -wgpu = ["eframe/wgpu", "bytemuck", "dep:wgpu"] +wgpu = ["eframe/wgpu", "bytemuck"] wayland = ["eframe/wayland"] x11 = ["eframe/x11"] @@ -60,9 +60,6 @@ accesskit_consumer = { workspace = true, optional = true } bytemuck = { workspace = true, optional = true } puffin = { workspace = true, optional = true } puffin_http = { workspace = true, optional = true } -# Enable both WebGL & WebGPU when targeting the web (these features have no effect when not targeting wasm32) -# Also enable the default features so we have a supported backend for every platform. -wgpu = { workspace = true, features = ["default", "webgpu", "webgl"], optional = true } # feature "http": diff --git a/crates/egui_demo_app/src/backend_panel.rs b/crates/egui_demo_app/src/backend_panel.rs index dfc4d116b..cd17afd4a 100644 --- a/crates/egui_demo_app/src/backend_panel.rs +++ b/crates/egui_demo_app/src/backend_panel.rs @@ -211,7 +211,7 @@ fn integration_ui(ui: &mut egui::Ui, _frame: &mut eframe::Frame) { let wgpu_adapter_details_ui = |ui: &mut egui::Ui, adapter: &eframe::wgpu::Adapter| { let info = &adapter.get_info(); - let wgpu::AdapterInfo { + let eframe::wgpu::AdapterInfo { name, vendor, device, From f3250976112d669b11c6f43f2cd40a84ba1d893c Mon Sep 17 00:00:00 2001 From: Matt Keeter Date: Fri, 27 Mar 2026 06:18:52 -0400 Subject: [PATCH 2/4] Only apply cursor style to the (#8036) This improves cases where the canvas does not cover the full screen, which was a goal in [release 0.28.0](https://github.com/emilk/egui/releases/tag/0.28.0). * Closes * [X] I have followed the instructions in the PR template --- crates/eframe/src/web/app_runner.rs | 2 +- crates/eframe/src/web/mod.rs | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/crates/eframe/src/web/app_runner.rs b/crates/eframe/src/web/app_runner.rs index b90b8a5e1..7161a665e 100644 --- a/crates/eframe/src/web/app_runner.rs +++ b/crates/eframe/src/web/app_runner.rs @@ -393,7 +393,7 @@ impl AppRunner { } } - super::set_cursor_icon(cursor_icon); + super::set_cursor_icon(self.canvas(), cursor_icon); if self.has_focus() { // The eframe app has focus. diff --git a/crates/eframe/src/web/mod.rs b/crates/eframe/src/web/mod.rs index 87771f722..dc743ec49 100644 --- a/crates/eframe/src/web/mod.rs +++ b/crates/eframe/src/web/mod.rs @@ -178,10 +178,8 @@ fn canvas_size_in_points(canvas: &web_sys::HtmlCanvasElement, ctx: &egui::Contex // ---------------------------------------------------------------------------- /// Set the cursor icon. -fn set_cursor_icon(cursor: egui::CursorIcon) -> Option<()> { - let document = web_sys::window()?.document()?; - document - .body()? +fn set_cursor_icon(canvas: &web_sys::HtmlCanvasElement, cursor: egui::CursorIcon) -> Option<()> { + canvas .style() .set_property("cursor", cursor_web_name(cursor)) .ok() From a01193d032ae89e1ae80c56834993437b9467256 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Fri, 27 Mar 2026 11:24:51 +0100 Subject: [PATCH 3/4] Release 0.34.1: Enable WebGL fallback in eframe --- CHANGELOG.md | 4 +++ Cargo.lock | 32 ++++++++++++------------ Cargo.toml | 26 +++++++++---------- crates/ecolor/CHANGELOG.md | 4 +++ crates/eframe/CHANGELOG.md | 5 ++++ crates/egui-wgpu/CHANGELOG.md | 4 +++ crates/egui-winit/CHANGELOG.md | 4 +++ crates/egui_extras/CHANGELOG.md | 4 +++ crates/egui_glow/CHANGELOG.md | 4 +++ crates/egui_kittest/CHANGELOG.md | 4 +++ crates/emath/CHANGELOG.md | 4 +++ crates/epaint/CHANGELOG.md | 4 +++ crates/epaint_default_fonts/CHANGELOG.md | 4 +++ 13 files changed, 74 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b6c63ab4..e531dddc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +Nothing new + + ## 0.34.0 - 2026-03-26 ### Highlights from this release diff --git a/Cargo.lock b/Cargo.lock index d9da12ef5..ec0b421f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1193,7 +1193,7 @@ checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53" [[package]] name = "ecolor" -version = "0.34.0" +version = "0.34.1" dependencies = [ "bytemuck", "cint", @@ -1205,7 +1205,7 @@ dependencies = [ [[package]] name = "eframe" -version = "0.34.0" +version = "0.34.1" dependencies = [ "ahash", "bytemuck", @@ -1244,7 +1244,7 @@ dependencies = [ [[package]] name = "egui" -version = "0.34.0" +version = "0.34.1" dependencies = [ "accesskit", "ahash", @@ -1264,7 +1264,7 @@ dependencies = [ [[package]] name = "egui-wgpu" -version = "0.34.0" +version = "0.34.1" dependencies = [ "ahash", "bytemuck", @@ -1282,7 +1282,7 @@ dependencies = [ [[package]] name = "egui-winit" -version = "0.34.0" +version = "0.34.1" dependencies = [ "accesskit_winit", "arboard", @@ -1305,7 +1305,7 @@ dependencies = [ [[package]] name = "egui_demo_app" -version = "0.34.0" +version = "0.34.1" dependencies = [ "accesskit", "accesskit_consumer", @@ -1334,7 +1334,7 @@ dependencies = [ [[package]] name = "egui_demo_lib" -version = "0.34.0" +version = "0.34.1" dependencies = [ "criterion", "document-features", @@ -1351,7 +1351,7 @@ dependencies = [ [[package]] name = "egui_extras" -version = "0.34.0" +version = "0.34.1" dependencies = [ "ahash", "document-features", @@ -1370,7 +1370,7 @@ dependencies = [ [[package]] name = "egui_glow" -version = "0.34.0" +version = "0.34.1" dependencies = [ "bytemuck", "document-features", @@ -1389,7 +1389,7 @@ dependencies = [ [[package]] name = "egui_kittest" -version = "0.34.0" +version = "0.34.1" dependencies = [ "dify", "document-features", @@ -1409,7 +1409,7 @@ dependencies = [ [[package]] name = "egui_tests" -version = "0.34.0" +version = "0.34.1" dependencies = [ "egui", "egui_extras", @@ -1439,7 +1439,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "emath" -version = "0.34.0" +version = "0.34.1" dependencies = [ "bytemuck", "document-features", @@ -1537,7 +1537,7 @@ dependencies = [ [[package]] name = "epaint" -version = "0.34.0" +version = "0.34.1" dependencies = [ "ahash", "bytemuck", @@ -1563,7 +1563,7 @@ dependencies = [ [[package]] name = "epaint_default_fonts" -version = "0.34.0" +version = "0.34.1" [[package]] name = "equivalent" @@ -3431,7 +3431,7 @@ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3" [[package]] name = "popups" -version = "0.34.0" +version = "0.34.1" dependencies = [ "eframe", "env_logger", @@ -5819,7 +5819,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" [[package]] name = "xtask" -version = "0.34.0" +version = "0.34.1" [[package]] name = "yaml-rust" diff --git a/Cargo.toml b/Cargo.toml index 460a9b667..6c6cb0c03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ members = [ edition = "2024" license = "MIT OR Apache-2.0" rust-version = "1.92" -version = "0.34.0" +version = "0.34.1" [profile.release] @@ -55,18 +55,18 @@ opt-level = 2 [workspace.dependencies] -emath = { version = "0.34.0", path = "crates/emath", default-features = false } -ecolor = { version = "0.34.0", path = "crates/ecolor", default-features = false } -epaint = { version = "0.34.0", path = "crates/epaint", default-features = false } -epaint_default_fonts = { version = "0.34.0", path = "crates/epaint_default_fonts" } -egui = { version = "0.34.0", path = "crates/egui", default-features = false } -egui-winit = { version = "0.34.0", path = "crates/egui-winit", default-features = false } -egui_extras = { version = "0.34.0", path = "crates/egui_extras", default-features = false } -egui-wgpu = { version = "0.34.0", path = "crates/egui-wgpu", default-features = false } -egui_demo_lib = { version = "0.34.0", path = "crates/egui_demo_lib", default-features = false } -egui_glow = { version = "0.34.0", path = "crates/egui_glow", default-features = false } -egui_kittest = { version = "0.34.0", path = "crates/egui_kittest", default-features = false } -eframe = { version = "0.34.0", path = "crates/eframe", default-features = false } +emath = { version = "0.34.1", path = "crates/emath", default-features = false } +ecolor = { version = "0.34.1", path = "crates/ecolor", default-features = false } +epaint = { version = "0.34.1", path = "crates/epaint", default-features = false } +epaint_default_fonts = { version = "0.34.1", path = "crates/epaint_default_fonts" } +egui = { version = "0.34.1", path = "crates/egui", default-features = false } +egui-winit = { version = "0.34.1", path = "crates/egui-winit", default-features = false } +egui_extras = { version = "0.34.1", path = "crates/egui_extras", default-features = false } +egui-wgpu = { version = "0.34.1", path = "crates/egui-wgpu", default-features = false } +egui_demo_lib = { version = "0.34.1", path = "crates/egui_demo_lib", default-features = false } +egui_glow = { version = "0.34.1", path = "crates/egui_glow", default-features = false } +egui_kittest = { version = "0.34.1", path = "crates/egui_kittest", default-features = false } +eframe = { version = "0.34.1", path = "crates/eframe", default-features = false } accesskit = "0.24.0" accesskit_consumer = "0.35.0" diff --git a/crates/ecolor/CHANGELOG.md b/crates/ecolor/CHANGELOG.md index 161a32ae8..fe0333748 100644 --- a/crates/ecolor/CHANGELOG.md +++ b/crates/ecolor/CHANGELOG.md @@ -6,6 +6,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +Nothing new + + ## 0.34.0 - 2026-03-26 Nothing new diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md index ae8f41a02..d9ba794b1 100644 --- a/crates/eframe/CHANGELOG.md +++ b/crates/eframe/CHANGELOG.md @@ -7,6 +7,11 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +* `wgpu` backend: Enable WebGL fallback [#8038](https://github.com/emilk/egui/pull/8038) by [@emilk](https://github.com/emilk) +* Only apply cursor style to the `` [#8036](https://github.com/emilk/egui/pull/8036) by [@mkeeter](https://github.com/mkeeter) + + ## 0.34.0 - 2026-03-26 ### ⭐ Added * Add feature `wgpu_no_default_features` [#7700](https://github.com/emilk/egui/pull/7700) by [@emilk](https://github.com/emilk) diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md index 08c9d7187..4cc344bf2 100644 --- a/crates/egui-wgpu/CHANGELOG.md +++ b/crates/egui-wgpu/CHANGELOG.md @@ -6,6 +6,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +* `wgpu` backend: Enable WebGL fallback [#8038](https://github.com/emilk/egui/pull/8038) by [@emilk](https://github.com/emilk) + + ## 0.34.0 - 2026-03-26 ### ⭐ Added * Add error message when calling `.render()` without `.update_buffers()` [#8005](https://github.com/emilk/egui/pull/8005) by [@emilk](https://github.com/emilk) diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md index b4a9186b2..68fe5b2cd 100644 --- a/crates/egui-winit/CHANGELOG.md +++ b/crates/egui-winit/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +Nothing new + + ## 0.34.0 - 2026-03-26 * Add `is_scrolling`/`is_smooth_scrolling` util, checking for active scroll action [#7669](https://github.com/emilk/egui/pull/7669) by [@IsseW](https://github.com/IsseW) * Fix backspacing leaving last character in IME prediction not removed on macOS native and Safari [#7810](https://github.com/emilk/egui/pull/7810) by [@umajho](https://github.com/umajho) diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md index 4a480c366..9d2bfd2d7 100644 --- a/crates/egui_extras/CHANGELOG.md +++ b/crates/egui_extras/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +Nothing new + + ## 0.34.0 - 2026-03-26 * Fix media type with optional parameters [#7739](https://github.com/emilk/egui/pull/7739) by [@leungkkf](https://github.com/leungkkf) * Fix: CodeTheme functions - ui and add builder [#7684](https://github.com/emilk/egui/pull/7684) by [@Its-Just-Nans](https://github.com/Its-Just-Nans) diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md index d43a4be20..a33d24bec 100644 --- a/crates/egui_glow/CHANGELOG.md +++ b/crates/egui_glow/CHANGELOG.md @@ -6,6 +6,10 @@ Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +Nothing new + + ## 0.34.0 - 2026-03-26 * Turn `HarnessBuilder::with_options` into a proper builder method [#7697](https://github.com/emilk/egui/pull/7697) by [@emilk](https://github.com/emilk) * Paint mouse cursor in kittest snapshot images [#7721](https://github.com/emilk/egui/pull/7721) by [@emilk](https://github.com/emilk) diff --git a/crates/emath/CHANGELOG.md b/crates/emath/CHANGELOG.md index f82686d71..8c55b647f 100644 --- a/crates/emath/CHANGELOG.md +++ b/crates/emath/CHANGELOG.md @@ -6,6 +6,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +Nothing new + + ## 0.34.0 - 2026-03-26 Nothing new diff --git a/crates/epaint/CHANGELOG.md b/crates/epaint/CHANGELOG.md index fdbc3704c..0d577b120 100644 --- a/crates/epaint/CHANGELOG.md +++ b/crates/epaint/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +Nothing new + + ## 0.34.0 - 2026-03-26 ### ⭐ Added * Replace ab_glyph with Skrifa + vello_cpu; enable font hinting [#7694](https://github.com/emilk/egui/pull/7694) by [@valadaptive](https://github.com/valadaptive) diff --git a/crates/epaint_default_fonts/CHANGELOG.md b/crates/epaint_default_fonts/CHANGELOG.md index 925f6f89c..daf46d4de 100644 --- a/crates/epaint_default_fonts/CHANGELOG.md +++ b/crates/epaint_default_fonts/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-03-27 +Nothing new + + ## 0.34.0 - 2026-03-26 * Fix emoji icon font [#7940](https://github.com/emilk/egui/pull/7940) by [@Jhynjhiruu](https://github.com/Jhynjhiruu) From eb35f7d12f2a941707eee3406aab28e1df0262c9 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Sun, 29 Mar 2026 10:00:36 +0200 Subject: [PATCH 4/4] Improve test of text rendering --- crates/egui_demo_lib/tests/misc.rs | 5 +++-- .../tests/snapshots/image_kerning/image_dark_x1.png | 4 ++-- .../tests/snapshots/image_kerning/image_dark_x2.png | 4 ++-- .../tests/snapshots/image_kerning/image_light_x1.png | 4 ++-- .../tests/snapshots/image_kerning/image_light_x2.png | 4 ++-- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/crates/egui_demo_lib/tests/misc.rs b/crates/egui_demo_lib/tests/misc.rs index d5f6a3a3c..6d66abfb1 100644 --- a/crates/egui_demo_lib/tests/misc.rs +++ b/crates/egui_demo_lib/tests/misc.rs @@ -13,8 +13,9 @@ fn test_kerning() { ui.label("Hello world!"); ui.label("Repeated characters: iiiiiiiiiiiii lllllllll mmmmmmmmmmmmmmmm"); ui.label("Thin spaces: −123 456 789"); - ui.label("Ligature: fi :)"); - ui.label("\ttabbed"); + ui.label("Ligature: fi fl ffi ffl"); + ui.label("Kerning: AVATAR"); + ui.label("\ttabbed\ttext"); }); harness.run(); harness.fit_contents(); diff --git a/crates/egui_demo_lib/tests/snapshots/image_kerning/image_dark_x1.png b/crates/egui_demo_lib/tests/snapshots/image_kerning/image_dark_x1.png index 5cc884a55..e48dfae92 100644 --- a/crates/egui_demo_lib/tests/snapshots/image_kerning/image_dark_x1.png +++ b/crates/egui_demo_lib/tests/snapshots/image_kerning/image_dark_x1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8ea98c65376d9f6ac66d0a9471c4bf3add0904294e7ca1a105458b90654a2e2 -size 12476 +oid sha256:9c2990a81dfa8832f0cb1c4c0ce2f86e468a7a6f693e09efffa131ed3259e2e8 +size 15428 diff --git a/crates/egui_demo_lib/tests/snapshots/image_kerning/image_dark_x2.png b/crates/egui_demo_lib/tests/snapshots/image_kerning/image_dark_x2.png index 1359fd607..3f9da5333 100644 --- a/crates/egui_demo_lib/tests/snapshots/image_kerning/image_dark_x2.png +++ b/crates/egui_demo_lib/tests/snapshots/image_kerning/image_dark_x2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:968c478d986fc71d8655492b19e833ca07bc0ab85899dc04022bc7cf1dcf782f -size 29319 +oid sha256:07d987ff87c9f41ec71ceea0caff25795bf4dff525ef4ef241d0ba786acee3e1 +size 35960 diff --git a/crates/egui_demo_lib/tests/snapshots/image_kerning/image_light_x1.png b/crates/egui_demo_lib/tests/snapshots/image_kerning/image_light_x1.png index b223bbb3d..84b808a83 100644 --- a/crates/egui_demo_lib/tests/snapshots/image_kerning/image_light_x1.png +++ b/crates/egui_demo_lib/tests/snapshots/image_kerning/image_light_x1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3793a5e83ef9bdffef99bcd8905a094acb69cde356e3a7125a544045296c3926 -size 13070 +oid sha256:f5c5ce0d46231d90ccb04e158947d793d99cd5cce911c72b960b6d04feba2134 +size 16122 diff --git a/crates/egui_demo_lib/tests/snapshots/image_kerning/image_light_x2.png b/crates/egui_demo_lib/tests/snapshots/image_kerning/image_light_x2.png index 80e561325..ff848168a 100644 --- a/crates/egui_demo_lib/tests/snapshots/image_kerning/image_light_x2.png +++ b/crates/egui_demo_lib/tests/snapshots/image_kerning/image_light_x2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61e59f8360c567e20bf03b401362de7bb0f87716f13e817cc8da3df742ab68bf -size 31869 +oid sha256:60dcd590b1d00361278b135ce9ef084c7382875c71c72b19fb6e23dba68f7902 +size 39279