gpu_neon: support caching renderers, update rearmed if
[pcsx_rearmed.git] / plugins / gpu_neon / vout_sdl.c
index f2f87e9..3152c32 100644 (file)
@@ -79,8 +79,11 @@ static void blit(void)
 
 void GPUupdateLace(void)
 {
-  if (!gpu.status.blanking)
+  if (!gpu.status.blanking && gpu.state.fb_dirty) {
+    renderer_flush_queues();
     blit();
+    gpu.state.fb_dirty = 0;
+  }
 }
 
 long GPUopen(void **dpy)