diff options
author | Samuel Pitoiset <[email protected]> | 2017-08-24 11:41:15 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-08-25 11:24:17 +0200 |
commit | b0590ace75d9f96fe11e53524993915ae0d98346 (patch) | |
tree | 082c3f92898a53df03a77aa0628400d56489b0a2 /src/mesa/main/transformfeedback.h | |
parent | efb981168050defefc531ab0eb315a780681a07e (diff) |
mesa: add KHR_no_error support to glBindTransformFeedback()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/transformfeedback.h')
-rw-r--r-- | src/mesa/main/transformfeedback.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/transformfeedback.h b/src/mesa/main/transformfeedback.h index c59ade7f0a8..47639bb56fd 100644 --- a/src/mesa/main/transformfeedback.h +++ b/src/mesa/main/transformfeedback.h @@ -105,6 +105,9 @@ _mesa_CreateTransformFeedbacks(GLsizei n, GLuint *names); extern GLboolean GLAPIENTRY _mesa_IsTransformFeedback(GLuint name); +void GLAPIENTRY +_mesa_BindTransformFeedback_no_error(GLenum target, GLuint name); + extern void GLAPIENTRY _mesa_BindTransformFeedback(GLenum target, GLuint name); |