X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=plugins%2Fgpulib%2Fvout_pl.c;h=075e3c339bb64feb6e9c63395ef61df63a72bc88;hb=43047988e507799d7d5bbcd926c5d0b5b94fcdc1;hp=a49371aaf53807b579da18e2c3c6e4a6f3785d26;hpb=e4c83ca67cf7ad13db3995909605ce01ff915824;p=pcsx_rearmed.git diff --git a/plugins/gpulib/vout_pl.c b/plugins/gpulib/vout_pl.c index a49371aa..075e3c33 100644 --- a/plugins/gpulib/vout_pl.c +++ b/plugins/gpulib/vout_pl.c @@ -11,7 +11,6 @@ #include #include "gpu.h" -#include "cspace.h" #include "../../frontend/plugin_lib.h" static const struct rearmed_cbs *cbs; @@ -44,14 +43,22 @@ static void check_mode_change(int force) h_out *= 2; } + gpu.state.downscale_active = + gpu.get_downscale_buffer != NULL && gpu.state.downscale_enable + && (w >= 512 || h >= 256); + + if (gpu.state.downscale_active) { + w_out = w < 512 ? w : 320; + h_out = h < 256 ? h : h / 2; + } + // width|rgb24 change? if (force || (gpu.status.reg ^ old_status) & ((7<<16)|(1<<21)) || h != old_h) { old_status = gpu.status.reg; old_h = h; - cbs->pl_vout_set_mode(w_out, h_out, w, h, - (gpu.status.rgb24 && !cbs->only_16bpp) ? 24 : 16); + cbs->pl_vout_set_mode(w_out, h_out, w, h, gpu.status.rgb24 ? 24 : 16); } } @@ -71,6 +78,9 @@ void vout_update(void) if (gpu.state.enhancement_active) vram = gpu.get_enhancement_bufer(&x, &y, &w, &h, &vram_h); + if (gpu.state.downscale_active) + vram = gpu.get_downscale_buffer(&x, &y, &w, &h, &vram_h); + if (y + h > vram_h) { if (y + h - vram_h > h / 2) { // wrap @@ -91,6 +101,8 @@ void vout_blank(void) { int w = gpu.screen.hres; int h = gpu.screen.h; + + check_mode_change(0); if (gpu.state.enhancement_active) { w *= 2; h *= 2; @@ -105,6 +117,7 @@ long GPUopen(void **unused) cbs->pl_vout_open(); check_mode_change(1); + vout_update(); return 0; }