summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/clear.c
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2017-07-21 14:21:10 +0200
committerSamuel Pitoiset <[email protected]>2017-08-02 12:54:32 +0200
commit73c5e750d799a8b35f282767fe6fa57f32190089 (patch)
tree585db8fc74aef73a8a1ffcac9e5c93578f60f491 /src/mesa/main/clear.c
parent1ed61e0239feb5f08236df9a8e74cd8fb78c13e8 (diff)
mesa: add KHR_no_error support to glClearBufferfi()
Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/clear.c')
-rw-r--r--src/mesa/main/clear.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/clear.c b/src/mesa/main/clear.c
index 4c3400412cd..62a00c04018 100644
--- a/src/mesa/main/clear.c
+++ b/src/mesa/main/clear.c
@@ -684,6 +684,15 @@ clear_bufferfi(struct gl_context *ctx, GLenum buffer, GLint drawbuffer,
void GLAPIENTRY
+_mesa_ClearBufferfi_no_error(GLenum buffer, GLint drawbuffer,
+ GLfloat depth, GLint stencil)
+{
+ GET_CURRENT_CONTEXT(ctx);
+ clear_bufferfi(ctx, buffer, drawbuffer, depth, stencil, true);
+}
+
+
+void GLAPIENTRY
_mesa_ClearBufferfi(GLenum buffer, GLint drawbuffer,
GLfloat depth, GLint stencil)
{