From 9628282f1e8fd7f870c2dba07d0868c8a79743d5 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Fri, 23 Jun 2017 17:21:39 +0200 Subject: [PATCH] mesa: add KHR_no_error support for glDepthFunc() Signed-off-by: Samuel Pitoiset Reviewed-by: Timothy Arceri --- src/mapi/glapi/gen/gl_API.xml | 2 +- src/mesa/main/depth.c | 8 ++++++++ src/mesa/main/depth.h | 3 +++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index bcd1205537e..4d6a08e1247 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -2570,7 +2570,7 @@ - + diff --git a/src/mesa/main/depth.c b/src/mesa/main/depth.c index 4bc000fd138..930f5e816f9 100644 --- a/src/mesa/main/depth.c +++ b/src/mesa/main/depth.c @@ -89,6 +89,14 @@ depth_func(struct gl_context *ctx, GLenum func, bool no_error) } +void GLAPIENTRY +_mesa_DepthFunc_no_error(GLenum func) +{ + GET_CURRENT_CONTEXT(ctx); + depth_func(ctx, func, true); +} + + void GLAPIENTRY _mesa_DepthFunc(GLenum func) { diff --git a/src/mesa/main/depth.h b/src/mesa/main/depth.h index 5760951c853..478249f157c 100644 --- a/src/mesa/main/depth.h +++ b/src/mesa/main/depth.h @@ -43,6 +43,9 @@ _mesa_ClearDepth( GLclampd depth ); extern void GLAPIENTRY _mesa_ClearDepthf( GLclampf depth ); +void GLAPIENTRY +_mesa_DepthFunc_no_error(GLenum func); + extern void GLAPIENTRY _mesa_DepthFunc(GLenum func); -- 2.30.2