X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Fplat_omap.c;h=f25f31cc21f7a9ddd735f390294b3db71b404f18;hb=refs%2Fheads%2Fmaster;hp=e5b6c04ed48b066f51112673aa50d7cb5ed245a6;hpb=2857d72e4ca743bba3cf55e298949e24d97dff02;p=pcsx_rearmed.git diff --git a/frontend/plat_omap.c b/frontend/plat_omap.c index e5b6c04e..699e1973 100644 --- a/frontend/plat_omap.c +++ b/frontend/plat_omap.c @@ -14,10 +14,10 @@ #include #include -#include "common/menu.h" -#include "common/input.h" -#include "linux/fbdev.h" -#include "linux/xenv.h" +#include "libpicofe/menu.h" +#include "libpicofe/input.h" +#include "libpicofe/linux/fbdev.h" +#include "libpicofe/linux/xenv.h" #include "plugin_lib.h" #include "pl_gun_ts.h" #include "plat.h" @@ -79,11 +79,21 @@ static int omap_setup_layer_(int fd, int enabled, int x, int y, int w, int h) static int omap_enable_layer(int enabled) { + int x = g_layer_x, y = g_layer_y; + int w = g_layer_w, h = g_layer_h; + + // it's not allowed for the layer to be partially offscreen, + // instead it is faked by plat_gvideo_set_mode() + if (x < 0) { w += x; x = 0; } + if (y < 0) { h += y; y = 0; } + if (x + w > 800) w = 800 - x; + if (y + h > 480) h = 480 - y; + if (enabled) - pl_set_gun_rect(g_layer_x, g_layer_y, g_layer_w, g_layer_h); + pl_set_gun_rect(x, y, w, h); - return omap_setup_layer_(vout_fbdev_get_fd(layer_fb), enabled, - g_layer_x, g_layer_y, g_layer_w, g_layer_h); + return omap_setup_layer_(vout_fbdev_get_fd(layer_fb), + enabled, x, y, w, h); } void plat_omap_gvideo_open(void) @@ -94,21 +104,37 @@ void plat_omap_gvideo_open(void) vout_fbdev_wait_vsync(layer_fb); } -void *plat_gvideo_set_mode(int *w, int *h, int *bpp) +void *plat_gvideo_set_mode(int *w_in, int *h_in, int *bpp) { int l = 0, r = 0, t = 0, b = 0; + int w = *w_in, h = *h_in; void *buf; - if (g_scaler == SCALE_1_1) { - if (*w > g_menuscreen_w) - l = r = (*w - g_menuscreen_w) / 2; - if (*h > g_menuscreen_h) - t = b = (*h - g_menuscreen_h) / 2; + if (g_scaler == SCALE_1_1 || g_scaler == SCALE_2_2) { + if (w > g_menuscreen_w) + l = r = (w - g_menuscreen_w) / 2; + if (h > g_menuscreen_h) + t = b = (h - g_menuscreen_h) / 2; } + else if (g_scaler == SCALE_CUSTOM) { + int right = g_layer_x + g_layer_w; + int bottom = g_layer_y + g_layer_h; + if (g_layer_x < 0) + l = -g_layer_x * w / g_menuscreen_w; + if (g_layer_y < 0) + t = -g_layer_y * h / g_menuscreen_h; + if (right > g_menuscreen_w) + r = (right - g_menuscreen_w) * w / g_menuscreen_w; + if (bottom > g_menuscreen_h) + b = (bottom - g_menuscreen_h) * h / g_menuscreen_h; + } + w -= l + r; + h -= t + b; + + buf = vout_fbdev_resize(layer_fb, w, h, *bpp, + l, r, t, b, 3, 1); vout_fbdev_clear(layer_fb); - buf = vout_fbdev_resize(layer_fb, *w, *h, *bpp, - l, r, t, b, 3); omap_enable_layer(1); @@ -128,9 +154,10 @@ void plat_gvideo_close(void) void plat_video_menu_enter(int is_rom_loaded) { g_menuscreen_ptr = vout_fbdev_resize(main_fb, - g_menuscreen_w, g_menuscreen_h, 16, 0, 0, 0, 0, 3); + g_menuscreen_w, g_menuscreen_h, 16, 0, 0, 0, 0, 3, 0); if (g_menuscreen_ptr == NULL) fprintf(stderr, "warning: vout_fbdev_resize failed\n"); + vout_fbdev_clear(main_fb); xenv_update(NULL, NULL, NULL, NULL); } @@ -148,11 +175,11 @@ void plat_video_menu_leave(void) { /* have to get rid of panning so that plugins that * use fb0 and don't ever pan can work. */ - vout_fbdev_clear(main_fb); g_menuscreen_ptr = vout_fbdev_resize(main_fb, - g_menuscreen_w, g_menuscreen_h, 16, 0, 0, 0, 0, 1); + g_menuscreen_w, g_menuscreen_h, 16, 0, 0, 0, 0, 1, 0); if (g_menuscreen_ptr == NULL) fprintf(stderr, "warning: vout_fbdev_resize failed\n"); + vout_fbdev_clear(main_fb); } void plat_minimize(void) @@ -217,7 +244,7 @@ void plat_omap_init(void) exit(1); } - g_menuscreen_w = w; + g_menuscreen_w = g_menuscreen_pp = w; g_menuscreen_h = h; g_menuscreen_ptr = vout_fbdev_flip(main_fb); pl_rearmed_cbs.screen_w = w;