diff options
author | Samuel Pitoiset <[email protected]> | 2017-07-21 14:28:52 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-08-02 12:54:32 +0200 |
commit | da0ecdae1da7912a5ed4a1c018ed270888d5b1d6 (patch) | |
tree | f3f6672b4fee441ebb05dd9c1e6b2ad968579bbf /src/mesa/main/clear.h | |
parent | 54bd9a1d6698760e714606b111fe49ddae2f01f1 (diff) |
mesa: add KHR_no_error support to glClearBufferiv()
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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/clear.h b/src/mesa/main/clear.h index 92cc472440d..151905c0ef8 100644 --- a/src/mesa/main/clear.h +++ b/src/mesa/main/clear.h @@ -49,6 +49,9 @@ _mesa_Clear_no_error(GLbitfield mask); extern void GLAPIENTRY _mesa_Clear( GLbitfield mask ); +void GLAPIENTRY +_mesa_ClearBufferiv_no_error(GLenum buffer, GLint drawbuffer, + const GLint *value); extern void GLAPIENTRY _mesa_ClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value); |