aboutsummaryrefslogtreecommitdiff
path: root/frontend/plat_omap.c
diff options
context:
space:
mode:
authornotaz2012-08-15 23:11:47 +0300
committernotaz2012-08-15 23:57:17 +0300
commitf6edea0ca83c3c415fa338e3c2d9e1f3d99cc228 (patch)
tree17ab7ea090d94f122e93448f4829561c1288c171 /frontend/plat_omap.c
parent6645608833266df41ce8e07eacc3b18b77fe9e0e (diff)
downloadpcsx_rearmed-f6edea0ca83c3c415fa338e3c2d9e1f3d99cc228.tar.gz
pcsx_rearmed-f6edea0ca83c3c415fa338e3c2d9e1f3d99cc228.tar.bz2
pcsx_rearmed-f6edea0ca83c3c415fa338e3c2d9e1f3d99cc228.zip
frontend: omap: do centering on large resolutions
Diffstat (limited to 'frontend/plat_omap.c')
-rw-r--r--frontend/plat_omap.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/frontend/plat_omap.c b/frontend/plat_omap.c
index b8ab19b..b01c634 100644
--- a/frontend/plat_omap.c
+++ b/frontend/plat_omap.c
@@ -95,10 +95,19 @@ void plat_omap_gvideo_open(void)
void *plat_gvideo_set_mode(int *w, int *h, int *bpp)
{
+ int l = 0, r = 0, t = 0, b = 0;
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;
+ }
+
vout_fbdev_clear(layer_fb);
- buf = vout_fbdev_resize(layer_fb, *w, *h, *bpp, 0, 0, 0, 0, 3);
+ buf = vout_fbdev_resize(layer_fb, *w, *h, *bpp,
+ l, r, t, b, 3);
omap_enable_layer(1);