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

Unified Diff: cc/quads/yuv_video_draw_quad.h

Issue 12157002: Adding YUVA support for enabling Alpha Playback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressing comments on patchset 7 Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: cc/quads/yuv_video_draw_quad.h
diff --git a/cc/quads/yuv_video_draw_quad.h b/cc/quads/yuv_video_draw_quad.h
index 8885a5a97aebad6997aa6292e7106ec61d35c82e..5197f3a41a01f4fd07f6f9d136fea1f3e9a3728a 100644
--- a/cc/quads/yuv_video_draw_quad.h
+++ b/cc/quads/yuv_video_draw_quad.h
@@ -23,9 +23,10 @@ class CC_EXPORT YUVVideoDrawQuad : public DrawQuad {
gfx::Rect rect,
gfx::Rect opaque_rect,
gfx::SizeF tex_scale,
- const VideoLayerImpl::FramePlane& y_plane,
- const VideoLayerImpl::FramePlane& u_plane,
- const VideoLayerImpl::FramePlane& v_plane);
+ const VideoLayerImpl::FramePlane* y_plane,
+ const VideoLayerImpl::FramePlane* u_plane,
+ const VideoLayerImpl::FramePlane* v_plane,
+ const VideoLayerImpl::FramePlane* a_plane);
void SetAll(const SharedQuadState* shared_quad_state,
gfx::Rect rect,
@@ -33,14 +34,16 @@ class CC_EXPORT YUVVideoDrawQuad : public DrawQuad {
gfx::Rect visible_rect,
bool needs_blending,
gfx::SizeF tex_scale,
- const VideoLayerImpl::FramePlane& y_plane,
- const VideoLayerImpl::FramePlane& u_plane,
- const VideoLayerImpl::FramePlane& v_plane);
+ const VideoLayerImpl::FramePlane* y_plane,
+ const VideoLayerImpl::FramePlane* u_plane,
+ const VideoLayerImpl::FramePlane* v_plane,
+ const VideoLayerImpl::FramePlane* a_plane);
gfx::SizeF tex_scale;
VideoLayerImpl::FramePlane y_plane;
VideoLayerImpl::FramePlane u_plane;
VideoLayerImpl::FramePlane v_plane;
+ VideoLayerImpl::FramePlane a_plane;
virtual void IterateResources(const ResourceIteratorCallback& callback)
OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698