Searched refs:DrawsContent (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium_org/cc/layers/
H A Dio_surface_layer.cc31 bool IOSurfaceLayer::DrawsContent() const { function in class:cc::IOSurfaceLayer
32 return io_surface_id_ && Layer::DrawsContent();
H A Dpicture_image_layer.cc27 bool PictureImageLayer::DrawsContent() const { function in class:cc::PictureImageLayer
28 return !bitmap_.isNull() && PictureLayer::DrawsContent();
H A Dheads_up_display_layer.h21 virtual bool DrawsContent() const OVERRIDE;
H A Dio_surface_layer.h21 virtual bool DrawsContent() const OVERRIDE;
H A Dpicture_image_layer.h25 virtual bool DrawsContent() const OVERRIDE;
H A Dimage_layer.cc80 bool ImageLayer::DrawsContent() const { function in class:cc::ImageLayer
81 return !bitmap_.isNull() && TiledLayer::DrawsContent();
H A Dnine_patch_layer.cc36 } else if (bitmap_dirty_ && DrawsContent()) {
96 bool NinePatchLayer::DrawsContent() const { function in class:cc::NinePatchLayer
98 Layer::DrawsContent() &&
H A Dpicture_layer.cc29 bool PictureLayer::DrawsContent() const { function in class:cc::PictureLayer
30 return Layer::DrawsContent() && client_;
52 if (DrawsContent()) {
H A Ddelegated_renderer_layer.h25 virtual bool DrawsContent() const OVERRIDE;
H A Dimage_layer.h22 virtual bool DrawsContent() const OVERRIDE;
H A Dnine_patch_layer.h23 virtual bool DrawsContent() const OVERRIDE;
H A Ddelegated_renderer_layer.cc32 bool DelegatedRendererLayer::DrawsContent() const { function in class:cc::DelegatedRendererLayer
33 return Layer::DrawsContent() && !frame_size_.IsEmpty();
H A Dtexture_layer.cc143 if (layer_tree_host() && (DrawsContent() || content_committed_)) {
152 if (rate_limit_context_ && client_ && layer_tree_host() && DrawsContent())
176 bool TextureLayer::DrawsContent() const { function in class:cc::TextureLayer
177 return (client_ || texture_id_ || holder_ref_) && Layer::DrawsContent();
231 content_committed_ = DrawsContent();
248 return DrawsContent();
H A Dcontent_layer.cc58 bool ContentLayer::DrawsContent() const { function in class:cc::ContentLayer
59 return TiledLayer::DrawsContent() && client_;
H A Dcontent_layer.h43 virtual bool DrawsContent() const OVERRIDE;
H A Dheads_up_display_layer.cc50 bool HeadsUpDisplayLayer::DrawsContent() const { return true; } function in class:cc::HeadsUpDisplayLayer
H A Dheads_up_display_unittest.cc26 virtual bool DrawsContent() const OVERRIDE { return true; }
H A Dpicture_layer.h26 virtual bool DrawsContent() const OVERRIDE;
H A Dtexture_layer.h81 virtual bool DrawsContent() const OVERRIDE;
H A Dtiled_layer.h30 virtual bool DrawsContent() const OVERRIDE;
H A Drender_surface_impl.cc185 (!mask_layer->DrawsContent() || mask_layer->bounds().IsEmpty()))
191 (!mask_layer->DrawsContent() || mask_layer->bounds().IsEmpty()))
H A Dtiled_layer.cc168 bool TiledLayer::DrawsContent() const { function in class:cc::TiledLayer
169 if (!ContentsScalingLayer::DrawsContent())
744 if (tiler_->has_empty_bounds() || !DrawsContent())
857 tiler_->has_empty_bounds() || !DrawsContent())
/external/chromium_org/cc/trees/
H A Dlayer_sorter.cc272 if (!node.layer->DrawsContent() && !render_surface)
309 if (!node_a.layer->DrawsContent() && !node_a.layer->render_surface())
313 if (!node_b.layer->DrawsContent() && !node_b.layer->render_surface())
H A Dlayer_tree_host_common.cc157 if (!layer->DrawsContent() || layer->content_bounds().IsEmpty() ||
223 if (!layer->DrawsContent() || layer->bounds().IsEmpty())
385 (layer->DrawsContent() || num_descendants_that_draw_content > 1);
826 num_descendants_that_draw_content += child_layer->DrawsContent() ? 1 : 0;
830 if ((child_layer->DrawsContent() && !child_layer->CanClipSelf()) ||
1510 if (layer->DrawsContent())
/external/chromium_org/cc/debug/
H A Ddebug_rect_history.cc69 if (!layer->update_rect().IsEmpty() && layer->DrawsContent()) {

Completed in 133 milliseconds

12