| Index: Source/platform/graphics/GraphicsLayer.cpp
|
| diff --git a/Source/platform/graphics/GraphicsLayer.cpp b/Source/platform/graphics/GraphicsLayer.cpp
|
| index 531be04c6bf40c87e3381d2c1c4fca588a6a718e..89abec0b56dec1e650cb5eb7f00b78d4a5ee0b15 100644
|
| --- a/Source/platform/graphics/GraphicsLayer.cpp
|
| +++ b/Source/platform/graphics/GraphicsLayer.cpp
|
| @@ -89,7 +89,6 @@ GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client)
|
| , m_drawsContent(false)
|
| , m_contentsVisible(true)
|
| , m_isRootForIsolatedGroup(false)
|
| - , m_hasGpuRasterizationHint(false)
|
| , m_hasScrollParent(false)
|
| , m_hasClipParent(false)
|
| , m_paintingPhase(GraphicsLayerPaintAllWithOverflowClip)
|
| @@ -608,11 +607,6 @@ void GraphicsLayer::dumpProperties(TextStream& ts, int indent, LayerTreeFlags fl
|
| ts << "(contentsVisible " << m_contentsVisible << ")\n";
|
| }
|
|
|
| - if (m_hasGpuRasterizationHint) {
|
| - writeIndent(ts, indent + 1);
|
| - ts << "(hasGpuRasterizationHint " << m_hasGpuRasterizationHint << ")\n";
|
| - }
|
| -
|
| if (!m_backfaceVisibility) {
|
| writeIndent(ts, indent + 1);
|
| ts << "(backfaceVisibility " << (m_backfaceVisibility ? "visible" : "hidden") << ")\n";
|
| @@ -952,12 +946,6 @@ void GraphicsLayer::setIsRootForIsolatedGroup(bool isolated)
|
| platformLayer()->setIsRootForIsolatedGroup(isolated);
|
| }
|
|
|
| -void GraphicsLayer::setHasGpuRasterizationHint(bool hasHint)
|
| -{
|
| - m_hasGpuRasterizationHint = hasHint;
|
| - m_layer->setHasGpuRasterizationHint(hasHint);
|
| -}
|
| -
|
| void GraphicsLayer::setContentsNeedsDisplay()
|
| {
|
| if (WebLayer* contentsLayer = contentsLayerIfRegistered()) {
|
|
|