Move image render functions into pages (#291)

Move image page renderes into seperate files
This commit is contained in:
Philip Kristoffersen
2022-12-29 09:36:36 +01:00
committed by GitHub
parent 78cfd96f37
commit 7a5c88c61e
20 changed files with 1207 additions and 1089 deletions
+7
View File
@@ -0,0 +1,7 @@
#[derive(Clone)]
pub enum TextureDownloadState {
Downloading,
Downloaded,
Loaded(egui::TextureHandle),
Failed,
}