From 99d767a0cbf8ee7406000cbac647d9681d885282 Mon Sep 17 00:00:00 2001 From: notaz Date: Sat, 18 Aug 2012 01:39:37 +0300 Subject: frontend: omap; increase vram allocation --- frontend/plat_omap.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'frontend/plat_omap.c') diff --git a/frontend/plat_omap.c b/frontend/plat_omap.c index b01c634..e5b6c04 100644 --- a/frontend/plat_omap.c +++ b/frontend/plat_omap.c @@ -52,8 +52,9 @@ static int omap_setup_layer_(int fd, int enabled, int x, int y, int w, int h) perror("SETUP_PLANE"); } - if (mi.size < 640*512*3*3) { - mi.size = 640*512*3*3; + // upto 1024x512 (2x resolution enhancement) + if (mi.size < 1024*512*2 * 3) { + mi.size = 1024*512*2 * 3; ret = ioctl(fd, OMAPFB_SETUP_MEM, &mi); if (ret != 0) { perror("SETUP_MEM"); -- cgit v1.2.3 From cc56203b76e1fcef2c7e55b460daf07e654a1547 Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 5 Nov 2012 00:28:57 +0200 Subject: switch over to libpicofe - libretro should not be affected by this, all others need to do 'git submodule init && git submodule update' from now on. - pandora should get gamma control support --- frontend/plat_omap.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'frontend/plat_omap.c') diff --git a/frontend/plat_omap.c b/frontend/plat_omap.c index e5b6c04..6126140 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" -- cgit v1.2.3