app/gfx: add missing ctx.end_render_pass() call at the end of the gfx draw() method.

This commit is contained in:
darkfi
2025-12-22 15:04:55 -03:00
parent 5d9bfe7507
commit 7cd4aedce9

View File

@@ -1711,6 +1711,7 @@ impl EventHandler for Stage {
};
render_ctx.draw();
self.ctx.end_render_pass();
self.ctx.commit_frame();
}