diff options
author | Timothy Arceri <[email protected]> | 2017-06-28 14:34:14 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-06-29 08:54:11 +1000 |
commit | cb209dae9919eca304213768fc73b0b91eb96cfe (patch) | |
tree | 40898bc263d29a92855796f17cd59e220b8393cd /src/mesa/main/uniforms.h | |
parent | cc88eb97e08070fb5b599c0dd3f3d3cc0b88f9a1 (diff) |
mesa: add KHR_no_error support for glGetUniformLocation()
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/mesa/main/uniforms.h')
-rw-r--r-- | src/mesa/main/uniforms.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/uniforms.h b/src/mesa/main/uniforms.h index 1cee90d2a77..9236db97805 100644 --- a/src/mesa/main/uniforms.h +++ b/src/mesa/main/uniforms.h @@ -224,6 +224,8 @@ void GLAPIENTRY _mesa_GetUniformdv(GLuint, GLint, GLdouble *); GLint GLAPIENTRY _mesa_GetUniformLocation(GLuint, const GLcharARB *); +GLint GLAPIENTRY +_mesa_GetUniformLocation_no_error(GLuint, const GLcharARB *); GLuint GLAPIENTRY _mesa_GetUniformBlockIndex(GLuint program, const GLchar *uniformBlockName); |