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

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

Issue 1182063002: Add support for more advanced color correction (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@qcms-fixed-point-gamma
Patch Set: Rebase after quirks changes Created 4 years, 8 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/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
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 bool MockDrmDevice::SetColorCorrection(
232 uint32_t crtc_id,
233 const std::vector<GammaRampRGBEntry>& degamma_lut,
234 const std::vector<GammaRampRGBEntry>& gamma_lut,
235 const std::vector<float>& correction_matrix) {
236 return true;
237 }
238
231 bool MockDrmDevice::SetCapability(uint64_t capability, uint64_t value) { 239 bool MockDrmDevice::SetCapability(uint64_t capability, uint64_t value) {
232 return false; 240 return false;
233 } 241 }
234 242
235 void MockDrmDevice::RunCallbacks() { 243 void MockDrmDevice::RunCallbacks() {
236 while (!callbacks_.empty()) { 244 while (!callbacks_.empty()) {
237 PageFlipCallback callback = callbacks_.front(); 245 PageFlipCallback callback = callbacks_.front();
238 callbacks_.pop(); 246 callbacks_.pop();
239 callback.Run(0, 0, 0); 247 callback.Run(0, 0, 0);
240 } 248 }
241 } 249 }
242 250
243 } // namespace ui 251 } // namespace ui
OLDNEW
« no previous file with comments | « ui/ozone/platform/drm/gpu/mock_drm_device.h ('k') | ui/ozone/platform/drm/host/drm_display_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698