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++/src | |
parent | bd5f6471e619a6ba2987bc7f66ef78a531f94d6c (diff) | |
parent | 3788242e4fdc57b1421b4721120477ebb2298e52 (diff) |
Merge branch 'master' of git://github.com/jsarha/kmsxx
Diffstat (limited to 'kms++/src')
-rw-r--r-- | kms++/src/pixelformats.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kms++/src/pixelformats.cpp b/kms++/src/pixelformats.cpp index ee2356d..84ea924 100644 --- a/kms++/src/pixelformats.cpp +++ b/kms++/src/pixelformats.cpp @@ -17,8 +17,10 @@ static const map<PixelFormat, PixelFormatInfo> format_info_array = { { PixelFormat::NV21, { 2, { { 8, 1, 1, }, { 8, 2, 2 } }, } }, /* RGB16 */ { PixelFormat::RGB565, { 1, { { 16, 1, 1 } }, } }, + { PixelFormat::BGR565, { 1, { { 16, 1, 1 } }, } }, /* RGB24 */ { PixelFormat::RGB888, { 1, { { 24, 1, 1 } }, } }, + { PixelFormat::BGR888, { 1, { { 24, 1, 1 } }, } }, /* RGB32 */ { PixelFormat::XRGB8888, { 1, { { 32, 1, 1 } }, } }, { PixelFormat::XBGR8888, { 1, { { 32, 1, 1 } }, } }, |