diff options
author | Brian Paul <brianp@vmware.com> | 2009-03-13 08:45:39 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-03-13 08:46:03 -0600 |
commit | 583d29373452764e4c902c3b04543a9056456eeb (patch) | |
tree | 6f3776849e7487c1ea2d01ba60ff4cd4daae3365 /src | |
parent | ccad1e45289b83d045cf7264f391f7502ef81110 (diff) |
mesa: improve another _mesa_problem() call
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/texstate.c | 3 |
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; } |