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

Unified Diff: ui/display/chromeos/x11/native_display_delegate_x11.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: Use a vectore of tuples of RGB components for IPC Created 5 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 side-by-side diff with in-line comments
Download patch
Index: ui/display/chromeos/x11/native_display_delegate_x11.cc
diff --git a/ui/display/chromeos/x11/native_display_delegate_x11.cc b/ui/display/chromeos/x11/native_display_delegate_x11.cc
index b5022bace6fbee98a6c667e079a9f1db939e67cb..e4eb9f2e197021835792f68661f89f520703a3f2 100644
--- a/ui/display/chromeos/x11/native_display_delegate_x11.cc
+++ b/ui/display/chromeos/x11/native_display_delegate_x11.cc
@@ -608,6 +608,14 @@ XRRCrtcGamma* NativeDisplayDelegateX11::CreateGammaRampForProfile(
return NULL;
}
+bool NativeDisplayDelegateX11::SetGammaRamp(const ui::DisplaySnapshot& output,
+ const std::vector<uint16_t>& r,
+ const std::vector<uint16_t>& g,
+ const std::vector<uint16_t>& b) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
void NativeDisplayDelegateX11::DrawBackground() {
if (!background_color_argb_)
return;

Powered by Google App Engine
This is Rietveld 408576698