You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Egui has various functionality that deals with textures, like Ui::image.
However, egui-macroquad doesn't seem to expose any functionality to upload or share textures between macroquad and egui. macroquad::texture::Texture2D cannot be used as an egui::TextureId, nor does it implement Into<egui::ImageData>. The same seems true for macroquad::texture::Image.
Is it possible to share/upload texture data to egui with egui-macroquad, and if so, how?
The text was updated successfully, but these errors were encountered:
Egui has various functionality that deals with textures, like Ui::image.
However, egui-macroquad doesn't seem to expose any functionality to upload or share textures between macroquad and egui.
macroquad::texture::Texture2D
cannot be used as anegui::TextureId
, nor does it implementInto<egui::ImageData>
. The same seems true formacroquad::texture::Image
.Is it possible to share/upload texture data to egui with egui-macroquad, and if so, how?
The text was updated successfully, but these errors were encountered: