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

Author: Matt Turner <[email protected]>
Date:   Thu Nov 22 00:06:03 2012 -0800

mesa: Use correct glGetTransformFeedbackVarying name in error msg

Reviewed-by: Brian Paul <[email protected]>

---

 src/mesa/main/transformfeedback.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/main/transformfeedback.c 
b/src/mesa/main/transformfeedback.c
index e0dd4e8..22060c3 100644
--- a/src/mesa/main/transformfeedback.c
+++ b/src/mesa/main/transformfeedback.c
@@ -622,14 +622,14 @@ _mesa_GetTransformFeedbackVarying(GLuint program, GLuint 
index,
    shProg = _mesa_lookup_shader_program(ctx, program);
    if (!shProg) {
       _mesa_error(ctx, GL_INVALID_VALUE,
-                  "glGetTransformFeedbackVaryings(program=%u)", program);
+                  "glGetTransformFeedbackVarying(program=%u)", program);
       return;
    }
 
    linked_xfb_info = &shProg->LinkedTransformFeedback;
    if (index >= (GLuint) linked_xfb_info->NumVarying) {
       _mesa_error(ctx, GL_INVALID_VALUE,
-                  "glGetTransformFeedbackVaryings(index=%u)", index);
+                  "glGetTransformFeedbackVarying(index=%u)", index);
       return;
    }
 

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to