From a670c1280b78e6da3b298b61f623e4c733c6be94 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 19 Apr 2002 00:38:27 +0000 Subject: casts to fix GLint/GLuint mismatches --- src/mesa/swrast/s_texture.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/swrast/s_texture.c') 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 */ -- cgit v1.2.3