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

Unified Diff: ui/display/types/gamma_ramp_rgb_entry.h

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/gamma_ramp_rgb_entry.h
diff --git a/ui/display/types/gamma_ramp_rgb_entry.h b/ui/display/types/gamma_ramp_rgb_entry.h
index 70405e10ff91d649c5062a8ffd06c75599000de0..f2cf11d106c1cdaba5f8bcdf54e09c82eb141328 100644
--- a/ui/display/types/gamma_ramp_rgb_entry.h
+++ b/ui/display/types/gamma_ramp_rgb_entry.h
@@ -13,9 +13,9 @@ namespace ui {
// Provides a single entry for a gamma correction table in a GPU.
struct DISPLAY_TYPES_EXPORT GammaRampRGBEntry {
- uint16_t r;
- uint16_t g;
- uint16_t b;
+ uint32_t r;
+ uint32_t g;
+ uint32_t b;
};
} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698