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/drm/test/mock_drm_device.h" | 5 #include "ui/ozone/platform/drm/test/mock_drm_device.h" |
6 | 6 |
7 #include <xf86drm.h> | 7 #include <xf86drm.h> |
8 #include <xf86drmMode.h> | 8 #include <xf86drmMode.h> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 bool MockDrmDevice::UnmapDumbBuffer(void* pixels, size_t size) { | 229 bool MockDrmDevice::UnmapDumbBuffer(void* pixels, size_t size) { |
230 return true; | 230 return true; |
231 } | 231 } |
232 | 232 |
233 bool MockDrmDevice::CloseBufferHandle(uint32_t handle) { | 233 bool MockDrmDevice::CloseBufferHandle(uint32_t handle) { |
234 return true; | 234 return true; |
235 } | 235 } |
236 | 236 |
237 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties, | 237 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties, |
238 uint32_t flags, | 238 uint32_t flags, |
| 239 bool is_sync, |
239 const PageFlipCallback& callback) { | 240 const PageFlipCallback& callback) { |
240 return false; | 241 return false; |
241 } | 242 } |
242 | 243 |
243 bool MockDrmDevice::SetGammaRamp(uint32_t crtc_id, | 244 bool MockDrmDevice::SetGammaRamp(uint32_t crtc_id, |
244 const std::vector<GammaRampRGBEntry>& lut) { | 245 const std::vector<GammaRampRGBEntry>& lut) { |
245 return true; | 246 return true; |
246 } | 247 } |
247 | 248 |
248 void MockDrmDevice::RunCallbacks() { | 249 void MockDrmDevice::RunCallbacks() { |
249 while (!callbacks_.empty()) { | 250 while (!callbacks_.empty()) { |
250 PageFlipCallback callback = callbacks_.front(); | 251 PageFlipCallback callback = callbacks_.front(); |
251 callbacks_.pop(); | 252 callbacks_.pop(); |
252 callback.Run(0, 0, 0); | 253 callback.Run(0, 0, 0); |
253 } | 254 } |
254 } | 255 } |
255 | 256 |
256 } // namespace ui | 257 } // namespace ui |
OLD | NEW |