| 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/gpu/mock_drm_device.h" | 5 #include "ui/ozone/platform/drm/gpu/mock_drm_device.h" |
| 6 | 6 |
| 7 #include <xf86drm.h> | 7 #include <xf86drm.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 uint32_t crtc_count, | 221 uint32_t crtc_count, |
| 222 const PageFlipCallback& callback) { | 222 const PageFlipCallback& callback) { |
| 223 return false; | 223 return false; |
| 224 } | 224 } |
| 225 | 225 |
| 226 bool MockDrmDevice::SetGammaRamp(uint32_t crtc_id, | 226 bool MockDrmDevice::SetGammaRamp(uint32_t crtc_id, |
| 227 const std::vector<GammaRampRGBEntry>& lut) { | 227 const std::vector<GammaRampRGBEntry>& lut) { |
| 228 return true; | 228 return true; |
| 229 } | 229 } |
| 230 | 230 |
| 231 #if defined(DRM_CLIENT_CAP_UNIVERSAL_PLANES) |
| 231 bool MockDrmDevice::SetCapability(uint64_t capability, uint64_t value) { | 232 bool MockDrmDevice::SetCapability(uint64_t capability, uint64_t value) { |
| 232 return false; | 233 return false; |
| 233 } | 234 } |
| 235 #endif |
| 234 | 236 |
| 235 void MockDrmDevice::RunCallbacks() { | 237 void MockDrmDevice::RunCallbacks() { |
| 236 while (!callbacks_.empty()) { | 238 while (!callbacks_.empty()) { |
| 237 PageFlipCallback callback = callbacks_.front(); | 239 PageFlipCallback callback = callbacks_.front(); |
| 238 callbacks_.pop(); | 240 callbacks_.pop(); |
| 239 callback.Run(0, 0, 0); | 241 callback.Run(0, 0, 0); |
| 240 } | 242 } |
| 241 } | 243 } |
| 242 | 244 |
| 243 } // namespace ui | 245 } // namespace ui |
| OLD | NEW |