Browse Source

silence compiler warnings

tags/mesa_3_5
Brian Paul 24 years ago
parent
commit
06ed3f0a0a
3 changed files with 6 additions and 6 deletions
  1. 2
    2
      src/mesa/drivers/glide/fxapi.c
  2. 1
    1
      src/mesa/drivers/glide/fxdd.c
  3. 3
    3
      src/mesa/main/dlist.c

+ 2
- 2
src/mesa/drivers/glide/fxapi.c View File

@@ -388,7 +388,7 @@ fxMesaCreateContext(GLuint win,


fxMesa->glideContext = FX_grSstWinOpen((FxU32) win, res, ref,
#if FXMESA_USE_ARGB
#ifdef FXMESA_USE_ARGB
GR_COLORFORMAT_ARGB,
#else
GR_COLORFORMAT_ABGR,
@@ -403,7 +403,7 @@ fxMesaCreateContext(GLuint win,
* Pixel tables are use during pixel read-back
* Either initialize them for RGB or BGR order.
*/
#if FXMESA_USE_ARGB
#ifdef FXMESA_USE_ARGB
useBGR = GL_FALSE; /* Force RGB pixel order */
system = "FXMESA_USE_ARGB";
#else

+ 1
- 1
src/mesa/drivers/glide/fxdd.c View File

@@ -748,7 +748,7 @@ fxDDInitFxMesaContext(fxMesaContext fxMesa)
if (fxMesa->haveZBuffer)
FX_grDepthBufferMode(GR_DEPTHBUFFER_ZBUFFER);

#if (!FXMESA_USE_ARGB)
#ifndef FXMESA_USE_ARGB
FX_grLfbWriteColorFormat(GR_COLORFORMAT_ABGR); /* Not every Glide has this */
#endif


+ 3
- 3
src/mesa/main/dlist.c View File

@@ -1,4 +1,4 @@
/* $Id: dlist.c,v 1.67 2001/03/12 00:48:37 gareth Exp $ */
/* $Id: dlist.c,v 1.68 2001/03/27 16:42:37 brianp Exp $ */

/*
* Mesa 3-D graphics library
@@ -3228,7 +3228,7 @@ static void save_TexImage2D( GLenum target,


static void save_TexImage3D( GLenum target,
GLint level, GLint internalFormat,
GLint level, GLenum internalFormat,
GLsizei width, GLsizei height, GLsizei depth,
GLint border,
GLenum format, GLenum type,
@@ -3249,7 +3249,7 @@ static void save_TexImage3D( GLenum target,
if (n) {
n[1].e = target;
n[2].i = level;
n[3].i = internalFormat;
n[3].i = (GLint) internalFormat;
n[4].i = (GLint) width;
n[5].i = (GLint) height;
n[6].i = (GLint) depth;

Loading…
Cancel
Save