summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 16b1c64)
raw | patch | inline | side by side (parent: 16b1c64)
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | |
Wed, 7 Oct 2015 07:29:51 +0000 (10:29 +0300) | ||
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | |
Wed, 7 Oct 2015 07:29:51 +0000 (10:29 +0300) |
libkms++/dumbframebuffer.cpp | patch | blob | history | |
libkms++/pixelformats.h | patch | blob | history |
index 4e3b56bef804c52d87e89fb8b8c824c4c7f7c6e5..cb815dacfca96093ce67f585a733a3a86f11c40d 100644 (file)
{ PixelFormat::RGB565, { 1, { { 16, 1, 1 } }, } },
/* RGB32 */
{ PixelFormat::XRGB8888, { 1, { { 32, 1, 1 } }, } },
+ { PixelFormat::XBGR8888, { 1, { { 32, 1, 1 } }, } },
};
void DumbFramebuffer::Create()
index 25fdecb03ca74a9dc26eb7c4f0ced05a3ab3d359..6741ea4583f5c173b04b43817332d1f8abc330ce 100644 (file)
--- a/libkms++/pixelformats.h
+++ b/libkms++/pixelformats.h
UYVY = MakeFourCC("UYVY"),
YUYV = MakeFourCC("YUYV"),
XRGB8888 = MakeFourCC("XR24"),
+ XBGR8888 = MakeFourCC("XB24"),
RGB565 = MakeFourCC("RG16"),
};