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

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

Issue 2717533005: cc: RenderSurfaceImpl tile mask layer. (Closed)
Patch Set: Fix init problems on mac. Created 3 years, 8 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 | « no previous file | cc/layers/render_surface_impl.cc » ('j') | cc/layers/render_surface_impl.cc » ('J')
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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 void set_effect_tree_index(int index) { effect_tree_index_ = index; } 155 void set_effect_tree_index(int index) { effect_tree_index_ = index; }
156 int EffectTreeIndex() const; 156 int EffectTreeIndex() const;
157 157
158 private: 158 private:
159 void SetContentRect(const gfx::Rect& content_rect); 159 void SetContentRect(const gfx::Rect& content_rect);
160 gfx::Rect CalculateClippedAccumulatedContentRect(); 160 gfx::Rect CalculateClippedAccumulatedContentRect();
161 gfx::Rect CalculateExpandedClipForFilters( 161 gfx::Rect CalculateExpandedClipForFilters(
162 const gfx::Transform& target_to_surface); 162 const gfx::Transform& target_to_surface);
163 163
164 const EffectNode* OwningEffectNode() const; 164 const EffectNode* OwningEffectNode() const;
165 void TileMaskLayer(RenderPass* render_pass,
166 SharedQuadState* shared_quad_state,
167 const gfx::Rect& visible_layer_rect);
165 168
166 LayerTreeImpl* layer_tree_impl_; 169 LayerTreeImpl* layer_tree_impl_;
167 int stable_effect_id_; 170 int stable_effect_id_;
168 int effect_tree_index_; 171 int effect_tree_index_;
169 172
170 // Container for properties that render surfaces need to compute before they 173 // Container for properties that render surfaces need to compute before they
171 // can be drawn. 174 // can be drawn.
172 struct DrawProperties { 175 struct DrawProperties {
173 DrawProperties(); 176 DrawProperties();
174 ~DrawProperties(); 177 ~DrawProperties();
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 int target_render_surface_layer_index_history_; 216 int target_render_surface_layer_index_history_;
214 size_t current_layer_index_history_; 217 size_t current_layer_index_history_;
215 218
216 friend class LayerIterator; 219 friend class LayerIterator;
217 220
218 DISALLOW_COPY_AND_ASSIGN(RenderSurfaceImpl); 221 DISALLOW_COPY_AND_ASSIGN(RenderSurfaceImpl);
219 }; 222 };
220 223
221 } // namespace cc 224 } // namespace cc
222 #endif // CC_LAYERS_RENDER_SURFACE_IMPL_H_ 225 #endif // CC_LAYERS_RENDER_SURFACE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | cc/layers/render_surface_impl.cc » ('j') | cc/layers/render_surface_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698