Explorar el Código

fixed typo in CONVERT_TEXEL_DWORD for convert_abgr8888_to_ai88 textures (Michael Fitzpatrick)

tags/mesa_4_1
Brian Paul hace 23 años
padre
commit
8843d52af1
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      src/mesa/main/texutil.c

+ 2
- 2
src/mesa/main/texutil.c Ver fichero

@@ -1,4 +1,4 @@
/* $Id: texutil.c,v 1.26 2002/02/21 15:12:31 brianp Exp $ */
/* $Id: texutil.c,v 1.27 2002/03/15 18:05:49 brianp Exp $ */

/*
* Mesa 3-D graphics library
@@ -527,7 +527,7 @@ CONVERT_ARGB1555( texsubimage3d )

#define CONVERT_TEXEL_DWORD( dst, src ) \
dst = ((PACK_COLOR_88( src[3], src[0] )) | \
(PACK_COLOR_88( src[7], src[1] ) << 16))
(PACK_COLOR_88( src[7], src[4] ) << 16))

#define SRC_TEXEL_BYTES 4


Cargando…
Cancelar
Guardar