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)
void GPUupdateLace(void)
{
+ int updated = 0;
+
if (gpu.cmd_len > 0)
flush_cmd_buffer(&gpu);
renderer_flush_queues();
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);
}
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
}
}
-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;
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;
}
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)