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 "ui/ozone/platform/dri/gbm_surfaceless.h" | 5 #include "ui/ozone/platform/dri/gbm_surfaceless.h" |
6 | 6 |
7 #include "ui/ozone/platform/dri/dri_vsync_provider.h" | 7 #include "ui/ozone/platform/dri/dri_vsync_provider.h" |
8 #include "ui/ozone/platform/dri/dri_window_delegate.h" | 8 #include "ui/ozone/platform/dri/dri_window_delegate.h" |
9 #include "ui/ozone/platform/dri/gbm_buffer.h" | 9 #include "ui/ozone/platform/dri/gbm_buffer.h" |
10 #include "ui/ozone/platform/dri/hardware_display_controller.h" | 10 #include "ui/ozone/platform/dri/hardware_display_controller.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 HardwareDisplayController* controller = window_delegate_->GetController(); | 31 HardwareDisplayController* controller = window_delegate_->GetController(); |
32 if (!controller) | 32 if (!controller) |
33 return true; | 33 return true; |
34 | 34 |
35 bool success = controller->SchedulePageFlip(); | 35 bool success = controller->SchedulePageFlip(); |
36 controller->WaitForPageFlipEvent(); | 36 controller->WaitForPageFlipEvent(); |
37 | 37 |
38 return success; | 38 return success; |
39 } | 39 } |
40 | 40 |
| 41 bool GbmSurfaceless::OnSwapBuffersAsync( |
| 42 const SwapCompletionCallback& callback) { |
| 43 bool success = OnSwapBuffers(); |
| 44 callback.Run(); |
| 45 return success; |
| 46 } |
| 47 |
41 scoped_ptr<gfx::VSyncProvider> GbmSurfaceless::CreateVSyncProvider() { | 48 scoped_ptr<gfx::VSyncProvider> GbmSurfaceless::CreateVSyncProvider() { |
42 return scoped_ptr<gfx::VSyncProvider>(new DriVSyncProvider(window_delegate_)); | 49 return scoped_ptr<gfx::VSyncProvider>(new DriVSyncProvider(window_delegate_)); |
43 } | 50 } |
44 | 51 |
45 } // namespace ui | 52 } // namespace ui |
OLD | NEW |