clean up some makefile issues. (NicJA)
[AROS.git] / arch / i386-all / hidd / gfx / rgbconv_arch.c
blobf2a29b310117ed5d59c1649ba64d19014ff82fcf
1 /*
2 Copyright © 2013-2017, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <exec/types.h>
7 #include <hidd/gfx.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)