diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-20 18:13:36 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-21 08:47:09 +0200 |
commit | 9c49c9d8ddac5be2cc399a62e48257b21d7922e9 (patch) | |
tree | 49542911b286ebf4099bf31ef174081b0ccbaf0d /src/mesa/main/stencil.c | |
parent | 6f10d93ea4d4cf13321bd7b75adc94d161027a94 (diff) |
mesa: add KHR_no_error support for glStencilFuncSeparate()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/stencil.c')
-rw-r--r-- | src/mesa/main/stencil.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/stencil.c b/src/mesa/main/stencil.c index 78a09072b29..0b7e151ad13 100644 --- a/src/mesa/main/stencil.c +++ b/src/mesa/main/stencil.c @@ -476,6 +476,15 @@ stencil_func_separate(struct gl_context *ctx, GLenum face, GLenum func, /* OpenGL 2.0 */ void GLAPIENTRY +_mesa_StencilFuncSeparate_no_error(GLenum face, GLenum func, GLint ref, + GLuint mask) +{ + GET_CURRENT_CONTEXT(ctx); + stencil_func_separate(ctx, face, func, ref, mask); +} + + +void GLAPIENTRY _mesa_StencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask) { GET_CURRENT_CONTEXT(ctx); |