Chromium Code Reviews| Index: cc/test/render_pass_test_common.cc |
| diff --git a/cc/test/render_pass_test_common.cc b/cc/test/render_pass_test_common.cc |
| index 8b479fcc8cba22367c4b85ae8bcd159b73fa2e67..851dc57b9e87fd72f37477c93ea1bcd511b03ca7 100644 |
| --- a/cc/test/render_pass_test_common.cc |
| +++ b/cc/test/render_pass_test_common.cc |
| @@ -245,9 +245,10 @@ void TestRenderPass::AppendOneOfEveryQuadType( |
| YUVVideoDrawQuad* yuv_quad = |
| this->CreateAndAppendDrawQuad<YUVVideoDrawQuad>(); |
| yuv_quad->SetNew(shared_state2, rect, opaque_rect, visible_rect, |
| - gfx::RectF(0, 0, 100, 100), gfx::Size(100, 100), |
| - gfx::Size(50, 50), plane_resources[0], plane_resources[1], |
| - plane_resources[2], plane_resources[3], color_space); |
| + gfx::RectF(0, 0, 100, 100), gfx::RectF(0, 0, 50, 50), |
|
danakj
2015/05/12 16:47:41
float literals should be written with f suffix
reveman
2015/05/12 17:09:36
Done.
fyi, this file is not very consistent in th
|
| + gfx::Size(100, 100), gfx::Size(50, 50), plane_resources[0], |
| + plane_resources[1], plane_resources[2], plane_resources[3], |
| + color_space); |
| } |
| } // namespace cc |