HomeSort by relevance Sort by last modified time
    Searched defs:DrawsContent (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/cc/layers/
picture_image_layer.cc 27 bool PictureImageLayer::DrawsContent() const {
28 return !bitmap_.isNull() && PictureLayer::DrawsContent();
delegated_renderer_layer.cc 32 bool DelegatedRendererLayer::DrawsContent() const {
33 return Layer::DrawsContent() && !frame_size_.IsEmpty();
heads_up_display_layer.cc 50 bool HeadsUpDisplayLayer::DrawsContent() const { return true; }
image_layer.cc 80 bool ImageLayer::DrawsContent() const {
81 return !bitmap_.isNull() && TiledLayer::DrawsContent();
io_surface_layer.cc 31 bool IOSurfaceLayer::DrawsContent() const {
32 return io_surface_id_ && Layer::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()) {
content_layer.cc 58 bool ContentLayer::DrawsContent() const {
59 return TiledLayer::DrawsContent() && client_;
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();
layer.cc 682 if (DrawsContent())
752 layer->SetDrawsContent(DrawsContent());
845 bool Layer::DrawsContent() const {
layer_impl.h 135 bool DrawsContent() const { return draws_content_; }
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_tree_host_common_unittest.cc 179 virtual bool DrawsContent() const OVERRIDE;
189 virtual bool DrawsContent() const OVERRIDE;
196 bool LayerWithForcedDrawsContent::DrawsContent() const { return true; }
198 bool LayerCanClipSelf::DrawsContent() const { return true; }
    [all...]

Completed in 462 milliseconds