summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-01-21 23:57:13 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-01-21 23:57:13 +0000
commit3013d2bbdd32889f674162f6795d9dc6d7047c31 (patch)
treec44456e7f35406b8204eb825a5f7e322ae794b7c
parent35a1395bb4436a8cf5dd1807613a1006ea165dbf (diff)
added missing break (Leif Delgass)
-rw-r--r--src/mesa/main/texstate.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/main/texstate.c b/src/mesa/main/texstate.c
index 9b424372e6..b60c35dd59 100644
--- a/src/mesa/main/texstate.c
+++ b/src/mesa/main/texstate.c
@@ -1,10 +1,10 @@
-/* $Id: texstate.c,v 1.58.2.11 2002/12/30 19:21:40 alanh Exp $ */
+/* $Id: texstate.c,v 1.58.2.12 2003/01/21 23:57:13 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 4.0.4
+ * Version: 4.0.5
*
- * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -381,6 +381,7 @@ _mesa_TexEnvfv( GLenum target, GLenum pname, const GLfloat *param )
return;
FLUSH_VERTICES(ctx, _NEW_TEXTURE);
texUnit->CombineOperandRGB[2] = operand;
+ break;
default:
TE_ERROR(GL_INVALID_ENUM, "glTexEnv(param=%s)", operand);
return;