| 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 #ifndef CC_TEST_TEST_CONTEXT_SUPPORT_H_ | 5 #ifndef CC_TEST_TEST_CONTEXT_SUPPORT_H_ |
| 6 #define CC_TEST_TEST_CONTEXT_SUPPORT_H_ | 6 #define CC_TEST_TEST_CONTEXT_SUPPORT_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "gpu/command_buffer/client/context_support.h" | 11 #include "gpu/command_buffer/client/context_support.h" |
| 12 | 12 |
| 13 namespace cc { | 13 namespace cc { |
| 14 | 14 |
| 15 class TestContextSupport : public gpu::ContextSupport { | 15 class TestContextSupport : public gpu::ContextSupport { |
| 16 public: | 16 public: |
| 17 TestContextSupport(); | 17 TestContextSupport(); |
| 18 virtual ~TestContextSupport(); | 18 ~TestContextSupport() override; |
| 19 | 19 |
| 20 // gpu::ContextSupport implementation. | 20 // gpu::ContextSupport implementation. |
| 21 virtual void SignalSyncPoint(uint32 sync_point, | 21 void SignalSyncPoint(uint32 sync_point, |
| 22 const base::Closure& callback) override; | 22 const base::Closure& callback) override; |
| 23 virtual void SignalQuery(uint32 query, | 23 void SignalQuery(uint32 query, const base::Closure& callback) override; |
| 24 const base::Closure& callback) override; | 24 void SetSurfaceVisible(bool visible) override; |
| 25 virtual void SetSurfaceVisible(bool visible) override; | 25 void Swap() override; |
| 26 virtual void Swap() override; | 26 void PartialSwapBuffers(const gfx::Rect& sub_buffer) override; |
| 27 virtual void PartialSwapBuffers(const gfx::Rect& sub_buffer) override; | 27 uint32 InsertFutureSyncPointCHROMIUM() override; |
| 28 virtual uint32 InsertFutureSyncPointCHROMIUM() override; | 28 void RetireSyncPointCHROMIUM(uint32 sync_point) override; |
| 29 virtual void RetireSyncPointCHROMIUM(uint32 sync_point) override; | 29 void ScheduleOverlayPlane(int plane_z_order, |
| 30 virtual void ScheduleOverlayPlane(int plane_z_order, | 30 gfx::OverlayTransform plane_transform, |
| 31 gfx::OverlayTransform plane_transform, | 31 unsigned overlay_texture_id, |
| 32 unsigned overlay_texture_id, | 32 const gfx::Rect& display_bounds, |
| 33 const gfx::Rect& display_bounds, | 33 const gfx::RectF& uv_rect) override; |
| 34 const gfx::RectF& uv_rect) override; | |
| 35 | 34 |
| 36 void CallAllSyncPointCallbacks(); | 35 void CallAllSyncPointCallbacks(); |
| 37 | 36 |
| 38 typedef base::Callback<void(bool visible)> SurfaceVisibleCallback; | 37 typedef base::Callback<void(bool visible)> SurfaceVisibleCallback; |
| 39 void SetSurfaceVisibleCallback( | 38 void SetSurfaceVisibleCallback( |
| 40 const SurfaceVisibleCallback& set_visible_callback); | 39 const SurfaceVisibleCallback& set_visible_callback); |
| 41 | 40 |
| 42 typedef base::Callback<void(int plane_z_order, | 41 typedef base::Callback<void(int plane_z_order, |
| 43 gfx::OverlayTransform plane_transform, | 42 gfx::OverlayTransform plane_transform, |
| 44 unsigned overlay_texture_id, | 43 unsigned overlay_texture_id, |
| 45 const gfx::Rect& display_bounds, | 44 const gfx::Rect& display_bounds, |
| 46 const gfx::RectF& crop_rect)> | 45 const gfx::RectF& crop_rect)> |
| 47 ScheduleOverlayPlaneCallback; | 46 ScheduleOverlayPlaneCallback; |
| 48 void SetScheduleOverlayPlaneCallback( | 47 void SetScheduleOverlayPlaneCallback( |
| 49 const ScheduleOverlayPlaneCallback& schedule_overlay_plane_callback); | 48 const ScheduleOverlayPlaneCallback& schedule_overlay_plane_callback); |
| 50 | 49 |
| 51 private: | 50 private: |
| 52 std::vector<base::Closure> sync_point_callbacks_; | 51 std::vector<base::Closure> sync_point_callbacks_; |
| 53 SurfaceVisibleCallback set_visible_callback_; | 52 SurfaceVisibleCallback set_visible_callback_; |
| 54 ScheduleOverlayPlaneCallback schedule_overlay_plane_callback_; | 53 ScheduleOverlayPlaneCallback schedule_overlay_plane_callback_; |
| 55 | 54 |
| 56 base::WeakPtrFactory<TestContextSupport> weak_ptr_factory_; | 55 base::WeakPtrFactory<TestContextSupport> weak_ptr_factory_; |
| 57 | 56 |
| 58 DISALLOW_COPY_AND_ASSIGN(TestContextSupport); | 57 DISALLOW_COPY_AND_ASSIGN(TestContextSupport); |
| 59 }; | 58 }; |
| 60 | 59 |
| 61 } // namespace cc | 60 } // namespace cc |
| 62 | 61 |
| 63 #endif // CC_TEST_TEST_CONTEXT_SUPPORT_H_ | 62 #endif // CC_TEST_TEST_CONTEXT_SUPPORT_H_ |
| OLD | NEW |