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

Unified Diff: content/common/cc_messages_unittest.cc

Issue 12157002: Adding YUVA support for enabling Alpha Playback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove files unrelated to cc/ Created 7 years, 10 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
« cc/yuva_video_draw_quad.cc ('K') | « content/common/cc_messages.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/cc_messages_unittest.cc
diff --git a/content/common/cc_messages_unittest.cc b/content/common/cc_messages_unittest.cc
index 69a5f253ca54610e5d3dd69e607ddf0f5fe846eb..426aeb3281dc85a718dd228778cb407e86a64643 100644
--- a/content/common/cc_messages_unittest.cc
+++ b/content/common/cc_messages_unittest.cc
@@ -26,6 +26,7 @@ using cc::TransferableResource;
using cc::StreamVideoDrawQuad;
using cc::VideoLayerImpl;
using cc::YUVVideoDrawQuad;
+using cc::YUVAVideoDrawQuad;
using gfx::Transform;
using WebKit::WebFilterOperation;
using WebKit::WebFilterOperations;
@@ -100,6 +101,10 @@ class CCMessagesTest : public testing::Test {
Compare(YUVVideoDrawQuad::MaterialCast(a),
YUVVideoDrawQuad::MaterialCast(b));
break;
+ case DrawQuad::YUVA_VIDEO_CONTENT:
+ Compare(YUVAVideoDrawQuad::MaterialCast(a),
+ YUVAVideoDrawQuad::MaterialCast(b));
+ break;
case DrawQuad::INVALID:
break;
}
@@ -176,6 +181,22 @@ class CCMessagesTest : public testing::Test {
EXPECT_EQ(a->v_plane.format, b->v_plane.format);
}
+ void Compare(const YUVAVideoDrawQuad* a, const YUVAVideoDrawQuad* b) {
+ EXPECT_EQ(a->tex_scale, b->tex_scale);
+ EXPECT_EQ(a->y_plane.resourceId, b->y_plane.resourceId);
+ EXPECT_EQ(a->y_plane.size.ToString(), b->y_plane.size.ToString());
+ EXPECT_EQ(a->y_plane.format, b->y_plane.format);
+ EXPECT_EQ(a->u_plane.resourceId, b->u_plane.resourceId);
+ EXPECT_EQ(a->u_plane.size.ToString(), b->u_plane.size.ToString());
+ EXPECT_EQ(a->u_plane.format, b->u_plane.format);
+ EXPECT_EQ(a->v_plane.resourceId, b->v_plane.resourceId);
+ EXPECT_EQ(a->v_plane.size.ToString(), b->v_plane.size.ToString());
+ EXPECT_EQ(a->v_plane.format, b->v_plane.format);
+ EXPECT_EQ(a->a_plane.resourceId, b->a_plane.resourceId);
+ EXPECT_EQ(a->a_plane.size.ToString(), b->a_plane.size.ToString());
+ EXPECT_EQ(a->a_plane.format, b->a_plane.format);
+ }
+
void Compare(const TransferableResource& a, const TransferableResource& b) {
EXPECT_EQ(a.id, b.id);
EXPECT_EQ(a.format, b.format);
« cc/yuva_video_draw_quad.cc ('K') | « content/common/cc_messages.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698