From: kub Date: Tue, 23 Nov 2021 20:49:34 +0000 (+0100) Subject: platform, improve 32x handling for h32 (all supported platforms) X-Git-Tag: v2.00~405 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bbe9abf75afcd31f6c07e269154829666498eae;p=picodrive.git platform, improve 32x handling for h32 (all supported platforms) --- diff --git a/pico/32x/draw.c b/pico/32x/draw.c index adc51659..a027ad13 100644 --- a/pico/32x/draw.c +++ b/pico/32x/draw.c @@ -350,6 +350,7 @@ void PicoDrawSetOutFormat32x(pdso_t which, int use_32x_line_mode) } // always need upscaling for H32, before mixing in 32X layer PicoIn.opt |= POPT_EN_SOFTSCALE; + PicoIn.opt &= ~POPT_DIS_32C_BORDER; if (use_32x_line_mode) // we'll draw via FinalizeLine32xRGB555 (rare) diff --git a/platform/gp2x/emu.c b/platform/gp2x/emu.c index d01da070..37ee82cf 100644 --- a/platform/gp2x/emu.c +++ b/platform/gp2x/emu.c @@ -501,9 +501,13 @@ static void vid_reset_mode(void) int gp2x_mode = 16; int renderer = get_renderer(); - PicoIn.opt &= ~POPT_ALT_RENDERER; - emu_scan_begin = NULL; - emu_scan_end = NULL; + PicoIn.opt &= ~(POPT_ALT_RENDERER|POPT_DIS_32C_BORDER|POPT_EN_SOFTSCALE); + if (currentConfig.scaling == EOPT_SCALE_SW) { + PicoIn.opt |= POPT_EN_SOFTSCALE; + PicoIn.filter = EOPT_FILTER_BILINEAR2; + } else if (currentConfig.scaling == EOPT_SCALE_HW) + // hw scaling, render without any padding + PicoIn.opt |= POPT_DIS_32C_BORDER; switch (renderer) { case RT_16BIT: @@ -535,6 +539,9 @@ static void vid_reset_mode(void) gp2x_mode = 16; } + emu_scan_begin = NULL; + emu_scan_end = NULL; + if (currentConfig.EmuOpt & EOPT_WIZ_TEAR_FIX) { if ((PicoIn.AHW & PAHW_32X) || renderer == RT_16BIT) { emu_scan_begin = EmuScanBegin16_rot; @@ -572,14 +579,6 @@ static void vid_reset_mode(void) Pico.m.dirtyPal = 1; - PicoIn.opt &= ~(POPT_DIS_32C_BORDER|POPT_EN_SOFTSCALE); - if (currentConfig.scaling == EOPT_SCALE_SW) { - PicoIn.opt |= POPT_EN_SOFTSCALE; - PicoIn.filter = EOPT_FILTER_BILINEAR2; - } else if (currentConfig.scaling == EOPT_SCALE_HW) - // hw scaling, render without any padding - PicoIn.opt |= POPT_DIS_32C_BORDER; - // palette converters for 8bit modes make_local_pal = (PicoIn.AHW & PAHW_SMS) ? make_local_pal_sms : make_local_pal_md; } diff --git a/platform/libretro/libretro.c b/platform/libretro/libretro.c index 1e15a2ab..0af186b0 100644 --- a/platform/libretro/libretro.c +++ b/platform/libretro/libretro.c @@ -43,6 +43,7 @@ #else #include #endif +#include #ifdef _3DS #include "3ds/3ds_utils.h" @@ -619,6 +620,17 @@ int plat_mem_set_exec(void *ptr, size_t size) return ret; } +static void apply_renderer() +{ + PicoIn.opt &= ~(POPT_ALT_RENDERER|POPT_EN_SOFTSCALE); + PicoIn.opt |= POPT_DIS_32C_BORDER; + if (vout_format == PDF_NONE) + PicoIn.opt |= POPT_ALT_RENDERER; + PicoDrawSetOutFormat(vout_format, 0); + if (!vout_16bit && vout_format == PDF_8BIT) + PicoDrawSetOutBuf(Pico.est.Draw2FB, 328); +} + void emu_video_mode_change(int start_line, int line_count, int start_col, int col_count) { struct retro_system_av_info av_info; @@ -629,8 +641,6 @@ void emu_video_mode_change(int start_line, int line_count, int start_col, int co vm_current_col_count = col_count; // 8bit renderes create a 328x256 CLUT image, while 16bit creates 320x240 RGB - vout_16bit = vout_format == PDF_RGB555 || (PicoIn.AHW & PAHW_32X); - #if defined(RENDER_GSKIT_PS2) // calculate the borders of the real image inside the picodrive image vout_width = (vout_16bit ? VOUT_MAX_WIDTH : VOUT_8BIT_WIDTH); @@ -680,7 +690,10 @@ void emu_video_mode_change(int start_line, int line_count, int start_col, int co void emu_32x_startup(void) { + PicoIn.filter = EOPT_FILTER_SMOOTHER; // for H32 upscaling PicoDrawSetOutFormat(vout_format, 0); + vout_16bit = 1; + if ((vm_current_start_line != -1) && (vm_current_line_count != -1) && (vm_current_start_col != -1) && @@ -1302,9 +1315,7 @@ bool retro_load_game(const struct retro_game_info *info) PicoIn.sndOut = sndBuffer; PsndRerate(0); - PicoDrawSetOutFormat(vout_format, 0); - if (vout_format == PDF_8BIT) - PicoDrawSetOutBuf(Pico.est.Draw2FB, 328); + apply_renderer(); /* Setup retro memory maps */ set_memory_maps(); @@ -1651,13 +1662,9 @@ static void update_variables(bool first_run) vout_format = PDF_8BIT; else if (strcmp(var.value, "accurate") == 0) vout_format = PDF_RGB555; + vout_16bit = vout_format == PDF_RGB555 || (PicoIn.AHW & PAHW_32X); - PicoIn.opt &= ~POPT_ALT_RENDERER; - if (vout_format == PDF_NONE) - PicoIn.opt |= POPT_ALT_RENDERER; - PicoDrawSetOutFormat(vout_format, 0); - if (vout_format == PDF_8BIT) - PicoDrawSetOutBuf(Pico.est.Draw2FB, 328); + apply_renderer(); } var.value = NULL; diff --git a/platform/linux/emu.c b/platform/linux/emu.c index a6c4cb79..8dd8c54c 100644 --- a/platform/linux/emu.c +++ b/platform/linux/emu.c @@ -202,6 +202,15 @@ void plat_video_set_buffer(void *buf) static void apply_renderer(void) { PicoIn.opt &= ~(POPT_ALT_RENDERER|POPT_EN_SOFTSCALE|POPT_DIS_32C_BORDER); + if (is_16bit_mode()) { + if (currentConfig.scaling == EOPT_SCALE_SW) { + PicoIn.opt |= POPT_EN_SOFTSCALE; + PicoIn.filter = currentConfig.filter; + } else if (currentConfig.scaling == EOPT_SCALE_HW) + // hw scaling, render without any padding + PicoIn.opt |= POPT_DIS_32C_BORDER; + } else + PicoIn.opt |= POPT_DIS_32C_BORDER; switch (get_renderer()) { case RT_16BIT: @@ -226,16 +235,6 @@ static void apply_renderer(void) if (PicoIn.AHW & PAHW_32X) PicoDrawSetOutBuf(screen_buffer(g_screen_ptr), g_screen_ppitch * 2); - if (is_16bit_mode()) { - if (currentConfig.scaling == EOPT_SCALE_SW) { - PicoIn.opt |= POPT_EN_SOFTSCALE; - PicoIn.filter = currentConfig.filter; - } else if (currentConfig.scaling == EOPT_SCALE_HW) - // hw scaling, render without any padding - PicoIn.opt |= POPT_DIS_32C_BORDER; - } else - PicoIn.opt |= POPT_DIS_32C_BORDER; - Pico.m.dirtyPal = 1; } @@ -389,7 +388,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; + screen_y = (screen_h - 240)/2 + (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;