diff options
author | Jyri Sarha <jsarha@ti.com> | 2016-08-10 23:16:39 +0300 |
---|---|---|
committer | Jyri Sarha <jsarha@ti.com> | 2016-08-11 12:20:29 +0300 |
commit | 3788242e4fdc57b1421b4721120477ebb2298e52 (patch) | |
tree | c2b0c7fe512daaee254859fa530bafd5972a9796 /kms++util/inc | |
parent | bd5f6471e619a6ba2987bc7f66ef78a531f94d6c (diff) |
Add BGR888 (BG24) and BGR565 (BG16) pixelformats.
Note colorbar does not support 24 bit modes (RGB888 or BGR888) yet.
Diffstat (limited to 'kms++util/inc')
-rw-r--r-- | kms++util/inc/kms++util/color.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kms++util/inc/kms++util/color.h b/kms++util/inc/kms++util/color.h index ef85a67..ba2ed25 100644 --- a/kms++util/inc/kms++util/color.h +++ b/kms++util/inc/kms++util/color.h @@ -14,9 +14,11 @@ struct RGB RGB(uint32_t argb); uint32_t rgb888() const; + uint32_t bgr888() const; uint32_t argb8888() const; uint32_t abgr8888() const; uint16_t rgb565() const; + uint16_t bgr565() const; YUV yuv() const; uint8_t b; |