diff options
author | Brian Paul <[email protected]> | 2009-08-25 17:36:28 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-25 17:46:10 -0600 |
commit | fa6299cb31b62ff2418138cbb789b900d19a0bca (patch) | |
tree | b5a8f647688dbce3da07c89249a6c1f07254e29f /progs/util/shaderutil.h | |
parent | b7d2023cf99319c71a929c35478dff07d35df392 (diff) |
progs/util: added ValidateShaderProgram() to shaderutil.c
Diffstat (limited to 'progs/util/shaderutil.h')
-rw-r--r-- | progs/util/shaderutil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/util/shaderutil.h b/progs/util/shaderutil.h index 91c0d4094f8..98c71811569 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); |