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

Unified Diff: ui/ozone/platform/drm/mus_thread_proxy.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, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/platform/drm/mus_thread_proxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/mus_thread_proxy.cc
diff --git a/ui/ozone/platform/drm/mus_thread_proxy.cc b/ui/ozone/platform/drm/mus_thread_proxy.cc
index 0e6529e5a4fdd222469dabf6e3d3376ed57e653a..d3bacc4f7bbaec820c26766475797639ed52d6d3 100644
--- a/ui/ozone/platform/drm/mus_thread_proxy.cc
+++ b/ui/ozone/platform/drm/mus_thread_proxy.cc
@@ -274,14 +274,17 @@ bool MusThreadProxy::GpuSetHDCPState(int64_t display_id, HDCPState state) {
return true;
}
-bool MusThreadProxy::GpuSetGammaRamp(
+bool MusThreadProxy::GpuSetColorCorrection(
int64_t id,
- const std::vector<GammaRampRGBEntry>& lut) {
+ const std::vector<GammaRampRGBEntry>& degamma_lut,
+ const std::vector<GammaRampRGBEntry>& gamma_lut,
+ const std::vector<float>& correction_matrix) {
DCHECK(drm_thread_->IsRunning());
DCHECK(on_window_server_thread_.CalledOnValidThread());
drm_thread_->task_runner()->PostTask(
- FROM_HERE, base::Bind(&DrmThread::SetGammaRamp,
- base::Unretained(drm_thread_), id, lut));
+ FROM_HERE,
+ base::Bind(&DrmThread::SetColorCorrection, base::Unretained(drm_thread_),
+ id, degamma_lut, gamma_lut, correction_matrix));
return true;
}
« no previous file with comments | « ui/ozone/platform/drm/mus_thread_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698