From: kub Date: Fri, 26 Nov 2021 20:32:29 +0000 (+0100) Subject: linux+psp, improve sw upscaling X-Git-Tag: v2.00~402 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44e4bf2b0f241175d5bf50cc7b93ad04a058aebe;p=picodrive.git linux+psp, improve sw upscaling --- diff --git a/platform/linux/emu.c b/platform/linux/emu.c index 8dd8c54c..053a2063 100644 --- a/platform/linux/emu.c +++ b/platform/linux/emu.c @@ -175,14 +175,18 @@ void pemu_finalize_frame(const char *fps, const char *notice) u16 *ps = ghost_buf; int y, h = currentConfig.vscaling == EOPT_SCALE_SW ? 240:out_h; int w = currentConfig.scaling == EOPT_SCALE_SW ? 320:out_w; - for (y = 0; y < h; y++) { - if (currentConfig.ghosting == 1) + if (currentConfig.ghosting == 1) + for (y = 0; y < h; y++) { v_blend((u32 *)pd, (u32 *)ps, w/2, p_075_round); - else + pd += g_screen_ppitch; + ps += w; + } + else + for (y = 0; y < h; y++) { v_blend((u32 *)pd, (u32 *)ps, w/2, p_05_round); - pd += g_screen_ppitch; - ps += w; - } + pd += g_screen_ppitch; + ps += w; + } } if (notice) @@ -388,7 +392,7 @@ void emu_video_mode_change(int start_line, int line_count, int start_col, int co PicoDrawSetCallbacks(cb_vscaling_begin,cb_vscaling_nop); break; case EOPT_SCALE_SW: - screen_y = (screen_h - 240)/2 + (out_h > 144); + screen_y = (screen_h - 240)/2 + (out_h < 240 && out_h > 144); // NTSC always has 224 visible lines, anything smaller has bars if (out_h < 224 && out_h > 144) screen_y += (224 - out_h)/2; diff --git a/platform/psp/emu.c b/platform/psp/emu.c index 4b98db0b..b6d1a346 100644 --- a/platform/psp/emu.c +++ b/platform/psp/emu.c @@ -104,7 +104,7 @@ static void change_renderer(int diff) static void apply_renderer(void) { - PicoIn.opt &= ~POPT_ALT_RENDERER; + PicoIn.opt &= ~(POPT_ALT_RENDERER|POPT_EN_SOFTSCALE); switch (get_renderer()) { case RT_16BIT: