diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-08-11 12:32:50 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-08-11 12:32:50 +0300 |
commit | 2754279db8d359b0c6d846c1e8f851e1ef90bb43 (patch) | |
tree | c2b0c7fe512daaee254859fa530bafd5972a9796 /kms++/inc | |
parent | bd5f6471e619a6ba2987bc7f66ef78a531f94d6c (diff) | |
parent | 3788242e4fdc57b1421b4721120477ebb2298e52 (diff) |
Merge branch 'master' of git://github.com/jsarha/kmsxx
Diffstat (limited to 'kms++/inc')
-rw-r--r-- | kms++/inc/kms++/pixelformats.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kms++/inc/kms++/pixelformats.h b/kms++/inc/kms++/pixelformats.h index 8ecfcb3..6392de1 100644 --- a/kms++/inc/kms++/pixelformats.h +++ b/kms++/inc/kms++/pixelformats.h @@ -28,8 +28,10 @@ enum class PixelFormat : uint32_t ABGR8888 = MakeFourCC("AB24"), RGB888 = MakeFourCC("RG24"), + BGR888 = MakeFourCC("BG24"), RGB565 = MakeFourCC("RG16"), + BGR565 = MakeFourCC("BG16"), }; static inline PixelFormat FourCCToPixelFormat(const std::string& fourcc) |