mirror of
https://github.com/emilk/egui.git
synced 2026-09-01 06:10:06 -04:00
Partial font texture update (#1149)
This commit is contained in:
@@ -155,8 +155,8 @@ impl EguiGlium {
|
||||
let shapes = std::mem::take(&mut self.shapes);
|
||||
let mut textures_delta = std::mem::take(&mut self.textures_delta);
|
||||
|
||||
for (id, image) in textures_delta.set {
|
||||
self.painter.set_texture(display, id, &image);
|
||||
for (id, image_delta) in textures_delta.set {
|
||||
self.painter.set_texture(display, id, &image_delta);
|
||||
}
|
||||
|
||||
let clipped_meshes = self.egui_ctx.tessellate(shapes);
|
||||
|
||||
Reference in New Issue
Block a user