From ea203de2d005b311d2f7f981523ae84494d6672a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Fri, 26 Feb 2010 13:17:30 -0500 Subject: [PATCH] Set API dispatch pointers for OES_EGL_image functions This chunk fell through the cracks when I rebase the EGLImage patch series. --- src/mesa/main/api_exec.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index f8e004af3f3..70c154b62b2 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -753,4 +753,9 @@ _mesa_init_exec_table(struct _glapi_table *exec) /* GL_NV_conditional_render */ SET_BeginConditionalRenderNV(exec, _mesa_BeginConditionalRender); SET_EndConditionalRenderNV(exec, _mesa_EndConditionalRender); + +#if FEATURE_OES_EGL_image + SET_EGLImageTargetTexture2DOES(exec, _mesa_EGLImageTargetTexture2DOES); + SET_EGLImageTargetRenderbufferStorageOES(exec, _mesa_EGLImageTargetRenderbufferStorageOES); +#endif } -- 2.30.2