| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "cc/quads/stream_video_draw_quad.h" | 5 #include "cc/quads/stream_video_draw_quad.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/trace_event/trace_event_argument.h" | 8 #include "base/trace_event/trace_event_argument.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "cc/base/math_util.h" | 10 #include "cc/base/math_util.h" |
| 11 | 11 |
| 12 namespace cc { | 12 namespace cc { |
| 13 | 13 |
| 14 StreamVideoDrawQuad::StreamVideoDrawQuad() : resource_id(0) {} | 14 StreamVideoDrawQuad::StreamVideoDrawQuad() { |
| 15 } |
| 15 | 16 |
| 16 void StreamVideoDrawQuad::SetNew(const SharedQuadState* shared_quad_state, | 17 void StreamVideoDrawQuad::SetNew(const SharedQuadState* shared_quad_state, |
| 17 const gfx::Rect& rect, | 18 const gfx::Rect& rect, |
| 18 const gfx::Rect& opaque_rect, | 19 const gfx::Rect& opaque_rect, |
| 19 const gfx::Rect& visible_rect, | 20 const gfx::Rect& visible_rect, |
| 20 unsigned resource_id, | 21 unsigned resource_id, |
| 21 const gfx::Transform& matrix) { | 22 const gfx::Transform& matrix) { |
| 22 bool needs_blending = false; | 23 bool needs_blending = false; |
| 23 DrawQuad::SetAll(shared_quad_state, DrawQuad::STREAM_VIDEO_CONTENT, rect, | 24 DrawQuad::SetAll(shared_quad_state, DrawQuad::STREAM_VIDEO_CONTENT, rect, |
| 24 opaque_rect, visible_rect, needs_blending); | 25 opaque_rect, visible_rect, needs_blending); |
| 25 this->resource_id = resource_id; | 26 resources.ids[kResourceIdIndex] = resource_id; |
| 27 resources.count = 1; |
| 26 this->matrix = matrix; | 28 this->matrix = matrix; |
| 27 } | 29 } |
| 28 | 30 |
| 29 void StreamVideoDrawQuad::SetAll(const SharedQuadState* shared_quad_state, | 31 void StreamVideoDrawQuad::SetAll(const SharedQuadState* shared_quad_state, |
| 30 const gfx::Rect& rect, | 32 const gfx::Rect& rect, |
| 31 const gfx::Rect& opaque_rect, | 33 const gfx::Rect& opaque_rect, |
| 32 const gfx::Rect& visible_rect, | 34 const gfx::Rect& visible_rect, |
| 33 bool needs_blending, | 35 bool needs_blending, |
| 34 unsigned resource_id, | 36 unsigned resource_id, |
| 35 const gfx::Transform& matrix) { | 37 const gfx::Transform& matrix) { |
| 36 DrawQuad::SetAll(shared_quad_state, DrawQuad::STREAM_VIDEO_CONTENT, rect, | 38 DrawQuad::SetAll(shared_quad_state, DrawQuad::STREAM_VIDEO_CONTENT, rect, |
| 37 opaque_rect, visible_rect, needs_blending); | 39 opaque_rect, visible_rect, needs_blending); |
| 38 this->resource_id = resource_id; | 40 resources.ids[kResourceIdIndex] = resource_id; |
| 41 resources.count = 1; |
| 39 this->matrix = matrix; | 42 this->matrix = matrix; |
| 40 } | 43 } |
| 41 | 44 |
| 42 void StreamVideoDrawQuad::IterateResources( | |
| 43 const ResourceIteratorCallback& callback) { | |
| 44 resource_id = callback.Run(resource_id); | |
| 45 } | |
| 46 | |
| 47 const StreamVideoDrawQuad* StreamVideoDrawQuad::MaterialCast( | 45 const StreamVideoDrawQuad* StreamVideoDrawQuad::MaterialCast( |
| 48 const DrawQuad* quad) { | 46 const DrawQuad* quad) { |
| 49 DCHECK(quad->material == DrawQuad::STREAM_VIDEO_CONTENT); | 47 DCHECK(quad->material == DrawQuad::STREAM_VIDEO_CONTENT); |
| 50 return static_cast<const StreamVideoDrawQuad*>(quad); | 48 return static_cast<const StreamVideoDrawQuad*>(quad); |
| 51 } | 49 } |
| 52 | 50 |
| 53 void StreamVideoDrawQuad::ExtendValue( | 51 void StreamVideoDrawQuad::ExtendValue( |
| 54 base::trace_event::TracedValue* value) const { | 52 base::trace_event::TracedValue* value) const { |
| 55 value->SetInteger("resource_id", resource_id); | 53 value->SetInteger("resource_id", resources.ids[kResourceIdIndex]); |
| 56 MathUtil::AddToTracedValue("matrix", matrix, value); | 54 MathUtil::AddToTracedValue("matrix", matrix, value); |
| 57 } | 55 } |
| 58 | 56 |
| 59 } // namespace cc | 57 } // namespace cc |
| OLD | NEW |