OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "content/common/cc_messages.h" | 5 #include "content/common/cc_messages.h" |
6 | 6 |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include "cc/compositor_frame.h" | 9 #include "cc/compositor_frame.h" |
10 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
11 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
12 | 12 |
13 using cc::CheckerboardDrawQuad; | 13 using cc::CheckerboardDrawQuad; |
14 using cc::DelegatedFrameData; | 14 using cc::DelegatedFrameData; |
15 using cc::DebugBorderDrawQuad; | 15 using cc::DebugBorderDrawQuad; |
16 using cc::DrawQuad; | 16 using cc::DrawQuad; |
17 using cc::IOSurfaceDrawQuad; | 17 using cc::IOSurfaceDrawQuad; |
18 using cc::RenderPass; | 18 using cc::RenderPass; |
19 using cc::RenderPassDrawQuad; | 19 using cc::RenderPassDrawQuad; |
20 using cc::ResourceProvider; | 20 using cc::ResourceProvider; |
21 using cc::SharedQuadState; | 21 using cc::SharedQuadState; |
22 using cc::SolidColorDrawQuad; | 22 using cc::SolidColorDrawQuad; |
23 using cc::TextureDrawQuad; | 23 using cc::TextureDrawQuad; |
24 using cc::TileDrawQuad; | 24 using cc::TileDrawQuad; |
25 using cc::TransferableResource; | 25 using cc::TransferableResource; |
26 using cc::StreamVideoDrawQuad; | 26 using cc::StreamVideoDrawQuad; |
27 using cc::VideoLayerImpl; | 27 using cc::VideoLayerImpl; |
28 using cc::YUVVideoDrawQuad; | 28 using cc::YUVVideoDrawQuad; |
| 29 using cc::YUVAVideoDrawQuad; |
29 using gfx::Transform; | 30 using gfx::Transform; |
30 using WebKit::WebFilterOperation; | 31 using WebKit::WebFilterOperation; |
31 using WebKit::WebFilterOperations; | 32 using WebKit::WebFilterOperations; |
32 | 33 |
33 namespace content { | 34 namespace content { |
34 namespace { | 35 namespace { |
35 | 36 |
36 class CCMessagesTest : public testing::Test { | 37 class CCMessagesTest : public testing::Test { |
37 protected: | 38 protected: |
38 void Compare(const RenderPass* a, const RenderPass* b) { | 39 void Compare(const RenderPass* a, const RenderPass* b) { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 SolidColorDrawQuad::MaterialCast(b)); | 94 SolidColorDrawQuad::MaterialCast(b)); |
94 break; | 95 break; |
95 case DrawQuad::STREAM_VIDEO_CONTENT: | 96 case DrawQuad::STREAM_VIDEO_CONTENT: |
96 Compare(StreamVideoDrawQuad::MaterialCast(a), | 97 Compare(StreamVideoDrawQuad::MaterialCast(a), |
97 StreamVideoDrawQuad::MaterialCast(b)); | 98 StreamVideoDrawQuad::MaterialCast(b)); |
98 break; | 99 break; |
99 case DrawQuad::YUV_VIDEO_CONTENT: | 100 case DrawQuad::YUV_VIDEO_CONTENT: |
100 Compare(YUVVideoDrawQuad::MaterialCast(a), | 101 Compare(YUVVideoDrawQuad::MaterialCast(a), |
101 YUVVideoDrawQuad::MaterialCast(b)); | 102 YUVVideoDrawQuad::MaterialCast(b)); |
102 break; | 103 break; |
| 104 case DrawQuad::YUVA_VIDEO_CONTENT: |
| 105 Compare(YUVAVideoDrawQuad::MaterialCast(a), |
| 106 YUVAVideoDrawQuad::MaterialCast(b)); |
| 107 break; |
103 case DrawQuad::INVALID: | 108 case DrawQuad::INVALID: |
104 break; | 109 break; |
105 } | 110 } |
106 } | 111 } |
107 | 112 |
108 void Compare(const CheckerboardDrawQuad* a, const CheckerboardDrawQuad* b) { | 113 void Compare(const CheckerboardDrawQuad* a, const CheckerboardDrawQuad* b) { |
109 EXPECT_EQ(a->color, b->color); | 114 EXPECT_EQ(a->color, b->color); |
110 } | 115 } |
111 | 116 |
112 void Compare(const DebugBorderDrawQuad* a, const DebugBorderDrawQuad* b) { | 117 void Compare(const DebugBorderDrawQuad* a, const DebugBorderDrawQuad* b) { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 EXPECT_EQ(a->y_plane.size.ToString(), b->y_plane.size.ToString()); | 174 EXPECT_EQ(a->y_plane.size.ToString(), b->y_plane.size.ToString()); |
170 EXPECT_EQ(a->y_plane.format, b->y_plane.format); | 175 EXPECT_EQ(a->y_plane.format, b->y_plane.format); |
171 EXPECT_EQ(a->u_plane.resourceId, b->u_plane.resourceId); | 176 EXPECT_EQ(a->u_plane.resourceId, b->u_plane.resourceId); |
172 EXPECT_EQ(a->u_plane.size.ToString(), b->u_plane.size.ToString()); | 177 EXPECT_EQ(a->u_plane.size.ToString(), b->u_plane.size.ToString()); |
173 EXPECT_EQ(a->u_plane.format, b->u_plane.format); | 178 EXPECT_EQ(a->u_plane.format, b->u_plane.format); |
174 EXPECT_EQ(a->v_plane.resourceId, b->v_plane.resourceId); | 179 EXPECT_EQ(a->v_plane.resourceId, b->v_plane.resourceId); |
175 EXPECT_EQ(a->v_plane.size.ToString(), b->v_plane.size.ToString()); | 180 EXPECT_EQ(a->v_plane.size.ToString(), b->v_plane.size.ToString()); |
176 EXPECT_EQ(a->v_plane.format, b->v_plane.format); | 181 EXPECT_EQ(a->v_plane.format, b->v_plane.format); |
177 } | 182 } |
178 | 183 |
| 184 void Compare(const YUVAVideoDrawQuad* a, const YUVAVideoDrawQuad* b) { |
| 185 EXPECT_EQ(a->tex_scale, b->tex_scale); |
| 186 EXPECT_EQ(a->y_plane.resourceId, b->y_plane.resourceId); |
| 187 EXPECT_EQ(a->y_plane.size.ToString(), b->y_plane.size.ToString()); |
| 188 EXPECT_EQ(a->y_plane.format, b->y_plane.format); |
| 189 EXPECT_EQ(a->u_plane.resourceId, b->u_plane.resourceId); |
| 190 EXPECT_EQ(a->u_plane.size.ToString(), b->u_plane.size.ToString()); |
| 191 EXPECT_EQ(a->u_plane.format, b->u_plane.format); |
| 192 EXPECT_EQ(a->v_plane.resourceId, b->v_plane.resourceId); |
| 193 EXPECT_EQ(a->v_plane.size.ToString(), b->v_plane.size.ToString()); |
| 194 EXPECT_EQ(a->v_plane.format, b->v_plane.format); |
| 195 EXPECT_EQ(a->a_plane.resourceId, b->a_plane.resourceId); |
| 196 EXPECT_EQ(a->a_plane.size.ToString(), b->a_plane.size.ToString()); |
| 197 EXPECT_EQ(a->a_plane.format, b->a_plane.format); |
| 198 } |
| 199 |
179 void Compare(const TransferableResource& a, const TransferableResource& b) { | 200 void Compare(const TransferableResource& a, const TransferableResource& b) { |
180 EXPECT_EQ(a.id, b.id); | 201 EXPECT_EQ(a.id, b.id); |
181 EXPECT_EQ(a.format, b.format); | 202 EXPECT_EQ(a.format, b.format); |
182 EXPECT_EQ(a.size.ToString(), b.size.ToString()); | 203 EXPECT_EQ(a.size.ToString(), b.size.ToString()); |
183 for (size_t i = 0; i < arraysize(a.mailbox.name); ++i) | 204 for (size_t i = 0; i < arraysize(a.mailbox.name); ++i) |
184 EXPECT_EQ(a.mailbox.name[i], b.mailbox.name[i]); | 205 EXPECT_EQ(a.mailbox.name[i], b.mailbox.name[i]); |
185 } | 206 } |
186 }; | 207 }; |
187 | 208 |
188 TEST_F(CCMessagesTest, AllQuads) { | 209 TEST_F(CCMessagesTest, AllQuads) { |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 EXPECT_EQ(arbitrary_size.ToString(), frame_out.size.ToString()); | 559 EXPECT_EQ(arbitrary_size.ToString(), frame_out.size.ToString()); |
539 EXPECT_EQ(arbitrary_uint, frame_out.resource_list.sync_point); | 560 EXPECT_EQ(arbitrary_uint, frame_out.resource_list.sync_point); |
540 | 561 |
541 EXPECT_EQ(2u, frame_out.resource_list.resources.size()); | 562 EXPECT_EQ(2u, frame_out.resource_list.resources.size()); |
542 Compare(arbitrary_resource1, frame_out.resource_list.resources[0]); | 563 Compare(arbitrary_resource1, frame_out.resource_list.resources[0]); |
543 Compare(arbitrary_resource2, frame_out.resource_list.resources[1]); | 564 Compare(arbitrary_resource2, frame_out.resource_list.resources[1]); |
544 } | 565 } |
545 | 566 |
546 } // namespace | 567 } // namespace |
547 } // namespace content | 568 } // namespace content |
OLD | NEW |