| Index: cc/draw_properties.h
|
| diff --git a/cc/draw_properties.h b/cc/draw_properties.h
|
| index fc0507c6edd936262ed8b87c7c42ef8bc8353d10..323536d4e4cd8c67cf0cd46aa2c18e749db7d7a1 100644
|
| --- a/cc/draw_properties.h
|
| +++ b/cc/draw_properties.h
|
| @@ -18,8 +18,10 @@ struct CC_EXPORT DrawProperties {
|
| DrawProperties()
|
| : opacity(0)
|
| , opacity_is_animating(false)
|
| + , screen_space_opacity_is_animating(false)
|
| , target_space_transform_is_animating(false)
|
| , screen_space_transform_is_animating(false)
|
| + , can_use_lcd_text(false)
|
| , is_clipped(false)
|
| , render_target(0)
|
| {
|
| @@ -42,9 +44,13 @@ struct CC_EXPORT DrawProperties {
|
| // animating, the main thread may not have the same values that are used
|
| // to draw.
|
| bool opacity_is_animating;
|
| + bool screen_space_opacity_is_animating;
|
| bool target_space_transform_is_animating;
|
| bool screen_space_transform_is_animating;
|
|
|
| + // True if the layer can use LCD text.
|
| + bool can_use_lcd_text;
|
| +
|
| // True if the layer needs to be clipped by clipRect.
|
| bool is_clipped;
|
|
|
|
|