Searched refs:drawsContent (Results 1 - 25 of 26) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DCanvas2DLayerChromium.h48 virtual bool drawsContent() const { return true; } function in class:WebCore::Canvas2DLayerChromium
H A DPluginLayerChromium.h40 virtual bool drawsContent() const { return true; } function in class:WebCore::PluginLayerChromium
H A DImageLayerChromium.h55 virtual bool drawsContent() const { return m_contents; } function in class:WebCore::ImageLayerChromium
H A DWebGLLayerChromium.h50 virtual bool drawsContent() const { return m_context; } function in class:WebCore::WebGLLayerChromium
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 DVideoLayerChromium.h60 virtual bool drawsContent() const { return true; } function in class:WebCore::VideoLayerChromium
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 DLayerRendererChromium.cpp360 if (layer->drawsContent())
362 if (layer->maskLayer() && layer->maskLayer()->drawsContent())
364 if (layer->replicaLayer() && layer->replicaLayer()->drawsContent())
366 if (layer->replicaLayer() && layer->replicaLayer()->maskLayer() && layer->replicaLayer()->maskLayer()->drawsContent())
690 if (drawLayer->drawsContent())
816 if (drawLayer->drawsContent())
818 if (drawLayer->maskLayer() && drawLayer->maskLayer()->drawsContent())
820 if (drawLayer->replicaLayer() && drawLayer->replicaLayer()->drawsContent())
822 if (drawLayer->replicaLayer() && drawLayer->replicaLayer()->maskLayer() && drawLayer->replicaLayer()->maskLayer()->drawsContent())
899 if (!layer->drawsContent())
[all...]
H A DContentLayerChromium.cpp92 ASSERT(drawsContent());
H A DRenderSurfaceChromium.cpp111 if (maskLayer && maskLayer->drawsContent()) {
H A DLayerChromium.h154 virtual bool drawsContent() const { return false; } function in class:WebCore::LayerChromium
H A DVideoLayerChromium.cpp106 ASSERT(drawsContent());
H A DLayerChromium.cpp386 ts << "drawsContent: " << drawsContent() << "\n";
/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();
H A DCCLayerImpl.h70 virtual bool drawsContent() const;
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.h220 bool drawsContent; member in struct:WebCore::TextureMapperNode::State
236 , drawsContent(false)
H A DTextureMapperNode.cpp166 if (m_state.drawsContent || m_currentContent.contentType != HTMLContentType)
208 int descendantsWithContent = (m_state.drawsContent || m_currentContent.contentType != HTMLContentType) ? 1 : 0;
226 const bool selfHasContent = m_state.drawsContent || (m_currentContent.contentType != HTMLContentType);
491 if (m_size.isEmpty() || (!m_state.drawsContent && m_currentContent.contentType == HTMLContentType))
831 m_state.drawsContent = graphicsLayer->drawsContent();
H A DGraphicsLayerTextureMapper.cpp244 if (value == drawsContent())
/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()) {
/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/rendering/
H A DRenderLayerBacking.cpp1038 if (m_graphicsLayer && m_graphicsLayer->drawsContent())
1041 if (m_foregroundLayer && m_foregroundLayer->drawsContent())
1044 if (m_maskLayer && m_maskLayer->drawsContent())
1051 if (m_graphicsLayer && m_graphicsLayer->drawsContent()) {
1057 if (m_foregroundLayer && m_foregroundLayer->drawsContent()) {
1063 if (m_maskLayer && m_maskLayer->drawsContent()) {
1490 if (m_graphicsLayer->drawsContent())
/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/
H A DGraphicsLayer.h262 bool drawsContent() const { return m_drawsContent; } function in class:WebCore::GraphicsLayer
H A DGraphicsLayer.cpp268 if (drawsContent()) {
453 ts << "(drawsContent " << m_drawsContent << ")\n";
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.h144 virtual bool platformCALayerDrawsContent() const { return drawsContent(); }

Completed in 195 milliseconds

12