| Index: Source/core/platform/graphics/GraphicsLayer.h
|
| diff --git a/Source/core/platform/graphics/GraphicsLayer.h b/Source/core/platform/graphics/GraphicsLayer.h
|
| index 57fcbee12272fb4a7fc449b2776396cd7ecd4811..e90b73cec01883fa4b13db1957f1419fcef80c24 100644
|
| --- a/Source/core/platform/graphics/GraphicsLayer.h
|
| +++ b/Source/core/platform/graphics/GraphicsLayer.h
|
| @@ -202,6 +202,12 @@ public:
|
| float opacity() const { return m_opacity; }
|
| void setOpacity(float);
|
|
|
| + BlendMode blendMode() const { return m_blendMode; }
|
| + void setBlendMode(BlendMode);
|
| +
|
| + bool isRootForIsolatedGroup() const { return m_isRootForIsolatedGroup; }
|
| + void setIsRootForIsolatedGroup(bool);
|
| +
|
| const FilterOperations& filters() const { return m_filters; }
|
|
|
| // Returns true if filter can be rendered by the compositor
|
| @@ -365,6 +371,8 @@ private:
|
| float m_opacity;
|
| float m_zPosition;
|
|
|
| + BlendMode m_blendMode;
|
| +
|
| FilterOperations m_filters;
|
|
|
| bool m_contentsOpaque : 1;
|
| @@ -373,6 +381,7 @@ private:
|
| bool m_masksToBounds : 1;
|
| bool m_drawsContent : 1;
|
| bool m_contentsVisible : 1;
|
| + bool m_isRootForIsolatedGroup : 1;
|
|
|
| bool m_hasScrollParent : 1;
|
| bool m_hasClipParent : 1;
|
|
|