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" |
11 | 11 |
12 namespace gfx { | 12 namespace gfx { |
13 class Rect; | 13 class Rect; |
14 class Transform; | 14 class Transform; |
15 } | 15 } |
16 | 16 |
17 namespace WebKitTests { | |
18 class TestRenderPass; | |
19 } | |
20 | |
21 namespace cc { | 17 namespace cc { |
22 | 18 |
23 class SolidColorDrawQuad; | 19 class SolidColorDrawQuad; |
| 20 class TestRenderPass; |
24 | 21 |
25 // Adds a new render pass with the provided properties to the given | 22 // Adds a new render pass with the provided properties to the given |
26 // render pass list. | 23 // render pass list. |
27 WebKitTests::TestRenderPass* addRenderPass( | 24 TestRenderPass* addRenderPass( |
28 ScopedPtrVector<RenderPass>& passList, | 25 ScopedPtrVector<RenderPass>& passList, |
29 RenderPass::Id id, | 26 RenderPass::Id id, |
30 const gfx::Rect& outputRect, | 27 const gfx::Rect& outputRect, |
31 const gfx::Transform& rootTransform); | 28 const gfx::Transform& rootTransform); |
32 | 29 |
33 // Adds a solid quad to a given render pass. | 30 // Adds a solid quad to a given render pass. |
34 SolidColorDrawQuad* addQuad(WebKitTests::TestRenderPass* pass, | 31 SolidColorDrawQuad* addQuad(TestRenderPass* pass, |
35 const gfx::Rect& rect, | 32 const gfx::Rect& rect, |
36 SkColor color); | 33 SkColor color); |
37 | 34 |
38 // Adds a render pass quad to an existing render pass. | 35 // Adds a render pass quad to an existing render pass. |
39 void addRenderPassQuad(WebKitTests::TestRenderPass* toPass, | 36 void addRenderPassQuad(TestRenderPass* toPass, |
40 WebKitTests::TestRenderPass* contributingPass); | 37 TestRenderPass* contributingPass); |
41 | 38 |
42 } // namespace cc | 39 } // namespace cc |
43 | 40 |
44 #endif // CC_TEST_RENDER_PASS_TEST_UTILS_H_ | 41 #endif // CC_TEST_RENDER_PASS_TEST_UTILS_H_ |
OLD | NEW |