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

Author: Brian Paul <[email protected]>
Date:   Mon Sep 14 17:48:17 2009 -0600

progs/vp: print program and error info when program does not compile

---

 progs/vp/vp-tris.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/progs/vp/vp-tris.c b/progs/vp/vp-tris.c
index 97995ac..1356242 100644
--- a/progs/vp/vp-tris.c
+++ b/progs/vp/vp-tris.c
@@ -119,6 +119,12 @@ static void Init( void )
       glBindProgramARB(GL_VERTEX_PROGRAM_ARB, prognum);
       glProgramStringARB(GL_VERTEX_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB,
                        sz, (const GLubyte *) buf);
+      if (glGetError()) {
+         printf("Program failed to compile:\n%s\n", buf);
+         printf("Error: %s\n",
+                (char *) glGetString(GL_PROGRAM_ERROR_STRING_ARB));
+         exit(1);
+      }
       assert(glIsProgramARB(prognum));
    }
 

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

Reply via email to