Chromium Code Reviews| Index: cc/quads/stream_video_draw_quad.cc |
| diff --git a/cc/quads/stream_video_draw_quad.cc b/cc/quads/stream_video_draw_quad.cc |
| index 3ab992867ca955e3c0f3f7ba434a3030cef8feaf..e511069b3014e1667959dcc98a3b14ee40cbeeab 100644 |
| --- a/cc/quads/stream_video_draw_quad.cc |
| +++ b/cc/quads/stream_video_draw_quad.cc |
| @@ -19,11 +19,15 @@ void StreamVideoDrawQuad::SetNew(const SharedQuadState* shared_quad_state, |
| const gfx::Rect& opaque_rect, |
| const gfx::Rect& visible_rect, |
| unsigned resource_id, |
| + gfx::Size resource_size_in_pixels, |
| + bool allow_overlay, |
| const gfx::Transform& matrix) { |
| bool needs_blending = false; |
| DrawQuad::SetAll(shared_quad_state, DrawQuad::STREAM_VIDEO_CONTENT, rect, |
| opaque_rect, visible_rect, needs_blending); |
| resources.ids[kResourceIdIndex] = resource_id; |
| + overlay_resources.size_in_pixels[kResourceIdIndex] = resource_size_in_pixels; |
| + overlay_resources.allow_overlay[kResourceIdIndex] = allow_overlay; |
| resources.count = 1; |
| this->matrix = matrix; |
| } |
| @@ -34,10 +38,14 @@ void StreamVideoDrawQuad::SetAll(const SharedQuadState* shared_quad_state, |
| const gfx::Rect& visible_rect, |
| bool needs_blending, |
| unsigned resource_id, |
| + gfx::Size resource_size_in_pixels, |
| + bool allow_overlay, |
| const gfx::Transform& matrix) { |
| DrawQuad::SetAll(shared_quad_state, DrawQuad::STREAM_VIDEO_CONTENT, rect, |
| opaque_rect, visible_rect, needs_blending); |
| resources.ids[kResourceIdIndex] = resource_id; |
| + overlay_resources.size_in_pixels[kResourceIdIndex] = resource_size_in_pixels; |
| + overlay_resources.allow_overlay[kResourceIdIndex] = allow_overlay; |
| resources.count = 1; |
| this->matrix = matrix; |
| } |
| @@ -54,4 +62,9 @@ void StreamVideoDrawQuad::ExtendValue( |
| MathUtil::AddToTracedValue("matrix", matrix, value); |
| } |
| +StreamVideoDrawQuad::OverlayResources::OverlayResources() { |
| + for (unsigned i = 0; i < Resources::kMaxResourceIdCount; i++) |
|
palmer
2015/06/08 22:28:13
Nit: ++i
Nit: declare |i| as size_t, since |kMaxR
|
| + allow_overlay[i] = false; |
| +} |
| + |
| } // namespace cc |