summaryrefslogtreecommitdiffstats
path: root/libs/hwui/DamageAccumulator.cpp
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2014-08-08 13:21:00 -0700
committerJohn Reck <jreck@google.com>2014-08-08 20:24:34 +0000
commita7c2ea20c43ab797bef5801530687e22e83def8f (patch)
treea5456b7d3cf8fb9f49a330bb626d490ba3de3742 /libs/hwui/DamageAccumulator.cpp
parent5c8ea2c369deab75719fe7c7301846a8ef955702 (diff)
downloadframeworks_base-a7c2ea20c43ab797bef5801530687e22e83def8f.zip
frameworks_base-a7c2ea20c43ab797bef5801530687e22e83def8f.tar.gz
frameworks_base-a7c2ea20c43ab797bef5801530687e22e83def8f.tar.bz2
Fix damage for layers for projection receivers
Bug: 16880228 Change-Id: I59ab760a21f49cc2cac0d8936b173cff292e6114
Diffstat (limited to 'libs/hwui/DamageAccumulator.cpp')
-rw-r--r--libs/hwui/DamageAccumulator.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/hwui/DamageAccumulator.cpp b/libs/hwui/DamageAccumulator.cpp
index 8b32c40..15bed58 100644
--- a/libs/hwui/DamageAccumulator.cpp
+++ b/libs/hwui/DamageAccumulator.cpp
@@ -83,11 +83,6 @@ void DamageAccumulator::pushTransform(const Matrix4* transform) {
mHead->matrix4 = transform;
}
-void DamageAccumulator::pushNullTransform() {
- pushCommon();
- mHead->type = TransformNone;
-}
-
void DamageAccumulator::popTransform() {
LOG_ALWAYS_FATAL_IF(mHead->prev == mHead, "Cannot pop the root frame!");
DirtyStack* dirtyFrame = mHead;