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

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

Issue 2175553002: Raster PictureLayerTiling with fractional translation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Raster PictureLayerTiling with fractional translation Created 4 years, 5 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
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 <stddef.h> 8 #include <stddef.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 91
92 // Used for benchmarking 92 // Used for benchmarking
93 RasterSource* GetRasterSource() const { return raster_source_.get(); } 93 RasterSource* GetRasterSource() const { return raster_source_.get(); }
94 94
95 void set_is_directly_composited_image(bool is_directly_composited_image) { 95 void set_is_directly_composited_image(bool is_directly_composited_image) {
96 is_directly_composited_image_ = is_directly_composited_image; 96 is_directly_composited_image_ = is_directly_composited_image;
97 } 97 }
98 98
99 protected: 99 protected:
100 PictureLayerImpl(LayerTreeImpl* tree_impl, int id, bool is_mask); 100 PictureLayerImpl(LayerTreeImpl* tree_impl, int id, bool is_mask);
101 PictureLayerTiling* AddTiling(float contents_scale); 101 PictureLayerTiling* AddTiling(float contents_scale,
102 const gfx::Vector2dF& contents_translation);
102 void RemoveAllTilings(); 103 void RemoveAllTilings();
103 void AddTilingsForRasterScale(); 104 void AddTilingsForRasterScale();
104 void AddLowResolutionTilingIfNeeded(); 105 void AddLowResolutionTilingIfNeeded();
105 bool ShouldAdjustRasterScale() const; 106 bool ShouldAdjustRasterScale() const;
107 void RecalculateRasterTranslation();
106 void RecalculateRasterScales(); 108 void RecalculateRasterScales();
107 void CleanUpTilingsOnActiveLayer( 109 void CleanUpTilingsOnActiveLayer(
108 const std::vector<PictureLayerTiling*>& used_tilings); 110 const std::vector<PictureLayerTiling*>& used_tilings);
109 float MinimumContentsScale() const; 111 float MinimumContentsScale() const;
110 float MaximumContentsScale() const; 112 float MaximumContentsScale() const;
111 void ResetRasterScale(); 113 void ResetRasterScale();
112 void UpdateViewportRectForTilePriorityInContentSpace(); 114 void UpdateViewportRectForTilePriorityInContentSpace();
113 PictureLayerImpl* GetRecycledTwinLayer() const; 115 PictureLayerImpl* GetRecycledTwinLayer() const;
114 116
115 void SanityCheckTilingState() const; 117 void SanityCheckTilingState() const;
(...skipping 16 matching lines...) Expand all
132 134
133 float ideal_page_scale_; 135 float ideal_page_scale_;
134 float ideal_device_scale_; 136 float ideal_device_scale_;
135 float ideal_source_scale_; 137 float ideal_source_scale_;
136 float ideal_contents_scale_; 138 float ideal_contents_scale_;
137 139
138 float raster_page_scale_; 140 float raster_page_scale_;
139 float raster_device_scale_; 141 float raster_device_scale_;
140 float raster_source_scale_; 142 float raster_source_scale_;
141 float raster_contents_scale_; 143 float raster_contents_scale_;
144 gfx::Vector2dF raster_contents_translation_;
142 float low_res_raster_contents_scale_; 145 float low_res_raster_contents_scale_;
143 146
144 bool was_screen_space_transform_animating_; 147 bool was_screen_space_transform_animating_;
145 bool only_used_low_res_last_append_quads_; 148 bool only_used_low_res_last_append_quads_;
146 const bool is_mask_; 149 const bool is_mask_;
147 150
148 bool nearest_neighbor_; 151 bool nearest_neighbor_;
149 bool is_directly_composited_image_; 152 bool is_directly_composited_image_;
150 153
151 // Use this instead of |visible_layer_rect()| for tiling calculations. This 154 // Use this instead of |visible_layer_rect()| for tiling calculations. This
152 // takes external viewport and transform for tile priority into account. 155 // takes external viewport and transform for tile priority into account.
153 gfx::Rect viewport_rect_for_tile_priority_in_content_space_; 156 gfx::Rect viewport_rect_for_tile_priority_in_content_space_;
154 157
155 gfx::Size gpu_raster_max_texture_size_; 158 gfx::Size gpu_raster_max_texture_size_;
156 159
157 // List of tilings that were used last time we appended quads. This can be 160 // List of tilings that were used last time we appended quads. This can be
158 // used as an optimization not to remove tilings if they are still being 161 // used as an optimization not to remove tilings if they are still being
159 // drawn. Note that accessing this vector should only be done in the context 162 // drawn. Note that accessing this vector should only be done in the context
160 // of comparing pointers, since objects pointed to are not guaranteed to 163 // of comparing pointers, since objects pointed to are not guaranteed to
161 // exist. 164 // exist.
162 std::vector<PictureLayerTiling*> last_append_quads_tilings_; 165 std::vector<PictureLayerTiling*> last_append_quads_tilings_;
163 166
164 DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl); 167 DISALLOW_COPY_AND_ASSIGN(PictureLayerImpl);
165 }; 168 };
166 169
167 } // namespace cc 170 } // namespace cc
168 171
169 #endif // CC_LAYERS_PICTURE_LAYER_IMPL_H_ 172 #endif // CC_LAYERS_PICTURE_LAYER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698