remove context generic

This commit is contained in:
2025-08-25 18:53:21 -04:00
parent d4b1a56467
commit e8b255c8f9
17 changed files with 167 additions and 217 deletions

View File

@@ -21,7 +21,7 @@ pub struct Renderer {
}
impl Renderer {
pub fn update<Ctx>(&mut self, updates: &mut Ui<Ctx>) {
pub fn update(&mut self, updates: &mut Ui) {
self.ui.update(&self.device, &self.queue, updates);
}