Loading core/java/android/view/ViewRoot.java +5 −5 Original line number Diff line number Diff line Loading @@ -1257,6 +1257,11 @@ public final class ViewRoot extends Handler implements ViewParent, View.AttachIn return; } if (fullRedrawNeeded) { mAttachInfo.mIgnoreDirtyState = true; dirty.union(0, 0, (int) (mWidth * appScale + 0.5f), (int) (mHeight * appScale + 0.5f)); } if (mHwRenderer != null && mHwRenderer.isEnabled()) { if (!dirty.isEmpty()) { mHwRenderer.draw(mView, mAttachInfo, yoff); Loading @@ -1270,11 +1275,6 @@ public final class ViewRoot extends Handler implements ViewParent, View.AttachIn return; } if (fullRedrawNeeded) { mAttachInfo.mIgnoreDirtyState = true; dirty.union(0, 0, (int) (mWidth * appScale + 0.5f), (int) (mHeight * appScale + 0.5f)); } if (DEBUG_ORIENTATION || DEBUG_DRAW) { Log.v(TAG, "Draw " + mView + "/" + mWindowAttributes.getTitle() Loading libs/hwui/FontRenderer.cpp +1 −1 File changed.Contains only whitespace changes. Show changes Loading
core/java/android/view/ViewRoot.java +5 −5 Original line number Diff line number Diff line Loading @@ -1257,6 +1257,11 @@ public final class ViewRoot extends Handler implements ViewParent, View.AttachIn return; } if (fullRedrawNeeded) { mAttachInfo.mIgnoreDirtyState = true; dirty.union(0, 0, (int) (mWidth * appScale + 0.5f), (int) (mHeight * appScale + 0.5f)); } if (mHwRenderer != null && mHwRenderer.isEnabled()) { if (!dirty.isEmpty()) { mHwRenderer.draw(mView, mAttachInfo, yoff); Loading @@ -1270,11 +1275,6 @@ public final class ViewRoot extends Handler implements ViewParent, View.AttachIn return; } if (fullRedrawNeeded) { mAttachInfo.mIgnoreDirtyState = true; dirty.union(0, 0, (int) (mWidth * appScale + 0.5f), (int) (mHeight * appScale + 0.5f)); } if (DEBUG_ORIENTATION || DEBUG_DRAW) { Log.v(TAG, "Draw " + mView + "/" + mWindowAttributes.getTitle() Loading