am a65709c0: am 7094ec0f: am 748dd3c4: Merge "Always apply surface insets" into lmp-dev

* commit 'a65709c05bb825af83156f14242e05e81976fa4f':
  Always apply surface insets
This commit is contained in:
Alan Viverette
2014-07-21 22:24:15 +00:00
committed by Android Git Automerger

View File

@@ -468,13 +468,8 @@ public final class ViewRootImpl implements ViewParent,
// Compute surface insets required to draw at specified Z value.
// TODO: Use real shadow insets for a constant max Z.
if (view.isHardwareAccelerated()) {
final int surfaceInset = (int) Math.ceil(view.getZ() * 2);
attrs.surfaceInsets.set(surfaceInset, surfaceInset, surfaceInset, surfaceInset);
} else {
// Software accelerated windows can't use insets.
attrs.surfaceInsets.setEmpty();
}
final int surfaceInset = (int) Math.ceil(view.getZ() * 2);
attrs.surfaceInsets.set(surfaceInset, surfaceInset, surfaceInset, surfaceInset);
CompatibilityInfo compatibilityInfo = mDisplayAdjustments.getCompatibilityInfo();
mTranslator = compatibilityInfo.getTranslator();