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

Unified Diff: Source/WebCore/platform/graphics/chromium/cc/CCLayerImpl.h

Issue 7046081: Merge 88496 - 2011-06-09 James Robinson <jamesr@chromium.org> (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 6 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
Index: Source/WebCore/platform/graphics/chromium/cc/CCLayerImpl.h
===================================================================
--- Source/WebCore/platform/graphics/chromium/cc/CCLayerImpl.h (revision 88498)
+++ Source/WebCore/platform/graphics/chromium/cc/CCLayerImpl.h (working copy)
@@ -100,6 +100,9 @@
void setPreserves3D(bool preserves3D) { m_preserves3D = preserves3D; }
bool preserves3D() const { return m_preserves3D; }
+ void setUsesLayerScissor(bool usesLayerScissor) { m_usesLayerScissor = usesLayerScissor; }
+ bool usesLayerScissor() const { return m_usesLayerScissor; }
+
void setSublayerTransform(const TransformationMatrix& sublayerTransform) { m_sublayerTransform = sublayerTransform; }
const TransformationMatrix& sublayerTransform() const { return m_sublayerTransform; }
@@ -183,6 +186,7 @@
bool m_preserves3D;
TransformationMatrix m_sublayerTransform;
TransformationMatrix m_transform;
+ bool m_usesLayerScissor;
// Properties owned exclusively by this CCLayerImpl.
// Debugging.

Powered by Google App Engine
This is Rietveld 408576698