Skip to content

Commit

Permalink
hwui: Disable QCOM tile renderer by default
Browse files Browse the repository at this point in the history
 * Revert once we have new Adreno drivers

Change-Id: Iebf5f1f01a51138c1cd0ff25d1132a6344c9ec35
  • Loading branch information
hyperb1iss authored and Whitehawkx committed Aug 17, 2012
1 parent 01946fd commit ffb2f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/java/android/view/HardwareRenderer.java
Expand Up @@ -623,7 +623,7 @@ static abstract class GlRenderer extends HardwareRenderer {
static boolean sTileRendering;
static {
String dirtyProperty = SystemProperties.get(RENDER_DIRTY_REGIONS_PROPERTY, "true");
String trProperty = SystemProperties.get(TILE_RENDERING_PROPERTY, "true");
String trProperty = SystemProperties.get(TILE_RENDERING_PROPERTY, "false");
//noinspection PointlessBooleanExpression,ConstantConditions
//enable dirty regions if tile-rendering enabled or dirty regions property enabled
sTileRendering = "true".equalsIgnoreCase(trProperty);
Expand Down

0 comments on commit ffb2f02

Please sign in to comment.