| Index: cc/quads/yuv_video_draw_quad.h
|
| diff --git a/cc/quads/yuv_video_draw_quad.h b/cc/quads/yuv_video_draw_quad.h
|
| index 03276eb0c890d02405a3fa9258f782d9fd420d6c..5724418e160e839fde54666a0d49e1935c4060d1 100644
|
| --- a/cc/quads/yuv_video_draw_quad.h
|
| +++ b/cc/quads/yuv_video_draw_quad.h
|
| @@ -29,7 +29,8 @@ class CC_EXPORT YUVVideoDrawQuad : public DrawQuad {
|
| const gfx::Rect& rect,
|
| const gfx::Rect& opaque_rect,
|
| const gfx::Rect& visible_rect,
|
| - const gfx::RectF& tex_coord_rect,
|
| + const gfx::RectF& ya_tex_coord_rect,
|
| + const gfx::RectF& uv_tex_coord_rect,
|
| const gfx::Size& ya_tex_size,
|
| const gfx::Size& uv_tex_size,
|
| unsigned y_plane_resource_id,
|
| @@ -43,7 +44,8 @@ class CC_EXPORT YUVVideoDrawQuad : public DrawQuad {
|
| const gfx::Rect& opaque_rect,
|
| const gfx::Rect& visible_rect,
|
| bool needs_blending,
|
| - const gfx::RectF& tex_coord_rect,
|
| + const gfx::RectF& ya_tex_coord_rect,
|
| + const gfx::RectF& uv_tex_coord_rect,
|
| const gfx::Size& ya_tex_size,
|
| const gfx::Size& uv_tex_size,
|
| unsigned y_plane_resource_id,
|
| @@ -52,8 +54,8 @@ class CC_EXPORT YUVVideoDrawQuad : public DrawQuad {
|
| unsigned a_plane_resource_id,
|
| ColorSpace color_space);
|
|
|
| - gfx::RectF tex_coord_rect;
|
| - // Empty texture size implies no clamping of texture coordinates.
|
| + gfx::RectF ya_tex_coord_rect;
|
| + gfx::RectF uv_tex_coord_rect;
|
| gfx::Size ya_tex_size;
|
| gfx::Size uv_tex_size;
|
| unsigned y_plane_resource_id;
|
|
|