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 #include "cc/output/gl_renderer.h" | 5 #include "cc/output/gl_renderer.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "cc/base/math_util.h" | 9 #include "cc/base/math_util.h" |
10 #include "cc/output/compositor_frame_metadata.h" | 10 #include "cc/output/compositor_frame_metadata.h" |
11 #include "cc/resources/prioritized_resource_manager.h" | 11 #include "cc/resources/prioritized_resource_manager.h" |
12 #include "cc/resources/resource_provider.h" | 12 #include "cc/resources/resource_provider.h" |
13 #include "cc/test/fake_impl_proxy.h" | 13 #include "cc/test/fake_impl_proxy.h" |
14 #include "cc/test/fake_layer_tree_host_impl.h" | 14 #include "cc/test/fake_layer_tree_host_impl.h" |
15 #include "cc/test/fake_output_surface.h" | 15 #include "cc/test/fake_output_surface.h" |
16 #include "cc/test/fake_output_surface_client.h" | 16 #include "cc/test/fake_output_surface_client.h" |
17 #include "cc/test/fake_renderer_client.h" | 17 #include "cc/test/fake_renderer_client.h" |
18 #include "cc/test/mock_quad_culler.h" | |
19 #include "cc/test/pixel_test.h" | 18 #include "cc/test/pixel_test.h" |
20 #include "cc/test/render_pass_test_common.h" | 19 #include "cc/test/render_pass_test_common.h" |
21 #include "cc/test/render_pass_test_utils.h" | 20 #include "cc/test/render_pass_test_utils.h" |
22 #include "cc/test/test_shared_bitmap_manager.h" | 21 #include "cc/test/test_shared_bitmap_manager.h" |
23 #include "cc/test/test_web_graphics_context_3d.h" | 22 #include "cc/test/test_web_graphics_context_3d.h" |
24 #include "gpu/GLES2/gl2extchromium.h" | 23 #include "gpu/GLES2/gl2extchromium.h" |
25 #include "gpu/command_buffer/client/context_support.h" | 24 #include "gpu/command_buffer/client/context_support.h" |
26 #include "testing/gmock/include/gmock/gmock.h" | 25 #include "testing/gmock/include/gmock/gmock.h" |
27 #include "testing/gtest/include/gtest/gtest.h" | 26 #include "testing/gtest/include/gtest/gtest.h" |
28 #include "third_party/khronos/GLES2/gl2.h" | 27 #include "third_party/khronos/GLES2/gl2.h" |
(...skipping 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1758 base::MessageLoop::current()->Run(); | 1757 base::MessageLoop::current()->Run(); |
1759 | 1758 |
1760 // The sync point should have happened. | 1759 // The sync point should have happened. |
1761 EXPECT_EQ(1, sync_point_callback_count); | 1760 EXPECT_EQ(1, sync_point_callback_count); |
1762 EXPECT_EQ(1, other_callback_count); | 1761 EXPECT_EQ(1, other_callback_count); |
1763 } | 1762 } |
1764 #endif // OS_ANDROID | 1763 #endif // OS_ANDROID |
1765 | 1764 |
1766 } // namespace | 1765 } // namespace |
1767 } // namespace cc | 1766 } // namespace cc |
OLD | NEW |