Skip to content

Commit

Permalink
Revert "hwui: Disable QCOM tile renderer by default"
Browse files Browse the repository at this point in the history
fixed with the following two commits
AOKP/frameworks_base@1bf4417
AOKP/frameworks_base@1fe1051

This reverts commit ffb2f02.
  • Loading branch information
Whitehawkx committed Sep 13, 2012
1 parent 2ae2205 commit cc80ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/java/android/view/HardwareRenderer.java
Original file line number Diff line number Diff line change
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, "false");
String trProperty = SystemProperties.get(TILE_RENDERING_PROPERTY, "true");
//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 cc80ba6

Please sign in to comment.