diff options
author | u3shit <u3shit@gmail.com> | 2023-02-24 20:14:29 +0100 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2023-02-26 19:41:20 +0100 |
commit | 092ff20c60603759cab335178cf5f560ea7d6eaf (patch) | |
tree | 0b2c36bbac97f81e8d7179d55b91d2453a8e7ecf /gfx | |
parent | f6e1f851d006bad808486d5f27449192cdd78513 (diff) | |
download | uxp-092ff20c60603759cab335178cf5f560ea7d6eaf.tar.gz |
Issue #2101 - Part 1: Add mColorRange info to YCbCrBuffer
https://hg.mozilla.org/integration/autoland/rev/6f4c7904cda8
Diffstat (limited to 'gfx')
-rw-r--r-- | gfx/layers/ImageTypes.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gfx/layers/ImageTypes.h b/gfx/layers/ImageTypes.h index de154912b4..5f6981fef7 100644 --- a/gfx/layers/ImageTypes.h +++ b/gfx/layers/ImageTypes.h @@ -123,6 +123,12 @@ enum class YUVColorSpace { UNKNOWN, }; +enum class ColorRange { + LIMITED, + FULL, + UNKNOWN, +}; + } // namespace mozilla #endif |