summaryrefslogtreecommitdiff
path: root/lib/igt_fb.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2014-09-06 12:08:13 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2014-09-06 12:11:08 +0100
commit9df77d566409fcef90c7ea63bb6d3df8d8c76dde (patch)
treec3174b764bf08dfced634fe37fd364e52cc59e34 /lib/igt_fb.c
parentdb4cc747fac2692d3b947992384d21a253e2a264 (diff)
lib/igt_fb: Ignore RGB888
None of our display hardware supports the packed 24-bit format, so stop trying to use it and causing test failures. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=78873&list_id=465068 Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib/igt_fb.c')
-rw-r--r--lib/igt_fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 1c500f54..9b41301c 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -62,7 +62,7 @@ static struct format_desc_struct {
int depth;
} format_desc[] = {
DF(RGB565, RGB16_565, 16, 16),
- DF(RGB888, INVALID, 24, 24),
+ //DF(RGB888, INVALID, 24, 24),
DF(XRGB8888, RGB24, 32, 24),
DF(XRGB2101010, RGB30, 32, 30),
DF(ARGB8888, ARGB32, 32, 32),