From: notaz Date: Fri, 17 Aug 2012 22:39:37 +0000 (+0300) Subject: frontend: omap; increase vram allocation X-Git-Tag: r16~15^2~19 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=commitdiff_plain;h=99d767a0cbf8ee7406000cbac647d9681d885282 frontend: omap; increase vram allocation --- diff --git a/frontend/plat_omap.c b/frontend/plat_omap.c index b01c6343..e5b6c04e 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");