1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 21:30:03 -04:00

Rename Srgba to Color32

This commit is contained in:
Emil Ernerfeldt
2021-01-02 17:02:18 +01:00
parent 4fc12bf324
commit 73f3d8cf46
31 changed files with 198 additions and 193 deletions

View File

@@ -1,6 +1,6 @@
use crate::*;
pub use egui::{pos2, Srgba};
pub use egui::{pos2, Color32};
use http::WebHttp;
// ----------------------------------------------------------------------------
@@ -75,7 +75,7 @@ impl epi::TextureAllocator for webgl::Painter {
&mut self,
id: egui::TextureId,
size: (usize, usize),
srgba_pixels: &[Srgba],
srgba_pixels: &[Color32],
) {
self.set_user_texture(id, size, srgba_pixels);
}