summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/depth.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-10-23 13:06:13 -0600
committerBrian Paul <brianp@vmware.com>2009-10-23 18:31:02 -0600
commitd66965c9a1e932444c2538b4221df07fea4c557f (patch)
tree3dbf820461727915701745d66c5f66330eca23a1 /src/mesa/main/depth.c
parent9b50ceac03975e75940713313363df1bdd5c19dc (diff)
downloadexternal_mesa3d-d66965c9a1e932444c2538b4221df07fea4c557f.zip
external_mesa3d-d66965c9a1e932444c2538b4221df07fea4c557f.tar.gz
external_mesa3d-d66965c9a1e932444c2538b4221df07fea4c557f.tar.bz2
mesa: remove misplaced VERBOSE_TEXTURE tests
Diffstat (limited to 'src/mesa/main/depth.c')
-rw-r--r--src/mesa/main/depth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/depth.c b/src/mesa/main/depth.c
index 91c036e..f187205 100644
--- a/src/mesa/main/depth.c
+++ b/src/mesa/main/depth.c
@@ -63,7 +63,7 @@ _mesa_DepthFunc( GLenum func )
GET_CURRENT_CONTEXT(ctx);
ASSERT_OUTSIDE_BEGIN_END(ctx);
- if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
+ if (MESA_VERBOSE & VERBOSE_API)
_mesa_debug(ctx, "glDepthFunc %s\n", _mesa_lookup_enum_by_nr(func));
switch (func) {
@@ -99,7 +99,7 @@ _mesa_DepthMask( GLboolean flag )
GET_CURRENT_CONTEXT(ctx);
ASSERT_OUTSIDE_BEGIN_END(ctx);
- if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
+ if (MESA_VERBOSE & VERBOSE_API)
_mesa_debug(ctx, "glDepthMask %d\n", flag);
/*