Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: cc/quads/yuv_video_draw_quad.cc

Issue 12157002: Adding YUVA support for enabling Alpha Playback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merging DrawYUVAVideoQuad with DrawYUVVideoQuad Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/yuv_video_draw_quad.h" 5 #include "cc/quads/yuv_video_draw_quad.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace cc { 9 namespace cc {
10 10
11 YUVVideoDrawQuad::YUVVideoDrawQuad() {} 11 YUVVideoDrawQuad::YUVVideoDrawQuad() {}
12 YUVVideoDrawQuad::~YUVVideoDrawQuad() {} 12 YUVVideoDrawQuad::~YUVVideoDrawQuad() {}
13 13
14 scoped_ptr<YUVVideoDrawQuad> YUVVideoDrawQuad::Create() { 14 scoped_ptr<YUVVideoDrawQuad> YUVVideoDrawQuad::Create() {
15 return make_scoped_ptr(new YUVVideoDrawQuad); 15 return make_scoped_ptr(new YUVVideoDrawQuad);
16 } 16 }
17 17
18 void YUVVideoDrawQuad::SetNew(const SharedQuadState* shared_quad_state, 18 void YUVVideoDrawQuad::SetNew(const SharedQuadState* shared_quad_state,
19 gfx::Rect rect, 19 gfx::Rect rect,
20 gfx::Rect opaque_rect, 20 gfx::Rect opaque_rect,
21 gfx::SizeF tex_scale, 21 gfx::SizeF tex_scale,
22 const VideoLayerImpl::FramePlane& y_plane, 22 const VideoLayerImpl::FramePlane& y_plane,
23 const VideoLayerImpl::FramePlane& u_plane, 23 const VideoLayerImpl::FramePlane& u_plane,
24 const VideoLayerImpl::FramePlane& v_plane) { 24 const VideoLayerImpl::FramePlane& v_plane) {
25 gfx::Rect visible_rect = rect; 25 gfx::Rect visible_rect = rect;
26 bool needs_blending = false; 26 bool needs_blending = false;
27 SetAll(shared_quad_state, rect, opaque_rect, visible_rect, needs_blending,
28 tex_scale, y_plane, u_plane, v_plane, a_plane);
29 }
30
31 void YUVVideoDrawQuad::SetNew(const SharedQuadState* shared_quad_state,
32 gfx::Rect rect,
33 gfx::Rect opaque_rect,
34 gfx::SizeF tex_scale,
35 const VideoLayerImpl::FramePlane& y_plane,
36 const VideoLayerImpl::FramePlane& u_plane,
37 const VideoLayerImpl::FramePlane& v_plane,
38 const VideoLayerImpl::FramePlane& a_plane) {
39 gfx::Rect visible_rect = rect;
40 bool needs_blending = true;
41 SetAll(shared_quad_state, rect, opaque_rect, visible_rect, needs_blending,
42 tex_scale, y_plane, u_plane, v_plane, a_plane);
43 }
44
45 void YUVVideoDrawQuad::SetAll(const SharedQuadState* shared_quad_state,
46 gfx::Rect rect,
47 gfx::Rect opaque_rect,
48 gfx::Rect visible_rect,
49 bool needs_blending,
50 gfx::SizeF tex_scale,
51 const VideoLayerImpl::FramePlane& y_plane,
52 const VideoLayerImpl::FramePlane& u_plane,
53 const VideoLayerImpl::FramePlane& v_plane) {
27 DrawQuad::SetAll(shared_quad_state, DrawQuad::YUV_VIDEO_CONTENT, rect, 54 DrawQuad::SetAll(shared_quad_state, DrawQuad::YUV_VIDEO_CONTENT, rect,
28 opaque_rect, visible_rect, needs_blending); 55 opaque_rect, visible_rect, needs_blending);
29 this->tex_scale = tex_scale; 56 this->tex_scale = tex_scale;
30 this->y_plane = y_plane; 57 this->y_plane = y_plane;
31 this->u_plane = u_plane; 58 this->u_plane = u_plane;
32 this->v_plane = v_plane; 59 this->v_plane = v_plane;
33 } 60 }
34 61
35 void YUVVideoDrawQuad::SetAll(const SharedQuadState* shared_quad_state, 62 void YUVVideoDrawQuad::SetAll(const SharedQuadState* shared_quad_state,
36 gfx::Rect rect, 63 gfx::Rect rect,
37 gfx::Rect opaque_rect, 64 gfx::Rect opaque_rect,
38 gfx::Rect visible_rect, 65 gfx::Rect visible_rect,
39 bool needs_blending, 66 bool needs_blending,
40 gfx::SizeF tex_scale, 67 gfx::SizeF tex_scale,
41 const VideoLayerImpl::FramePlane& y_plane, 68 const VideoLayerImpl::FramePlane& y_plane,
42 const VideoLayerImpl::FramePlane& u_plane, 69 const VideoLayerImpl::FramePlane& u_plane,
43 const VideoLayerImpl::FramePlane& v_plane) { 70 const VideoLayerImpl::FramePlane& v_plane,
71 const VideoLayerImpl::FramePlane& a_plane) {
44 DrawQuad::SetAll(shared_quad_state, DrawQuad::YUV_VIDEO_CONTENT, rect, 72 DrawQuad::SetAll(shared_quad_state, DrawQuad::YUV_VIDEO_CONTENT, rect,
45 opaque_rect, visible_rect, needs_blending); 73 opaque_rect, visible_rect, needs_blending);
46 this->tex_scale = tex_scale; 74 this->tex_scale = tex_scale;
47 this->y_plane = y_plane; 75 this->y_plane = y_plane;
48 this->u_plane = u_plane; 76 this->u_plane = u_plane;
49 this->v_plane = v_plane; 77 this->v_plane = v_plane;
78 this->a_plane = a_plane;
50 } 79 }
51 80
52 void YUVVideoDrawQuad::IterateResources( 81 void YUVVideoDrawQuad::IterateResources(
53 const ResourceIteratorCallback& callback) { 82 const ResourceIteratorCallback& callback) {
54 y_plane.resource_id = callback.Run(y_plane.resource_id); 83 y_plane.resource_id = callback.Run(y_plane.resource_id);
55 u_plane.resource_id = callback.Run(u_plane.resource_id); 84 u_plane.resource_id = callback.Run(u_plane.resource_id);
56 v_plane.resource_id = callback.Run(v_plane.resource_id); 85 v_plane.resource_id = callback.Run(v_plane.resource_id);
86 if(a_plane.resource_id) {
danakj 2013/04/04 15:01:55 nit: no {} for single-line body
vignesh 2013/04/04 22:06:14 Done.
87 a_plane.resource_id = callback.Run(a_plane.resource_id);
88 }
57 } 89 }
58 90
59 const YUVVideoDrawQuad* YUVVideoDrawQuad::MaterialCast( 91 const YUVVideoDrawQuad* YUVVideoDrawQuad::MaterialCast(
60 const DrawQuad* quad) { 92 const DrawQuad* quad) {
61 DCHECK(quad->material == DrawQuad::YUV_VIDEO_CONTENT); 93 DCHECK(quad->material == DrawQuad::YUV_VIDEO_CONTENT);
62 return static_cast<const YUVVideoDrawQuad*>(quad); 94 return static_cast<const YUVVideoDrawQuad*>(quad);
63 } 95 }
64 96
65 } // namespace cc 97 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698