diff options
author | Brian Paul <[email protected]> | 2001-03-27 16:42:37 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-27 16:42:37 +0000 |
commit | 06ed3f0a0af158fc3591771fdeaeac363ced57f6 (patch) | |
tree | 7bce7ff1bb250fb43002181d76598e8d5651482d /src/mesa/drivers/glide/fxapi.c | |
parent | 6dbb39025cac10aac98e37ee72539e3c2a81a161 (diff) |
silence compiler warnings
Diffstat (limited to 'src/mesa/drivers/glide/fxapi.c')
-rw-r--r-- | src/mesa/drivers/glide/fxapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/glide/fxapi.c b/src/mesa/drivers/glide/fxapi.c index 9ca044d0a58..72f2a4538b7 100644 --- a/src/mesa/drivers/glide/fxapi.c +++ b/src/mesa/drivers/glide/fxapi.c @@ -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 |