diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-04-19 00:38:27 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-04-19 00:38:27 +0000 |
commit | a670c1280b78e6da3b298b61f623e4c733c6be94 (patch) | |
tree | 803a29169de7fe25f7e193dfe6a2de85128c4591 /src/mesa/swrast/s_texture.c | |
parent | db07de057f10ab7ab5be84352b674b200a0a9e22 (diff) |
casts to fix GLint/GLuint mismatches
Diffstat (limited to 'src/mesa/swrast/s_texture.c')
-rw-r--r-- | src/mesa/swrast/s_texture.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_texture.c b/src/mesa/swrast/s_texture.c index f5f4bb5d63..44738acdad 100644 --- a/src/mesa/swrast/s_texture.c +++ b/src/mesa/swrast/s_texture.c @@ -1,4 +1,4 @@ -/* $Id: s_texture.c,v 1.60 2002/04/12 21:17:28 brianp Exp $ */ +/* $Id: s_texture.c,v 1.61 2002/04/19 00:38:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -2250,7 +2250,7 @@ sample_depth_texture( GLcontext *ctx, GLuint unit, result = 0; break; case GL_NEVER: - result = CHAN_MAXF; + result = CHAN_MAX; break; case GL_NONE: /* ordinary bilinear filtering */ |