From 34b2958897d38d2f36dd76346918dcc4e29503b7 Mon Sep 17 00:00:00 2001 From: schulz Date: Tue, 14 Apr 2015 20:24:09 +0000 Subject: [PATCH] Use BGR24 format git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@50394 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- .../soc/broadcom/2708/hidd/videocoregfx/videocoregfx_pixfmts.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm-native/soc/broadcom/2708/hidd/videocoregfx/videocoregfx_pixfmts.c b/arch/arm-native/soc/broadcom/2708/hidd/videocoregfx/videocoregfx_pixfmts.c index 0a36204516..6caaf7a2db 100644 --- a/arch/arm-native/soc/broadcom/2708/hidd/videocoregfx/videocoregfx_pixfmts.c +++ b/arch/arm-native/soc/broadcom/2708/hidd/videocoregfx/videocoregfx_pixfmts.c @@ -43,18 +43,18 @@ IPTR pftags_32bpp[ARRAYSIZE_TRUECOLOR] = IPTR pftags_24bpp[ARRAYSIZE_TRUECOLOR] = { ARRAYSIZE_TRUECOLOR, - 24, - 16, 8, + 16, + 24, 0, - 0x000000FF, - 0x0000FF00, 0x00FF0000, + 0x0000FF00, + 0x000000FF, 0x00000000, 24, 3, 24, - vHidd_StdPixFmt_RGB24 + vHidd_StdPixFmt_BGR24 }; #endif -- 2.11.4.GIT