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

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

Issue 1028563003: Load and apply a vcgt table from an ICC file to the internal display (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix spang/oshima nits 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
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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 void* pixels) { 218 void* pixels) {
219 delete[] static_cast<char*>(pixels); 219 delete[] static_cast<char*>(pixels);
220 } 220 }
221 221
222 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties, 222 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties,
223 uint32_t flags, 223 uint32_t flags,
224 const PageFlipCallback& callback) { 224 const PageFlipCallback& callback) {
225 return false; 225 return false;
226 } 226 }
227 227
228 bool MockDrmDevice::SetGammaRamp(uint32_t crtc_id,
229 const std::vector<uint16_t>& r,
230 const std::vector<uint16_t>& g,
231 const std::vector<uint16_t>& b) {
232 return true;
233 }
234
228 void MockDrmDevice::RunCallbacks() { 235 void MockDrmDevice::RunCallbacks() {
229 while (!callbacks_.empty()) { 236 while (!callbacks_.empty()) {
230 PageFlipCallback callback = callbacks_.front(); 237 PageFlipCallback callback = callbacks_.front();
231 callbacks_.pop(); 238 callbacks_.pop();
232 callback.Run(0, 0, 0); 239 callback.Run(0, 0, 0);
233 } 240 }
234 } 241 }
235 242
236 } // namespace ui 243 } // namespace ui
OLDNEW
« ui/ozone/common/gpu/ozone_gpu_messages.h ('K') | « 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