notedeck
notedeck copied to clipboard
weird text display ubuntu
On Ubuntu 22.04.5 LTS aarch64 (a VM on my M1 Mac) on master a17b2dcb174cae4956f13736e90334e08e895a4e
text is normal on 7e02c7f745d6c5f3b16b6e09bf7bca50de99f0d6, so it was introduced an unknown time after
will git bisect and find the commit where the bug was introduced
git bisect revealed that it was first introduced in 239a2cb701d1f3692d1e10769de7c86bf40a5f56
diff --git a/Cargo.toml b/Cargo.toml
index 75404f1..767b0cb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,7 +14,7 @@ crate-type = ["lib", "cdylib"]
[dependencies]
#egui-android = { git = "https://github.com/jb55/egui-android.git" }
egui = { git = "https://github.com/emilk/egui", rev = "fcb7764e48ce00f8f8e58da10f937410d65b0bfb" }
-eframe = { git = "https://github.com/emilk/egui", rev = "fcb7764e48ce00f8f8e58da10f937410d65b0bfb", package = "eframe", default-features = false, features = [ "wgpu", "wayland", "x11", "android-native-activity" ] }
+eframe = { git = "https://github.com/emilk/egui", rev = "fcb7764e48ce00f8f8e58da10f937410d65b0bfb", package = "eframe", default-features = false, features = [ "glow", "wayland", "x11", "android-native-activity" ] }
egui_extras = { git = "https://github.com/emilk/egui", rev = "fcb7764e48ce00f8f8e58da10f937410d65b0bfb", package = "egui_extras", features = ["all_loaders"] }
ehttp = "0.2.0"
egui_tabs = { git = "https://github.com/damus-io/egui-tabs", branch = "egui-0.28" }
changing from wgpu to glow completely fixed my text rendering issue @jb55
encountered in the wild: https://njump.me/nevent1qqsqqyq6tmx3j9ecp33ffjycvgkzrkg4msmyw24q7w7ay4kw4na2q2cpz9mhxue69uhkummnw3ezuamfdejj7q3q94dkgpxl2vk7pqkeualh7sjh5m6rldumh80gm5av0h67d494qzcqxpqqqqqqz9j0qwz
https://njump.me/nevent1qqsqqvmfr6rd4w65hcxjev9mvjy7mff26m8vyhq9qedskf3y8lecldqpz9mhxue69uhkummnw3ezuamfdejj7q3q94dkgpxl2vk7pqkeualh7sjh5m6rldumh80gm5av0h67d494qzcqxpqqqqqqz33q6wh
does this problem persist?