From: Brian Paul Date: Thu, 31 Dec 2009 04:39:46 +0000 (-0700) Subject: mesa: plug in API functions for conditional rendering X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff3a52643d323626f32a9f1c14464a9501e6494d;p=mesa.git mesa: plug in API functions for conditional rendering --- diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 6c3c98994aa..c2d8a7fb972 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -51,6 +51,7 @@ #include "clear.h" #include "clip.h" #include "colortab.h" +#include "condrender.h" #include "context.h" #include "convolve.h" #include "depth.h" @@ -754,4 +755,8 @@ _mesa_init_exec_table(struct _glapi_table *exec) SET_EnableIndexedEXT(exec, _mesa_EnableIndexed); SET_DisableIndexedEXT(exec, _mesa_DisableIndexed); SET_IsEnabledIndexedEXT(exec, _mesa_IsEnabledIndexed); + + /* GL_NV_conditional_render */ + SET_BeginConditionalRenderNV(exec, _mesa_BeginConditionalRender); + SET_EndConditionalRenderNV(exec, _mesa_EndConditionalRender); }