Lines Matching defs:draw_properties_

217   DrawProperties<Layer>& draw_properties() { return draw_properties_; }
219 return draw_properties_;
223 // draw_properties_
225 return draw_properties_.target_space_transform;
228 return draw_properties_.screen_space_transform;
230 float draw_opacity() const { return draw_properties_.opacity; }
232 return draw_properties_.opacity_is_animating;
235 return draw_properties_.target_space_transform_is_animating;
238 return draw_properties_.screen_space_transform_is_animating;
241 return draw_properties_.screen_space_opacity_is_animating;
243 bool can_use_lcd_text() const { return draw_properties_.can_use_lcd_text; }
244 bool is_clipped() const { return draw_properties_.is_clipped; }
245 gfx::Rect clip_rect() const { return draw_properties_.clip_rect; }
247 return draw_properties_.drawable_content_rect;
250 return draw_properties_.visible_content_rect;
253 DCHECK(!draw_properties_.render_target ||
254 draw_properties_.render_target->render_surface());
255 return draw_properties_.render_target;
258 DCHECK(!draw_properties_.render_target ||
259 draw_properties_.render_target->render_surface());
260 return draw_properties_.render_target;
263 return draw_properties_.render_surface.get();
266 return draw_properties_.num_unclipped_descendants;
382 float contents_scale_x() const { return draw_properties_.contents_scale_x; }
383 float contents_scale_y() const { return draw_properties_.contents_scale_y; }
384 gfx::Size content_bounds() const { return draw_properties_.content_bounds; }
625 DrawProperties<Layer> draw_properties_;