diff options
author | Samuel Pitoiset <[email protected]> | 2017-07-21 14:04:15 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-08-02 12:54:31 +0200 |
commit | 5e05e7debcc176c9bae72478552337417dddafd2 (patch) | |
tree | ffb14a02868da8955738ddb8aff0c26a79c0aed5 /src/mesa/main/clear.h | |
parent | 33b47306e48b0e51458a728514fa026377ac7166 (diff) |
mesa: add KHR_no_error support to glClearBufferfv()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/clear.h')
-rw-r--r-- | src/mesa/main/clear.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/clear.h b/src/mesa/main/clear.h index 6ae63ac257a..780e9ca05cf 100644 --- a/src/mesa/main/clear.h +++ b/src/mesa/main/clear.h @@ -64,6 +64,10 @@ extern void GLAPIENTRY _mesa_ClearNamedFramebufferuiv(GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +void GLAPIENTRY +_mesa_ClearBufferfv_no_error(GLenum buffer, GLint drawbuffer, + const GLfloat *value); + extern void GLAPIENTRY _mesa_ClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value); |