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

Unified Diff: ui/display/types/display_snapshot.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: Refactor for glevin@ and load VCGT always Created 5 years, 1 month 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/types/display_snapshot.cc
diff --git a/ui/display/types/display_snapshot.cc b/ui/display/types/display_snapshot.cc
index f19961dd202cc8d021c4b92fece0d7a55dcdab18..c78799aaee5e3067db44b4719c4c1b9b1dbf296c 100644
--- a/ui/display/types/display_snapshot.cc
+++ b/ui/display/types/display_snapshot.cc
@@ -12,6 +12,7 @@ DisplaySnapshot::DisplaySnapshot(int64_t display_id,
DisplayConnectionType type,
bool is_aspect_preserving_scaling,
bool has_overscan,
+ bool has_color_correction_matrix,
std::string display_name,
const std::vector<const DisplayMode*>& modes,
const DisplayMode* current_mode,
@@ -22,6 +23,7 @@ DisplaySnapshot::DisplaySnapshot(int64_t display_id,
type_(type),
is_aspect_preserving_scaling_(is_aspect_preserving_scaling),
has_overscan_(has_overscan),
+ has_color_correction_matrix_(has_color_correction_matrix),
display_name_(display_name),
modes_(modes),
current_mode_(current_mode),

Powered by Google App Engine
This is Rietveld 408576698