summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 64ac89f)
raw | patch | inline | side by side (parent: 64ac89f)
author | Mark Tyler <mark.tyler@ti.com> | |
Fri, 30 Sep 2011 11:58:56 +0000 (17:28 +0530) | ||
committer | Praneeth Bajjuri <praneeth@ti.com> | |
Fri, 12 Jul 2013 22:28:58 +0000 (17:28 -0500) |
Earlier the default color format of the framebuffer was xRGB24U, but SGX
is producing data in ARGB32. Also, SGX - the FB driver user - doesn't negotiate
with FB driver for the format and thus FB needs to provide ARGB32 as default
to align with SGX format.
Change-Id: I5609d633cec3104d7711d163d47dd4da803d6ff3
Signed-off-by: Mark Tyler <mark.tyler@ti.com>
Signed-off-by: Varadarajan, Charulatha <charu@ti.com>
is producing data in ARGB32. Also, SGX - the FB driver user - doesn't negotiate
with FB driver for the format and thus FB needs to provide ARGB32 as default
to align with SGX format.
Change-Id: I5609d633cec3104d7711d163d47dd4da803d6ff3
Signed-off-by: Mark Tyler <mark.tyler@ti.com>
Signed-off-by: Varadarajan, Charulatha <charu@ti.com>
drivers/video/omap2/omapfb/omapfb-main.c | patch | blob | history |
index 34af88837be34438c2a58271ecd78a5ff65ca0b5..fc0a1bc6744b9737964310ccc23b2b1d6a7aea8e 100644 (file)
dssmode = OMAP_DSS_COLOR_RGB24P;
break;
case 32:
- dssmode = OMAP_DSS_COLOR_RGB24U;
+ dssmode = OMAP_DSS_COLOR_ARGB32;
break;
default:
return -EINVAL;