diff options
author | Ziyan <jaraidaniel@gmail.com> | 2015-04-28 12:27:29 +0200 |
---|---|---|
committer | Ziyan <jaraidaniel@gmail.com> | 2015-04-28 12:41:37 +0200 |
commit | 798f0e52d49d1880949e328b379ace2b0edb77b0 (patch) | |
tree | 66757bfea860800132e3a787bd512ed54d77e333 | |
parent | 3623b200f302af5c9f572f4410ee8b78564d1f29 (diff) | |
download | device_samsung_tuna-798f0e52d49d1880949e328b379ace2b0edb77b0.zip device_samsung_tuna-798f0e52d49d1880949e328b379ace2b0edb77b0.tar.gz device_samsung_tuna-798f0e52d49d1880949e328b379ace2b0edb77b0.tar.bz2 |
set debug.hwui.render_dirty_regions=false
The IMG architecture does not support the EGL_SWAP_BEHAVIOR_PRESERVED_BIT
in EGL configurations. This bit is used only to be able to change the
EGL_SWAP_BEHAVIOR, which matters when the default behavior is not the
one we want. However on IMG, the default swap behavior is the one we
desire.
-rwxr-xr-x | device.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -195,7 +195,8 @@ PRODUCT_COPY_FILES += \ PRODUCT_PROPERTY_OVERRIDES += \ ro.opengles.version=131072 \ ro.sf.lcd_density=320 \ - ro.hwui.disable_scissor_opt=true + ro.hwui.disable_scissor_opt=true \ + debug.hwui.render_dirty_regions=false # GPU producer to CPU consumer not supported PRODUCT_PROPERTY_OVERRIDES += \ |