| Index: mojo/converters/surfaces/surfaces_type_converters.cc
|
| diff --git a/mojo/converters/surfaces/surfaces_type_converters.cc b/mojo/converters/surfaces/surfaces_type_converters.cc
|
| index d53e160b45564df12362bc2b5619c2d2cb699964..0c27f78361267a19e65861e30e3150154c765f8c 100644
|
| --- a/mojo/converters/surfaces/surfaces_type_converters.cc
|
| +++ b/mojo/converters/surfaces/surfaces_type_converters.cc
|
| @@ -140,7 +140,7 @@ bool ConvertDrawQuad(const QuadPtr& input,
|
| texture_quad_state->uv_bottom_right.To<gfx::PointF>(),
|
| texture_quad_state->background_color.To<SkColor>(),
|
| &texture_quad_state->vertex_opacity.storage()[0],
|
| - texture_quad_state->flipped,
|
| + texture_quad_state->y_flipped,
|
| texture_quad_state->nearest_neighbor);
|
| break;
|
| }
|
| @@ -302,7 +302,7 @@ QuadPtr TypeConverter<QuadPtr, cc::DrawQuad>::Convert(
|
| vertex_opacity[i] = texture_quad->vertex_opacity[i];
|
| }
|
| texture_state->vertex_opacity = vertex_opacity.Pass();
|
| - texture_state->flipped = texture_quad->flipped;
|
| + texture_state->y_flipped = texture_quad->y_flipped;
|
| quad->texture_quad_state = texture_state.Pass();
|
| break;
|
| }
|
|
|