OSDN Git Service

tests/exynos: use XRGB8888 for framebuffer
authorTobias Jakobi <tjakobi@math.uni-bielefeld.de>
Mon, 30 Nov 2015 03:12:17 +0000 (12:12 +0900)
committerEmil Velikov <emil.l.velikov@gmail.com>
Fri, 18 Dec 2015 17:42:54 +0000 (17:42 +0000)
This matches the G2D color mode that is used in the entire code.
The previous (incorrect) RGBA8888 would only work since the
Exynos mixer did its configuration based on the bpp, and not
based on the actual pixelformat.

Reviewed-by: Hyungwon Hwang <human.hwang@samsung.com>
Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
tests/exynos/exynos_fimg2d_test.c

index 8794dac..dfb00a0 100644 (file)
@@ -675,7 +675,7 @@ int main(int argc, char **argv)
        offsets[0] = 0;
 
        ret = drmModeAddFB2(dev->fd, screen_width, screen_height,
-                               DRM_FORMAT_RGBA8888, handles,
+                               DRM_FORMAT_XRGB8888, handles,
                                pitches, offsets, &fb_id, 0);
        if (ret < 0)
                goto err_destroy_buffer;