OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "cc/layers/append_quads_data.h" | 5 #include "cc/layers/append_quads_data.h" |
6 #include "cc/layers/content_layer_client.h" | 6 #include "cc/layers/content_layer_client.h" |
7 #include "cc/layers/picture_layer.h" | 7 #include "cc/layers/picture_layer.h" |
8 #include "cc/layers/picture_layer_impl.h" | 8 #include "cc/layers/picture_layer_impl.h" |
9 #include "cc/quads/draw_quad.h" | 9 #include "cc/quads/draw_quad.h" |
10 #include "cc/test/layer_tree_pixel_test.h" | 10 #include "cc/test/layer_tree_pixel_test.h" |
(...skipping 27 matching lines...) Expand all Loading... |
38 // in the active tree. | 38 // in the active tree. |
39 PictureLayerImpl* picture_layer = static_cast<PictureLayerImpl*>( | 39 PictureLayerImpl* picture_layer = static_cast<PictureLayerImpl*>( |
40 host_impl->active_tree()->root_layer()->child_at(0)); | 40 host_impl->active_tree()->root_layer()->child_at(0)); |
41 | 41 |
42 scoped_ptr<RenderPass> render_pass = RenderPass::Create(); | 42 scoped_ptr<RenderPass> render_pass = RenderPass::Create(); |
43 | 43 |
44 AppendQuadsData data; | 44 AppendQuadsData data; |
45 picture_layer->AppendQuads(render_pass.get(), Occlusion(), &data); | 45 picture_layer->AppendQuads(render_pass.get(), Occlusion(), &data); |
46 | 46 |
47 for (const auto& quad : render_pass->quad_list) | 47 for (const auto& quad : render_pass->quad_list) |
48 EXPECT_EQ(quad.material, DrawQuad::PICTURE_CONTENT); | 48 EXPECT_EQ(quad->material, DrawQuad::PICTURE_CONTENT); |
49 | 49 |
50 // Triggers pixel readback and ends the test. | 50 // Triggers pixel readback and ends the test. |
51 LayerTreePixelTest::SwapBuffersOnThread(host_impl, result); | 51 LayerTreePixelTest::SwapBuffersOnThread(host_impl, result); |
52 } | 52 } |
53 | 53 |
54 void RunOnDemandRasterPixelTest(); | 54 void RunOnDemandRasterPixelTest(); |
55 }; | 55 }; |
56 | 56 |
57 class BlueYellowLayerClient : public ContentLayerClient { | 57 class BlueYellowLayerClient : public ContentLayerClient { |
58 public: | 58 public: |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 116 |
117 TEST_F(LayerTreeHostOnDemandRasterPixelTestWithGpuRasterizationForced, | 117 TEST_F(LayerTreeHostOnDemandRasterPixelTestWithGpuRasterizationForced, |
118 RasterPictureLayer) { | 118 RasterPictureLayer) { |
119 RunOnDemandRasterPixelTest(); | 119 RunOnDemandRasterPixelTest(); |
120 } | 120 } |
121 | 121 |
122 } // namespace | 122 } // namespace |
123 } // namespace cc | 123 } // namespace cc |
124 | 124 |
125 #endif // OS_ANDROID | 125 #endif // OS_ANDROID |
OLD | NEW |