Created
October 22, 2012 01:34
-
-
Save steven676/3929195 to your computer and use it in GitHub Desktop.
[PATCH] Increase PVR parameter buffer size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 446bd53bda2df0e6c667d319fd9f074a4e39fc6b Mon Sep 17 00:00:00 2001 | |
| From: Steven Luo <[email protected]> | |
| Date: Sun, 21 Oct 2012 06:14:53 -0700 | |
| Subject: [PATCH] Increase PVR parameter buffer size | |
| The default of 2 MB is far too small for the complex OpenGL rendering | |
| used in the Android UI in ICS and up. Instead, boost the param buffer | |
| size to 12 MB, which improves performance. | |
| XXX TODO: http://processors.wiki.ti.com/index.php/SGXDbg recommends 16 | |
| MB or larger, but this causes SurfaceFlinger to crash and burn. | |
| --- | |
| encore/proprietary/etc/powervr.ini | 1 + | |
| 1 files changed, 1 insertions(+), 0 deletions(-) | |
| diff --git a/encore/proprietary/etc/powervr.ini b/encore/proprietary/etc/powervr.ini | |
| index 0b9f02e..d86615d 100644 | |
| --- a/encore/proprietary/etc/powervr.ini | |
| +++ b/encore/proprietary/etc/powervr.ini | |
| @@ -1,2 +1,3 @@ | |
| [default] | |
| HALNumFrameBuffers=3 | |
| +ParamBufferSize=12582912 | |
| -- | |
| 1.7.2.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment