egui_skia
egui_skia copied to clipboard
Render egui with skia!
This bumps egui to 0.24 which had incompatibilities with the previous version. egui-sdl2-event is still on on 0.23 or older so the tests or examples don't currently run
While tracking down rendering errors, I found that color rendering is broken with cpu rendering (`cpu_fix`). Here's a code snippet to render ColorTest. ```rs use egui_skia::rasterize; use skia_safe::{EncodedImageFormat, Paint, Point};...
I'm comparing the winit+metal example of egui_skia with the egui_demo_app wgpu. It seems like the text in egui_skia is slightly off and harder to read. Also, the highlight around the...
There are some changes in egui 0.24, primarily related to how points to pixels is handled, that breaks egui_skia. Probably it would be good to somehow pin the egui version...