diff options
author | Ian Romanick <[email protected]> | 2006-08-25 19:57:37 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2006-08-25 19:57:37 +0000 |
commit | 3fea5910b9db41252da28bf0ab8ed763d1a129f8 (patch) | |
tree | 0338c834d4b93a15495432e9a2beb1cc02718e74 /src/glx/x11/indirect_init.c | |
parent | 58d080b025c52710324eb719d6e74900cb4f64bf (diff) |
Add a couple of the missing GL 2.0 functions. Enable GLX protocol for
glBlendEquationSeparateEXT. Add missing enum "get" information for
GL_EXT_texture_filter_anisotropic.
Diffstat (limited to 'src/glx/x11/indirect_init.c')
-rw-r--r-- | src/glx/x11/indirect_init.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/glx/x11/indirect_init.c b/src/glx/x11/indirect_init.c index 5c1de7c56bc..43c090adc50 100644 --- a/src/glx/x11/indirect_init.c +++ b/src/glx/x11/indirect_init.c @@ -760,6 +760,10 @@ __GLapi * __glXNewIndirectAPI( void ) glAPI->ProgramNamedParameter4fNV = __indirect_glProgramNamedParameter4fNV; glAPI->ProgramNamedParameter4fvNV = __indirect_glProgramNamedParameter4fvNV; + /* 299. GL_EXT_blend_equation_separate */ + + glAPI->BlendEquationSeparateEXT = __indirect_glBlendEquationSeparateEXT; + /* 310. GL_EXT_framebuffer_object */ glAPI->RenderbufferStorageEXT = __indirect_glRenderbufferStorageEXT; |