gpulib: keep dirty flag if not displayed
authornotaz <notasas@gmail.com>
Sat, 1 Feb 2025 00:34:02 +0000 (02:34 +0200)
committernotaz <notasas@gmail.com>
Sat, 1 Feb 2025 20:26:44 +0000 (22:26 +0200)
plugins/gpu-gles/gpulib_if.c
plugins/gpulib/gpu.c
plugins/gpulib/gpu.h
plugins/gpulib/vout_pl.c
plugins/gpulib/vout_sdl.c

index ab95c64..7207a09 100644 (file)
@@ -655,19 +655,22 @@ int vout_finish(void)
   return 0;
 }
 
-void vout_update(void)
+int vout_update(void)
 {
  if(PSXDisplay.Interlaced)                            // interlaced mode?
  {
   if(PSXDisplay.DisplayMode.x>0 && PSXDisplay.DisplayMode.y>0)
    {
     updateDisplay();                                  // -> swap buffers (new frame)
+    return 1;
    }
  }
  else if(bRenderFrontBuffer)                          // no interlace mode? and some stuff in front has changed?
  {
   updateFrontDisplay();                               // -> update front buffer
+  return 1;
  }
+ return 0;
 }
 
 void vout_blank(void)
index 86cf584..4307e4d 100644 (file)
@@ -945,6 +945,8 @@ long GPUfreeze(uint32_t type, struct GPUFreeze *freeze)
 
 void GPUupdateLace(void)
 {
+  int updated = 0;
+
   if (gpu.cmd_len > 0)
     flush_cmd_buffer(&gpu);
   renderer_flush_queues();
@@ -974,12 +976,14 @@ void GPUupdateLace(void)
     gpu.frameskip.frame_ready = 0;
   }
 
-  vout_update();
+  updated = vout_update();
   if (gpu.state.enhancement_active && !gpu.state.enhancement_was_active)
     renderer_update_caches(0, 0, 1024, 512, 1);
   gpu.state.enhancement_was_active = gpu.state.enhancement_active;
-  gpu.state.fb_dirty = 0;
-  gpu.state.blanked = 0;
+  if (updated) {
+    gpu.state.fb_dirty = 0;
+    gpu.state.blanked = 0;
+  }
   renderer_notify_update_lace(1);
 }
 
index 893a751..eb55922 100644 (file)
@@ -143,7 +143,7 @@ void renderer_notify_scanout_change(int x, int y);
 
 int  vout_init(void);
 int  vout_finish(void);
-void vout_update(void);
+int  vout_update(void);
 void vout_blank(void);
 void vout_set_config(const struct rearmed_cbs *config);
 
index 5c727bb..f200482 100644 (file)
@@ -35,7 +35,8 @@ static void check_mode_change(int force)
     h = gpu.screen.h;
   w_out = w, h_out = h;
 #ifdef RAW_FB_DISPLAY
-  w = w_out = 1024, h = h_out = 512;
+  w = w_out = (gpu.status & PSX_GPU_STATUS_RGB24) ? 2048/3 : 1024;
+  h = h_out = 512;
 #endif
   gpu.state.enhancement_active =
     gpu.get_enhancement_bufer != NULL && gpu.state.enhancement_enable
@@ -73,7 +74,7 @@ static void check_mode_change(int force)
   }
 }
 
-void vout_update(void)
+int vout_update(void)
 {
   int bpp = (gpu.status & PSX_GPU_STATUS_RGB24) ? 24 : 16;
   uint8_t *vram = (uint8_t *)gpu.vram;
@@ -87,21 +88,22 @@ void vout_update(void)
   int src_x2 = 0;
 
 #ifdef RAW_FB_DISPLAY
-  w = 1024, h = 512, x = src_x = y = src_y = 0;
+  w = (gpu.status & PSX_GPU_STATUS_RGB24) ? 2048/3 : 1024;
+  h = 512, x = src_x = y = src_y = 0;
 #endif
   if (x < 0) { w += x; src_x2 = -x; x = 0; }
   if (y < 0) { h += y; src_y -=  y; y = 0; }
 
   if (w <= 0 || h <= 0)
-    return;
+    return 0;
 
   check_mode_change(0);
   if (gpu.state.enhancement_active) {
     if (!gpu.state.enhancement_was_active)
-      return; // buffer not ready yet
+      return 0; // buffer not ready yet
     vram = gpu.get_enhancement_bufer(&src_x, &src_y, &w, &h, &vram_h);
     if (vram == NULL)
-      return;
+      return 0;
     x *= 2; y *= 2;
     src_x2 *= 2;
   }
@@ -126,6 +128,7 @@ void vout_update(void)
   cbs->pl_vout_flip(vram, 1024, !!(gpu.status & PSX_GPU_STATUS_RGB24),
       x, y, w, h, gpu.state.dims_changed);
   gpu.state.dims_changed = 0;
+  return 1;
 }
 
 void vout_blank(void)
index 81272b2..587a5b7 100644 (file)
@@ -48,7 +48,7 @@ int vout_finish(void)
   return 0;
 }
 
-void vout_update(void)
+int vout_update(void)
 {
   uint32_t *d;
   int i;
@@ -75,6 +75,7 @@ void vout_update(void)
   }
   SDL_UnlockSurface(screen);
   SDL_UpdateRect(screen, 0, 0, 1024, 512);
+  return 1;
 }
 
 void vout_blank(void)