summaryrefslogtreecommitdiff
path: root/progs/util/shaderutil.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-08-25 17:36:28 -0600
committerBrian Paul <brianp@vmware.com>2009-08-25 17:46:10 -0600
commitfa6299cb31b62ff2418138cbb789b900d19a0bca (patch)
treeb5a8f647688dbce3da07c89249a6c1f07254e29f /progs/util/shaderutil.h
parentb7d2023cf99319c71a929c35478dff07d35df392 (diff)
progs/util: added ValidateShaderProgram() to shaderutil.c
Diffstat (limited to 'progs/util/shaderutil.h')
-rw-r--r--progs/util/shaderutil.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/util/shaderutil.h b/progs/util/shaderutil.h
index 91c0d4094f..98c7181156 100644
--- a/progs/util/shaderutil.h
+++ b/progs/util/shaderutil.h
@@ -36,6 +36,9 @@ CompileShaderFile(GLenum shaderType, const char *filename);
extern GLuint
LinkShaders(GLuint vertShader, GLuint fragShader);
+extern GLboolean
+ValidateShaderProgram(GLuint program);
+
extern GLdouble
GetShaderCompileTime(void);