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 #ifndef CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_ | 5 #ifndef CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_ |
6 #define CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_ | 6 #define CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 ~YUVVideoDrawQuad() override; | 25 ~YUVVideoDrawQuad() override; |
26 | 26 |
27 YUVVideoDrawQuad(); | 27 YUVVideoDrawQuad(); |
28 | 28 |
29 void SetNew(const SharedQuadState* shared_quad_state, | 29 void SetNew(const SharedQuadState* shared_quad_state, |
30 const gfx::Rect& rect, | 30 const gfx::Rect& rect, |
31 const gfx::Rect& opaque_rect, | 31 const gfx::Rect& opaque_rect, |
32 const gfx::Rect& visible_rect, | 32 const gfx::Rect& visible_rect, |
33 const gfx::RectF& tex_coord_rect, | 33 const gfx::RectF& tex_coord_rect, |
34 const gfx::Size& tex_size, | 34 const gfx::Size& ya_tex_size, |
| 35 const gfx::Size& uv_tex_size, |
35 unsigned y_plane_resource_id, | 36 unsigned y_plane_resource_id, |
36 unsigned u_plane_resource_id, | 37 unsigned u_plane_resource_id, |
37 unsigned v_plane_resource_id, | 38 unsigned v_plane_resource_id, |
38 unsigned a_plane_resource_id, | 39 unsigned a_plane_resource_id, |
39 ColorSpace color_space); | 40 ColorSpace color_space); |
40 | 41 |
41 void SetAll(const SharedQuadState* shared_quad_state, | 42 void SetAll(const SharedQuadState* shared_quad_state, |
42 const gfx::Rect& rect, | 43 const gfx::Rect& rect, |
43 const gfx::Rect& opaque_rect, | 44 const gfx::Rect& opaque_rect, |
44 const gfx::Rect& visible_rect, | 45 const gfx::Rect& visible_rect, |
45 bool needs_blending, | 46 bool needs_blending, |
46 const gfx::RectF& tex_coord_rect, | 47 const gfx::RectF& tex_coord_rect, |
47 const gfx::Size& tex_size, | 48 const gfx::Size& ya_tex_size, |
| 49 const gfx::Size& uv_tex_size, |
48 unsigned y_plane_resource_id, | 50 unsigned y_plane_resource_id, |
49 unsigned u_plane_resource_id, | 51 unsigned u_plane_resource_id, |
50 unsigned v_plane_resource_id, | 52 unsigned v_plane_resource_id, |
51 unsigned a_plane_resource_id, | 53 unsigned a_plane_resource_id, |
52 ColorSpace color_space); | 54 ColorSpace color_space); |
53 | 55 |
54 gfx::RectF tex_coord_rect; | 56 gfx::RectF tex_coord_rect; |
55 // Empty texture size implies no clamping of texture coordinates. | 57 // Empty texture size implies no clamping of texture coordinates. |
56 gfx::Size tex_size; | 58 gfx::Size ya_tex_size; |
| 59 gfx::Size uv_tex_size; |
57 unsigned y_plane_resource_id; | 60 unsigned y_plane_resource_id; |
58 unsigned u_plane_resource_id; | 61 unsigned u_plane_resource_id; |
59 unsigned v_plane_resource_id; | 62 unsigned v_plane_resource_id; |
60 unsigned a_plane_resource_id; | 63 unsigned a_plane_resource_id; |
61 ColorSpace color_space; | 64 ColorSpace color_space; |
62 | 65 |
63 void IterateResources(const ResourceIteratorCallback& callback) override; | 66 void IterateResources(const ResourceIteratorCallback& callback) override; |
64 | 67 |
65 static const YUVVideoDrawQuad* MaterialCast(const DrawQuad*); | 68 static const YUVVideoDrawQuad* MaterialCast(const DrawQuad*); |
66 | 69 |
67 private: | 70 private: |
68 void ExtendValue(base::trace_event::TracedValue* value) const override; | 71 void ExtendValue(base::trace_event::TracedValue* value) const override; |
69 }; | 72 }; |
70 | 73 |
71 } // namespace cc | 74 } // namespace cc |
72 | 75 |
73 #endif // CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_ | 76 #endif // CC_QUADS_YUV_VIDEO_DRAW_QUAD_H_ |
OLD | NEW |