Index: linux/jsimdcfg.inc |
=================================================================== |
--- linux/jsimdcfg.inc (revision 106486) |
+++ linux/jsimdcfg.inc (working copy) |
@@ -13,6 +13,31 @@ |
%define RGB_GREEN 1 |
%define RGB_BLUE 2 |
%define RGB_PIXELSIZE 3 |
+%define EXT_RGB_RED 0 |
+%define EXT_RGB_GREEN 1 |
+%define EXT_RGB_BLUE 2 |
+%define EXT_RGB_PIXELSIZE 3 |
+%define EXT_RGBX_RED 0 |
+%define EXT_RGBX_GREEN 1 |
+%define EXT_RGBX_BLUE 2 |
+%define EXT_RGBX_PIXELSIZE 4 |
+%define EXT_BGR_RED 2 |
+%define EXT_BGR_GREEN 1 |
+%define EXT_BGR_BLUE 0 |
+%define EXT_BGR_PIXELSIZE 3 |
+%define EXT_BGRX_RED 2 |
+%define EXT_BGRX_GREEN 1 |
+%define EXT_BGRX_BLUE 0 |
+%define EXT_BGRX_PIXELSIZE 4 |
+%define EXT_XBGR_RED 3 |
+%define EXT_XBGR_GREEN 2 |
+%define EXT_XBGR_BLUE 1 |
+%define EXT_XBGR_PIXELSIZE 4 |
+%define EXT_XRGB_RED 1 |
+%define EXT_XRGB_GREEN 2 |
+%define EXT_XRGB_BLUE 3 |
+%define EXT_XRGB_PIXELSIZE 4 |
+%define RGBX_FILLER_0XFF 1 |
; Representation of a single sample (pixel element value). |
; On this SIMD implementation, this must be 'unsigned char'. |
; |