summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/clip.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-04-13 14:53:25 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-04-13 14:53:25 +0000
commitad2f32155f6db21c19fc2dfb002853a0bc0649af (patch)
tree228d568565a334991d91df0304cd3b23c66c32fe /src/mesa/main/clip.c
parent179870a5b806a3ee84cb56fa20c3a003f9fc5b97 (diff)
downloadexternal_mesa3d-ad2f32155f6db21c19fc2dfb002853a0bc0649af.zip
external_mesa3d-ad2f32155f6db21c19fc2dfb002853a0bc0649af.tar.gz
external_mesa3d-ad2f32155f6db21c19fc2dfb002853a0bc0649af.tar.bz2
applied Keith's fix for the Loki ice bug
Diffstat (limited to 'src/mesa/main/clip.c')
-rw-r--r--src/mesa/main/clip.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/mesa/main/clip.c b/src/mesa/main/clip.c
index 5aaf6c6..00cd8e3 100644
--- a/src/mesa/main/clip.c
+++ b/src/mesa/main/clip.c
@@ -1,4 +1,4 @@
-/* $Id: clip.c,v 1.6 2000/02/25 03:55:39 keithw Exp $ */
+/* $Id: clip.c,v 1.7 2000/04/13 14:53:25 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -375,13 +375,10 @@ void gl_update_clipmask( GLcontext *ctx )
if (ctx->Visual->RGBAflag)
{
- if (ctx->Light.ShadeModel==GL_SMOOTH)
- {
- mask |= CLIP_RGBA0;
+ mask |= CLIP_RGBA0;
- if (ctx->TriangleCaps & (DD_TRI_LIGHT_TWOSIDE|DD_SEPERATE_SPECULAR))
- mask |= CLIP_RGBA1;
- }
+ if (ctx->TriangleCaps & (DD_TRI_LIGHT_TWOSIDE|DD_SEPERATE_SPECULAR))
+ mask |= CLIP_RGBA1;
if (ctx->Texture.ReallyEnabled & 0xf0)
mask |= CLIP_TEX1|CLIP_TEX0;