HomeSort by relevance Sort by last modified time
    Searched refs:DrawsContent (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/cc/layers/
heads_up_display_layer.h 21 virtual bool DrawsContent() const OVERRIDE;
io_surface_layer.cc 31 bool IOSurfaceLayer::DrawsContent() const {
32 return io_surface_id_ && Layer::DrawsContent();
picture_image_layer.cc 27 bool PictureImageLayer::DrawsContent() const {
28 return !bitmap_.isNull() && PictureLayer::DrawsContent();
picture_image_layer.h 25 virtual bool DrawsContent() const OVERRIDE;
image_layer.h 22 virtual bool DrawsContent() const OVERRIDE;
io_surface_layer.h 21 virtual bool DrawsContent() const OVERRIDE;
image_layer.cc 80 bool ImageLayer::DrawsContent() const {
81 return !bitmap_.isNull() && TiledLayer::DrawsContent();
nine_patch_layer.cc 36 } else if (bitmap_dirty_ && DrawsContent()) {
96 bool NinePatchLayer::DrawsContent() const {
98 Layer::DrawsContent() &&
picture_layer.cc 29 bool PictureLayer::DrawsContent() const {
30 return Layer::DrawsContent() && client_;
52 if (DrawsContent()) {
delegated_renderer_layer.h 25 virtual bool DrawsContent() const OVERRIDE;
nine_patch_layer.h 23 virtual bool DrawsContent() const OVERRIDE;
picture_layer.h 26 virtual bool DrawsContent() const OVERRIDE;
delegated_renderer_layer.cc 32 bool DelegatedRendererLayer::DrawsContent() const {
33 return Layer::DrawsContent() && !frame_size_.IsEmpty();
texture_layer.cc 143 if (layer_tree_host() && (DrawsContent() || content_committed_)) {
152 if (rate_limit_context_ && client_ && layer_tree_host() && DrawsContent())
176 bool TextureLayer::DrawsContent() const {
177 return (client_ || texture_id_ || holder_ref_) && Layer::DrawsContent();
231 content_committed_ = DrawsContent();
248 return DrawsContent();
content_layer.cc 58 bool ContentLayer::DrawsContent() const {
59 return TiledLayer::DrawsContent() && client_;
content_layer.h 43 virtual bool DrawsContent() const OVERRIDE;
heads_up_display_layer.cc 50 bool HeadsUpDisplayLayer::DrawsContent() const { return true; }
heads_up_display_unittest.cc 26 virtual bool DrawsContent() const OVERRIDE { return true; }
texture_layer.h 81 virtual bool DrawsContent() const OVERRIDE;
tiled_layer.h 30 virtual bool DrawsContent() const OVERRIDE;
render_surface_impl.cc 185 (!mask_layer->DrawsContent() || mask_layer->bounds().IsEmpty()))
191 (!mask_layer->DrawsContent() || mask_layer->bounds().IsEmpty()))
tiled_layer.cc 168 bool TiledLayer::DrawsContent() const {
169 if (!ContentsScalingLayer::DrawsContent())
744 if (tiler_->has_empty_bounds() || !DrawsContent())
857 tiler_->has_empty_bounds() || !DrawsContent())
  /external/chromium_org/cc/trees/
layer_sorter.cc 272 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())
layer_tree_host_common.cc 157 if (!layer->DrawsContent() || layer->content_bounds().IsEmpty() ||
223 if (!layer->DrawsContent() || layer->bounds().IsEmpty())
385 (layer->DrawsContent() || num_descendants_that_draw_content > 1);
    [all...]
  /external/chromium_org/cc/debug/
debug_rect_history.cc 69 if (!layer->update_rect().IsEmpty() && layer->DrawsContent()) {

Completed in 243 milliseconds

1 2