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

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

Issue 2468113004: Revert of cc: Make visible rect computation aware of pixel-moving filters (Closed)
Patch Set: Created 4 years, 1 month 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/BUILD.gn ('k') | cc/layers/render_surface_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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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_RENDER_SURFACE_IMPL_H_ 5 #ifndef CC_LAYERS_RENDER_SURFACE_IMPL_H_
6 #define CC_LAYERS_RENDER_SURFACE_IMPL_H_ 6 #define CC_LAYERS_RENDER_SURFACE_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 AppendQuadsData* append_quads_data, 156 AppendQuadsData* append_quads_data,
157 RenderPassId render_pass_id); 157 RenderPassId render_pass_id);
158 158
159 int TransformTreeIndex() const; 159 int TransformTreeIndex() const;
160 int ClipTreeIndex() const; 160 int ClipTreeIndex() const;
161 int EffectTreeIndex() const; 161 int EffectTreeIndex() const;
162 162
163 private: 163 private:
164 void SetContentRect(const gfx::Rect& content_rect); 164 void SetContentRect(const gfx::Rect& content_rect);
165 gfx::Rect CalculateClippedAccumulatedContentRect(); 165 gfx::Rect CalculateClippedAccumulatedContentRect();
166 gfx::Rect CalculateExpandedClipForFilters(
167 const gfx::Transform& target_to_surface);
168 166
169 const EffectNode* OwningEffectNode() const; 167 const EffectNode* OwningEffectNode() const;
170 168
171 LayerImpl* owning_layer_; 169 LayerImpl* owning_layer_;
172 170
173 // Container for properties that render surfaces need to compute before they 171 // Container for properties that render surfaces need to compute before they
174 // can be drawn. 172 // can be drawn.
175 struct DrawProperties { 173 struct DrawProperties {
176 DrawProperties(); 174 DrawProperties();
177 ~DrawProperties(); 175 ~DrawProperties();
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 int target_render_surface_layer_index_history_; 214 int target_render_surface_layer_index_history_;
217 size_t current_layer_index_history_; 215 size_t current_layer_index_history_;
218 216
219 friend class LayerIterator; 217 friend class LayerIterator;
220 218
221 DISALLOW_COPY_AND_ASSIGN(RenderSurfaceImpl); 219 DISALLOW_COPY_AND_ASSIGN(RenderSurfaceImpl);
222 }; 220 };
223 221
224 } // namespace cc 222 } // namespace cc
225 #endif // CC_LAYERS_RENDER_SURFACE_IMPL_H_ 223 #endif // CC_LAYERS_RENDER_SURFACE_IMPL_H_
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | cc/layers/render_surface_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698