Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp

Issue 1835833005: Don't squash layers with non-translation transforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp b/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp
index 54728f6eca87da198eaa713253f80e6a101d4213..de6fd4eedaebba25d99d27c91fd8928d7c5569f0 100644
--- a/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp
+++ b/third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.cpp
@@ -57,6 +57,9 @@ const SquashingDisallowedReasonStringMap kSquashingDisallowedReasonStringMap[] =
{ SquashingDisallowedReasonRenderingContextMismatch,
"squashingLayerRenderingContextMismatch",
"Cannot squash layers with different 3D contexts." },
+ { SquashingDisallowedReasonNonTranslationTransform,
+ "SquashingDisallowedReasonNonTranslationTransform",
+ "Cannot squash layers with transforms that are not identity or translation." },
};
const size_t kNumberOfSquashingDisallowedReasons = WTF_ARRAY_LENGTH(kSquashingDisallowedReasonStringMap);
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/SquashingDisallowedReasons.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698