Searched defs:drawsContent (Results 1 - 15 of 15) sorted by path

/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsLayer.h262 bool drawsContent() const { return m_drawsContent; } function in class:WebCore::GraphicsLayer
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp414 void GraphicsLayerAndroid::setDrawsContent(bool drawsContent) argument
416 if (drawsContent == m_drawsContent)
418 GraphicsLayer::setDrawsContent(drawsContent);
419 m_contentLayer->setVisible(drawsContent);
864 if (!m_image && !drawsContent()) {
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.cpp478 void GraphicsLayerCA::setDrawsContent(bool drawsContent) argument
480 if (drawsContent == m_drawsContent)
483 GraphicsLayer::setDrawsContent(drawsContent);
567 if (!drawsContent())
1972 if (drawsContent())
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DCanvas2DLayerChromium.h48 virtual bool drawsContent() const { return true; } function in class:WebCore::Canvas2DLayerChromium
H A DContentLayerChromium.h61 virtual bool drawsContent() const { return m_owner && m_owner->drawsContent() && (!m_tiler || !m_tiler->skipsDraw()); } function in class:WebCore::ContentLayerChromium
H A DGraphicsLayerChromium.cpp240 void GraphicsLayerChromium::setDrawsContent(bool drawsContent) argument
242 if (drawsContent == m_drawsContent)
245 GraphicsLayer::setDrawsContent(drawsContent);
328 if (drawsContent())
334 if (drawsContent())
H A DImageLayerChromium.h55 virtual bool drawsContent() const { return m_contents; } function in class:WebCore::ImageLayerChromium
H A DLayerChromium.h154 virtual bool drawsContent() const { return false; } function in class:WebCore::LayerChromium
H A DPluginLayerChromium.h40 virtual bool drawsContent() const { return true; } function in class:WebCore::PluginLayerChromium
H A DVideoLayerChromium.h60 virtual bool drawsContent() const { return true; } function in class:WebCore::VideoLayerChromium
H A DWebGLLayerChromium.h50 virtual bool drawsContent() const { return m_context; } function in class:WebCore::WebGLLayerChromium
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCLayerImpl.cpp120 if (sublayers[i]->ccLayerImpl()->drawsContent() || sublayers[i]->ccLayerImpl()->descendantsDrawsContent())
127 bool CCLayerImpl::drawsContent() const function in class:WebCore::CCLayerImpl
129 return m_owner && m_owner->drawsContent();
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsLayerQt.cpp294 bool drawsContent: 1; member in struct:WebCore::GraphicsLayerQtImpl::State
305 , drawsContent(false)
393 if (!m_layer->drawsContent() || m_size.isEmpty() || !m_size.isValid())
397 const bool requiresTiling = (m_state.drawsContent && m_currentContent.contentType == HTMLContentType) && (m_size.width() > GRAPHICS_LAYER_TILING_THRESHOLD || m_size.height() > GRAPHICS_LAYER_TILING_THRESHOLD);
639 if (m_state.drawsContent) {
784 m_state.drawsContent = false;
794 if (!m_state.drawsContent && m_layer->drawsContent())
797 setFlag(ItemHasNoContents, !m_layer->drawsContent());
857 m_state.drawsContent
[all...]
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.h220 bool drawsContent; member in struct:WebCore::TextureMapperNode::State
236 , drawsContent(false)
/external/webkit/Source/WebCore/platform/graphics/win/
H A DGraphicsLayerCACF.cpp266 void GraphicsLayerCACF::setDrawsContent(bool drawsContent) argument
268 if (drawsContent == m_drawsContent)
271 GraphicsLayer::setDrawsContent(drawsContent);
326 if (drawsContent())
332 if (drawsContent()) {

Completed in 224 milliseconds