Mesa (master): mesa: print target string in glBindTexture() error message

Brian Paul brianp at kemper.freedesktop.org
Thu Apr 20 01:58:54 UTC 2017


Module: Mesa
Branch: master
Commit: 8a7e3693c8efe540256739eff233b2e88ab293a6
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8a7e3693c8efe540256739eff233b2e88ab293a6

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Apr 14 12:42:40 2017 -0600

mesa: print target string in glBindTexture() error message

Reviewed-by: Edward O'Callaghan <funfunctor at folklore1984.net>
Reviewed-by: Timothy Arceri <tarceri at itsqueeze.com>

---

 src/mesa/main/texobj.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c
index ad644ca1ca..00feb97552 100644
--- a/src/mesa/main/texobj.c
+++ b/src/mesa/main/texobj.c
@@ -1663,7 +1663,8 @@ _mesa_BindTexture( GLenum target, GLuint texName )
 
    targetIndex = _mesa_tex_target_to_index(ctx, target);
    if (targetIndex < 0) {
-      _mesa_error(ctx, GL_INVALID_ENUM, "glBindTexture(target)");
+      _mesa_error(ctx, GL_INVALID_ENUM, "glBindTexture(target = %s)",
+                  _mesa_enum_to_string(target));
       return;
    }
    assert(targetIndex < NUM_TEXTURE_TARGETS);




More information about the mesa-commit mailing list