summaryrefslogtreecommitdiff
path: root/src/mesa/main/texstate.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-03-13 08:45:39 -0600
committerBrian Paul <brianp@vmware.com>2009-03-13 08:46:03 -0600
commit583d29373452764e4c902c3b04543a9056456eeb (patch)
tree6f3776849e7487c1ea2d01ba60ff4cd4daae3365 /src/mesa/main/texstate.c
parentccad1e45289b83d045cf7264f391f7502ef81110 (diff)
mesa: improve another _mesa_problem() call
Diffstat (limited to 'src/mesa/main/texstate.c')
-rw-r--r--src/mesa/main/texstate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/texstate.c b/src/mesa/main/texstate.c
index 0f91080024..73f8a5339e 100644
--- a/src/mesa/main/texstate.c
+++ b/src/mesa/main/texstate.c
@@ -262,7 +262,8 @@ calculate_derived_texenv( struct gl_tex_env_combine_state *state,
default:
_mesa_problem(NULL,
- "Invalid texture env mode in calculate_derived_texenv");
+ "Invalid texture env mode 0x%x in calculate_derived_texenv",
+ mode);
return;
}