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 : resource_id(0), allow_overlay(false) { |
| 16 } |
15 | 17 |
16 void StreamVideoDrawQuad::SetNew(const SharedQuadState* shared_quad_state, | 18 void StreamVideoDrawQuad::SetNew(const SharedQuadState* shared_quad_state, |
17 const gfx::Rect& rect, | 19 const gfx::Rect& rect, |
18 const gfx::Rect& opaque_rect, | 20 const gfx::Rect& opaque_rect, |
19 const gfx::Rect& visible_rect, | 21 const gfx::Rect& visible_rect, |
20 unsigned resource_id, | 22 unsigned resource_id, |
21 const gfx::Transform& matrix) { | 23 const gfx::Transform& matrix) { |
22 bool needs_blending = false; | 24 bool needs_blending = false; |
23 DrawQuad::SetAll(shared_quad_state, DrawQuad::STREAM_VIDEO_CONTENT, rect, | 25 DrawQuad::SetAll(shared_quad_state, DrawQuad::STREAM_VIDEO_CONTENT, rect, |
24 opaque_rect, visible_rect, needs_blending); | 26 opaque_rect, visible_rect, needs_blending); |
(...skipping 25 matching lines...) Expand all Loading... |
50 return static_cast<const StreamVideoDrawQuad*>(quad); | 52 return static_cast<const StreamVideoDrawQuad*>(quad); |
51 } | 53 } |
52 | 54 |
53 void StreamVideoDrawQuad::ExtendValue( | 55 void StreamVideoDrawQuad::ExtendValue( |
54 base::trace_event::TracedValue* value) const { | 56 base::trace_event::TracedValue* value) const { |
55 value->SetInteger("resource_id", resource_id); | 57 value->SetInteger("resource_id", resource_id); |
56 MathUtil::AddToTracedValue("matrix", matrix, value); | 58 MathUtil::AddToTracedValue("matrix", matrix, value); |
57 } | 59 } |
58 | 60 |
59 } // namespace cc | 61 } // namespace cc |
OLD | NEW |