From: Samuel Pitoiset Date: Thu, 20 Jul 2017 09:10:41 +0000 (+0200) Subject: mesa: add KHR_no_error support to glEndConditionalRender() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=71064d34aa3bb87e7bdfe805edf3eef6a137ee05;p=mesa.git mesa: add KHR_no_error support to glEndConditionalRender() Signed-off-by: Samuel Pitoiset Reviewed-by: Timothy Arceri --- diff --git a/src/mapi/glapi/gen/GL3x.xml b/src/mapi/glapi/gen/GL3x.xml index 63a57ebc1e2..d6040faa3e2 100644 --- a/src/mapi/glapi/gen/GL3x.xml +++ b/src/mapi/glapi/gen/GL3x.xml @@ -251,7 +251,7 @@ - + diff --git a/src/mesa/main/condrender.c b/src/mesa/main/condrender.c index 051cd8f9629..320003aa73f 100644 --- a/src/mesa/main/condrender.c +++ b/src/mesa/main/condrender.c @@ -146,6 +146,14 @@ end_conditional_render(struct gl_context *ctx) } +void APIENTRY +_mesa_EndConditionalRender_no_error(void) +{ + GET_CURRENT_CONTEXT(ctx); + end_conditional_render(ctx); +} + + void APIENTRY _mesa_EndConditionalRender(void) { diff --git a/src/mesa/main/condrender.h b/src/mesa/main/condrender.h index 6b761d1a1b0..e7672512f7e 100644 --- a/src/mesa/main/condrender.h +++ b/src/mesa/main/condrender.h @@ -37,6 +37,9 @@ _mesa_BeginConditionalRender_no_error(GLuint queryId, GLenum mode); extern void GLAPIENTRY _mesa_BeginConditionalRender(GLuint queryId, GLenum mode); +void APIENTRY +_mesa_EndConditionalRender_no_error(void); + extern void APIENTRY _mesa_EndConditionalRender(void);