From 8f3fc5221cbbc93f66d35a526e8385edf56adce5 Mon Sep 17 00:00:00 2001 From: Brian Date: Sat, 7 Apr 2007 08:38:36 -0600 Subject: added glActiveStencilFaceEXT --- progs/util/extfuncs.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'progs') diff --git a/progs/util/extfuncs.h b/progs/util/extfuncs.h index f5ea5feaa84..13067cd7aeb 100644 --- a/progs/util/extfuncs.h +++ b/progs/util/extfuncs.h @@ -56,6 +56,8 @@ static PFNGLDELETEVERTEXARRAYSAPPLEPROC glDeleteVertexArraysAPPLE_func = NULL; static PFNGLGENVERTEXARRAYSAPPLEPROC glGenVertexArraysAPPLE_func = NULL; static PFNGLISVERTEXARRAYAPPLEPROC glIsVertexArrayAPPLE_func = NULL; +/* GL_EXT_stencil_two_side */ +static PFNGLACTIVESTENCILFACEEXTPROC glActiveStencilFaceEXT_func = NULL; static void @@ -114,5 +116,7 @@ GetExtensionFuncs(void) glGenVertexArraysAPPLE_func = (PFNGLGENVERTEXARRAYSAPPLEPROC) glutGetProcAddress("glGenVertexArraysAPPLE"); glIsVertexArrayAPPLE_func = (PFNGLISVERTEXARRAYAPPLEPROC) glutGetProcAddress("glIsVertexArrayAPPLE"); + /* GL_EXT_stencil_two_side */ + glActiveStencilFaceEXT_func = (PFNGLACTIVESTENCILFACEEXTPROC) glutGetProcAddress("glActiveStencilFaceEXT"); } -- cgit v1.2.3