Преглед изворни кода

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

darkfi пре 7 месеци
родитељ
комит
7cd4aedce9
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      bin/app/src/gfx/mod.rs

+ 1 - 0
bin/app/src/gfx/mod.rs

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