List.mui: Update entries count prior to range change
[AROS.git] / arch / i386-all / hidd / graphics / rgbconv_arch.c
blobbfb1190d85bfba722213ea09cc16737f76c048ca
1 /*
2 Copyright © 2013, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <exec/types.h>
7 #include <hidd/graphics.h>
9 #include "colorconv/rgbconv_macros.h"
11 void SetArchRGBConversionFunctions(HIDDT_RGBConversionFunction rgbconvertfuncs[NUM_RGB_STDPIXFMT][NUM_RGB_STDPIXFMT])
14 * Following color conversion routines are most used on 32bit displays
15 * (VESA, X11, Nouveau) and should be reimplemented using SSE
17 * XRGB32 -> BGRA32
18 * BGRA32 -> XRGB32
19 * BGR24 -> XRGB32
20 * BGRX32 -> XRGB32
21 * ARGB32 -> BGRA32
23 * (See rgbconv_macros.h for definitions of XRGB32,... etc)