OLD | NEW |
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 #ifndef CC_TEST_RENDER_PASS_TEST_UTILS_H_ | 5 #ifndef CC_TEST_RENDER_PASS_TEST_UTILS_H_ |
6 #define CC_TEST_RENDER_PASS_TEST_UTILS_H_ | 6 #define CC_TEST_RENDER_PASS_TEST_UTILS_H_ |
7 | 7 |
8 #include "cc/render_pass.h" | 8 #include "cc/render_pass.h" |
9 #include "cc/scoped_ptr_vector.h" | 9 #include "cc/scoped_ptr_vector.h" |
10 #include "third_party/skia/include/core/SkColor.h" | 10 #include "third_party/skia/include/core/SkColor.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 RenderPassList& passList, | 25 RenderPassList& passList, |
26 RenderPass::Id id, | 26 RenderPass::Id id, |
27 const gfx::Rect& outputRect, | 27 const gfx::Rect& outputRect, |
28 const gfx::Transform& rootTransform); | 28 const gfx::Transform& rootTransform); |
29 | 29 |
30 // Adds a solid quad to a given render pass. | 30 // Adds a solid quad to a given render pass. |
31 SolidColorDrawQuad* addQuad(TestRenderPass* pass, | 31 SolidColorDrawQuad* addQuad(TestRenderPass* pass, |
32 const gfx::Rect& rect, | 32 const gfx::Rect& rect, |
33 SkColor color); | 33 SkColor color); |
34 | 34 |
| 35 // Adds a solid quad to a given render pass and sets is_clipped=true. |
| 36 SolidColorDrawQuad* addClippedQuad(TestRenderPass* pass, |
| 37 const gfx::Rect& rect, |
| 38 SkColor color); |
| 39 |
35 // Adds a render pass quad to an existing render pass. | 40 // Adds a render pass quad to an existing render pass. |
36 void addRenderPassQuad(TestRenderPass* toPass, | 41 void addRenderPassQuad(TestRenderPass* toPass, |
37 TestRenderPass* contributingPass); | 42 TestRenderPass* contributingPass); |
38 | 43 |
39 } // namespace cc | 44 } // namespace cc |
40 | 45 |
41 #endif // CC_TEST_RENDER_PASS_TEST_UTILS_H_ | 46 #endif // CC_TEST_RENDER_PASS_TEST_UTILS_H_ |
OLD | NEW |