Mesa (master): progs/vp: print program and error info when program does not compile

Brian Paul brianp at kemper.freedesktop.org
Tue Sep 15 15:53:08 UTC 2009


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

Author: Brian Paul <brianp at vmware.com>
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));
    }
 




More information about the mesa-commit mailing list