| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/output/compositor_frame.h" | 5 #include "cc/output/compositor_frame.h" |
| 6 #include "cc/quads/render_pass.h" | 6 #include "cc/quads/render_pass.h" |
| 7 #include "cc/quads/solid_color_draw_quad.h" | 7 #include "cc/quads/solid_color_draw_quad.h" |
| 8 #include "cc/quads/surface_draw_quad.h" | 8 #include "cc/quads/surface_draw_quad.h" |
| 9 #include "cc/surfaces/surface.h" | 9 #include "cc/surfaces/surface.h" |
| 10 #include "cc/surfaces/surface_aggregator.h" | 10 #include "cc/surfaces/surface_aggregator.h" |
| 11 #include "cc/surfaces/surface_factory.h" | 11 #include "cc/surfaces/surface_factory.h" |
| 12 #include "cc/surfaces/surface_factory_client.h" | 12 #include "cc/surfaces/surface_factory_client.h" |
| 13 #include "cc/surfaces/surface_id_allocator.h" | 13 #include "cc/surfaces/surface_id_allocator.h" |
| 14 #include "cc/surfaces/surface_manager.h" | 14 #include "cc/surfaces/surface_manager.h" |
| 15 #include "cc/test/pixel_comparator.h" | 15 #include "cc/test/pixel_comparator.h" |
| 16 #include "cc/test/pixel_test.h" | 16 #include "cc/test/pixel_test.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 18 |
| 19 #if !defined(OS_ANDROID) | 19 #if !defined(OS_ANDROID) |
| 20 | 20 |
| 21 namespace cc { | 21 namespace cc { |
| 22 namespace { | 22 namespace { |
| 23 | 23 |
| 24 static constexpr uint32_t kArbitraryGpuId = 0; |
| 25 static constexpr uint32_t kArbitraryClientId = 1u; |
| 26 |
| 24 class EmptySurfaceFactoryClient : public SurfaceFactoryClient { | 27 class EmptySurfaceFactoryClient : public SurfaceFactoryClient { |
| 25 public: | 28 public: |
| 26 void ReturnResources(const ReturnedResourceArray& resources) override {} | 29 void ReturnResources(const ReturnedResourceArray& resources) override {} |
| 27 void SetBeginFrameSource(BeginFrameSource* begin_frame_source) override {} | 30 void SetBeginFrameSource(BeginFrameSource* begin_frame_source) override {} |
| 28 }; | 31 }; |
| 29 | 32 |
| 30 class SurfacesPixelTest : public RendererPixelTest<GLRenderer> { | 33 class SurfacesPixelTest : public RendererPixelTest<GLRenderer> { |
| 31 public: | 34 public: |
| 32 SurfacesPixelTest() : allocator_(1u), factory_(&manager_, &client_) {} | 35 SurfacesPixelTest() |
| 36 : allocator_(kArbitraryGpuId, kArbitraryClientId), |
| 37 factory_(&manager_, &client_) {} |
| 33 | 38 |
| 34 protected: | 39 protected: |
| 35 SurfaceManager manager_; | 40 SurfaceManager manager_; |
| 36 SurfaceIdAllocator allocator_; | 41 SurfaceIdAllocator allocator_; |
| 37 EmptySurfaceFactoryClient client_; | 42 EmptySurfaceFactoryClient client_; |
| 38 SurfaceFactory factory_; | 43 SurfaceFactory factory_; |
| 39 }; | 44 }; |
| 40 | 45 |
| 41 SharedQuadState* CreateAndAppendTestSharedQuadState( | 46 SharedQuadState* CreateAndAppendTestSharedQuadState( |
| 42 RenderPass* render_pass, | 47 RenderPass* render_pass, |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 | 334 |
| 330 factory_.Destroy(root_surface_id); | 335 factory_.Destroy(root_surface_id); |
| 331 factory_.Destroy(left_child_id); | 336 factory_.Destroy(left_child_id); |
| 332 factory_.Destroy(right_child_id); | 337 factory_.Destroy(right_child_id); |
| 333 } | 338 } |
| 334 | 339 |
| 335 } // namespace | 340 } // namespace |
| 336 } // namespace cc | 341 } // namespace cc |
| 337 | 342 |
| 338 #endif // !defined(OS_ANDROID) | 343 #endif // !defined(OS_ANDROID) |
| OLD | NEW |