| 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/test/test_context_support.h" | 5 #include "cc/test/test_context_support.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 | 9 |
| 10 namespace cc { | 10 namespace cc { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 set_visible_callback_ = set_visible_callback; | 53 set_visible_callback_ = set_visible_callback; |
| 54 } | 54 } |
| 55 | 55 |
| 56 void TestContextSupport::SetScheduleOverlayPlaneCallback( | 56 void TestContextSupport::SetScheduleOverlayPlaneCallback( |
| 57 const ScheduleOverlayPlaneCallback& schedule_overlay_plane_callback) { | 57 const ScheduleOverlayPlaneCallback& schedule_overlay_plane_callback) { |
| 58 schedule_overlay_plane_callback_ = schedule_overlay_plane_callback; | 58 schedule_overlay_plane_callback_ = schedule_overlay_plane_callback; |
| 59 } | 59 } |
| 60 | 60 |
| 61 void TestContextSupport::Swap() { | 61 void TestContextSupport::Swap() { |
| 62 last_swap_type_ = SWAP; | 62 last_swap_type_ = SWAP; |
| 63 base::MessageLoop::current()->PostTask( | |
| 64 FROM_HERE, base::Bind(&TestContextSupport::OnSwapBuffersComplete, | |
| 65 weak_ptr_factory_.GetWeakPtr())); | |
| 66 } | 63 } |
| 67 | 64 |
| 68 uint32 TestContextSupport::InsertFutureSyncPointCHROMIUM() { | 65 uint32 TestContextSupport::InsertFutureSyncPointCHROMIUM() { |
| 69 NOTIMPLEMENTED(); | 66 NOTIMPLEMENTED(); |
| 70 return 0; | 67 return 0; |
| 71 } | 68 } |
| 72 | 69 |
| 73 void TestContextSupport::RetireSyncPointCHROMIUM(uint32 sync_point) { | 70 void TestContextSupport::RetireSyncPointCHROMIUM(uint32 sync_point) { |
| 74 NOTIMPLEMENTED(); | 71 NOTIMPLEMENTED(); |
| 75 } | 72 } |
| 76 | 73 |
| 77 void TestContextSupport::PartialSwapBuffers(const gfx::Rect& sub_buffer) { | 74 void TestContextSupport::PartialSwapBuffers(const gfx::Rect& sub_buffer) { |
| 78 last_swap_type_ = PARTIAL_SWAP; | 75 last_swap_type_ = PARTIAL_SWAP; |
| 79 last_partial_swap_rect_ = sub_buffer; | 76 last_partial_swap_rect_ = sub_buffer; |
| 80 base::MessageLoop::current()->PostTask( | |
| 81 FROM_HERE, base::Bind(&TestContextSupport::OnSwapBuffersComplete, | |
| 82 weak_ptr_factory_.GetWeakPtr())); | |
| 83 } | 77 } |
| 84 | 78 |
| 85 void TestContextSupport::ScheduleOverlayPlane( | 79 void TestContextSupport::ScheduleOverlayPlane( |
| 86 int plane_z_order, | 80 int plane_z_order, |
| 87 gfx::OverlayTransform plane_transform, | 81 gfx::OverlayTransform plane_transform, |
| 88 unsigned overlay_texture_id, | 82 unsigned overlay_texture_id, |
| 89 const gfx::Rect& display_bounds, | 83 const gfx::Rect& display_bounds, |
| 90 const gfx::RectF& uv_rect) { | 84 const gfx::RectF& uv_rect) { |
| 91 if (!schedule_overlay_plane_callback_.is_null()) { | 85 if (!schedule_overlay_plane_callback_.is_null()) { |
| 92 schedule_overlay_plane_callback_.Run(plane_z_order, | 86 schedule_overlay_plane_callback_.Run(plane_z_order, |
| 93 plane_transform, | 87 plane_transform, |
| 94 overlay_texture_id, | 88 overlay_texture_id, |
| 95 display_bounds, | 89 display_bounds, |
| 96 uv_rect); | 90 uv_rect); |
| 97 } | 91 } |
| 98 } | 92 } |
| 99 | 93 |
| 100 void TestContextSupport::SetSwapBuffersCompleteCallback( | |
| 101 const base::Closure& callback) { | |
| 102 swap_buffers_complete_callback_ = callback; | |
| 103 } | |
| 104 | |
| 105 void TestContextSupport::OnSwapBuffersComplete() { | |
| 106 if (!swap_buffers_complete_callback_.is_null()) | |
| 107 swap_buffers_complete_callback_.Run(); | |
| 108 } | |
| 109 | |
| 110 } // namespace cc | 94 } // namespace cc |
| OLD | NEW |