Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Side by Side Diff: ui/ozone/platform/drm/test/mock_drm_device.cc

Issue 1119113004: Reland "Load and apply a vcgt table from an ICC file to the internal display" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@vcgt-rebase
Patch Set: Add third_party/qcms to ash BUILD.gn Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/ozone/platform/drm/test/mock_drm_device.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 const PageFlipCallback& callback) { 239 const PageFlipCallback& callback) {
240 return false; 240 return false;
241 } 241 }
242 242
243 bool MockDrmDevice::SetGammaRamp(uint32_t crtc_id,
244 const std::vector<GammaRampRGBEntry>& lut) {
245 return true;
246 }
247
243 void MockDrmDevice::RunCallbacks() { 248 void MockDrmDevice::RunCallbacks() {
244 while (!callbacks_.empty()) { 249 while (!callbacks_.empty()) {
245 PageFlipCallback callback = callbacks_.front(); 250 PageFlipCallback callback = callbacks_.front();
246 callbacks_.pop(); 251 callbacks_.pop();
247 callback.Run(0, 0, 0); 252 callback.Run(0, 0, 0);
248 } 253 }
249 } 254 }
250 255
251 } // namespace ui 256 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/platform/drm/test/mock_drm_device.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698