Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1372)

Side by Side Diff: cc/layers/picture_layer_impl.h

Issue 271533011: cc: Move tiling management out of draw properties calculation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to TOT Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/layers/picture_image_layer_impl_unittest.cc ('k') | cc/layers/picture_layer_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_LAYERS_PICTURE_LAYER_IMPL_H_ 5 #ifndef CC_LAYERS_PICTURE_LAYER_IMPL_H_
6 #define CC_LAYERS_PICTURE_LAYER_IMPL_H_ 6 #define CC_LAYERS_PICTURE_LAYER_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) 89 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
90 OVERRIDE; 90 OVERRIDE;
91 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE; 91 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
92 virtual void AppendQuads(QuadSink* quad_sink, 92 virtual void AppendQuads(QuadSink* quad_sink,
93 AppendQuadsData* append_quads_data) OVERRIDE; 93 AppendQuadsData* append_quads_data) OVERRIDE;
94 virtual void UpdateTilePriorities() OVERRIDE; 94 virtual void UpdateTilePriorities() OVERRIDE;
95 virtual void NotifyTileStateChanged(const Tile* tile) OVERRIDE; 95 virtual void NotifyTileStateChanged(const Tile* tile) OVERRIDE;
96 virtual void DidBecomeActive() OVERRIDE; 96 virtual void DidBecomeActive() OVERRIDE;
97 virtual void DidBeginTracing() OVERRIDE; 97 virtual void DidBeginTracing() OVERRIDE;
98 virtual void ReleaseResources() OVERRIDE; 98 virtual void ReleaseResources() OVERRIDE;
99 virtual void CalculateContentsScale(float ideal_contents_scale,
100 float device_scale_factor,
101 float page_scale_factor,
102 float maximum_animation_contents_scale,
103 bool animating_transform_to_screen,
104 float* contents_scale_x,
105 float* contents_scale_y,
106 gfx::Size* content_bounds) OVERRIDE;
107 virtual skia::RefPtr<SkPicture> GetPicture() OVERRIDE; 99 virtual skia::RefPtr<SkPicture> GetPicture() OVERRIDE;
108 100
109 // PictureLayerTilingClient overrides. 101 // PictureLayerTilingClient overrides.
110 virtual scoped_refptr<Tile> CreateTile( 102 virtual scoped_refptr<Tile> CreateTile(
111 PictureLayerTiling* tiling, 103 PictureLayerTiling* tiling,
112 const gfx::Rect& content_rect) OVERRIDE; 104 const gfx::Rect& content_rect) OVERRIDE;
113 virtual void UpdatePile(Tile* tile) OVERRIDE; 105 virtual void UpdatePile(Tile* tile) OVERRIDE;
114 virtual gfx::Size CalculateTileSize( 106 virtual gfx::Size CalculateTileSize(
115 const gfx::Size& content_bounds) const OVERRIDE; 107 const gfx::Size& content_bounds) const OVERRIDE;
116 virtual const Region* GetInvalidation() OVERRIDE; 108 virtual const Region* GetInvalidation() OVERRIDE;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 void DoPostCommitInitialization(); 164 void DoPostCommitInitialization();
173 165
174 bool CanHaveTilings() const; 166 bool CanHaveTilings() const;
175 bool CanHaveTilingWithScale(float contents_scale) const; 167 bool CanHaveTilingWithScale(float contents_scale) const;
176 void SanityCheckTilingState() const; 168 void SanityCheckTilingState() const;
177 169
178 virtual void GetDebugBorderProperties( 170 virtual void GetDebugBorderProperties(
179 SkColor* color, float* width) const OVERRIDE; 171 SkColor* color, float* width) const OVERRIDE;
180 virtual void AsValueInto(base::DictionaryValue* dict) const OVERRIDE; 172 virtual void AsValueInto(base::DictionaryValue* dict) const OVERRIDE;
181 173
174 virtual void UpdateIdealScales();
175 float MaximumTilingContentsScale() const;
176
182 PictureLayerImpl* twin_layer_; 177 PictureLayerImpl* twin_layer_;
183 178
184 scoped_ptr<PictureLayerTilingSet> tilings_; 179 scoped_ptr<PictureLayerTilingSet> tilings_;
185 scoped_refptr<PicturePileImpl> pile_; 180 scoped_refptr<PicturePileImpl> pile_;
186 Region invalidation_; 181 Region invalidation_;
187 182
188 bool is_mask_; 183 bool is_mask_;
189 184
190 float ideal_page_scale_; 185 float ideal_page_scale_;
191 float ideal_device_scale_; 186 float ideal_device_scale_;
(...skipping 19 matching lines...) Expand all
211 gfx::Size viewport_size_for_tile_priority_; 206 gfx::Size viewport_size_for_tile_priority_;
212 gfx::Transform screen_space_transform_for_tile_priority_; 207 gfx::Transform screen_space_transform_for_tile_priority_;
213 208
214 friend class PictureLayer; 209 friend class PictureLayer;
215 DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); 210 DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl);
216 }; 211 };
217 212
218 } // namespace cc 213 } // namespace cc
219 214
220 #endif // CC_LAYERS_PICTURE_LAYER_IMPL_H_ 215 #endif // CC_LAYERS_PICTURE_LAYER_IMPL_H_
OLDNEW
« no previous file with comments | « cc/layers/picture_image_layer_impl_unittest.cc ('k') | cc/layers/picture_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698