diff options
author | notaz | 2012-08-18 01:39:37 +0300 |
---|---|---|
committer | notaz | 2012-10-12 00:05:08 +0300 |
commit | 99d767a0cbf8ee7406000cbac647d9681d885282 (patch) | |
tree | 4f3e471d8fb42b18f6af80f6a01dc49de11ca87a /frontend | |
parent | c6063f8985c69362a89a12111f393229ab65d05f (diff) | |
download | pcsx_rearmed-99d767a0cbf8ee7406000cbac647d9681d885282.tar.gz pcsx_rearmed-99d767a0cbf8ee7406000cbac647d9681d885282.tar.bz2 pcsx_rearmed-99d767a0cbf8ee7406000cbac647d9681d885282.zip |
frontend: omap; increase vram allocation
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/plat_omap.c | 5 |
1 files changed, 3 insertions, 2 deletions
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"); |