added underdeveloped but working image support (no freeing or samplers)

This commit is contained in:
iris committed 2025-08-22 23:07:31 -04:00
1 parent bde929b05a
commit 7dbdcbba42
26 files changed
+1256 -155

No files matched your search

+1 -1
View File
@@ -7,7 +7,7 @@ pub struct Stack {
impl<Ctx> Widget<Ctx> for Stack {
fn draw(&self, painter: &mut crate::Painter<Ctx>) {
for child in &self.children {
painter.draw_within(child, painter.region);
painter.draw(child);
}
}
}