diff options
author | Ian Romanick <[email protected]> | 2009-11-12 13:22:12 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2009-11-17 16:25:38 -0800 |
commit | 4e7476f601e15cf4c52d7de44f0f775aaaedd094 (patch) | |
tree | 14abbda27b67e1d58cdef8a030f7e218db6f63c8 /src/glx/x11/indirect_init.c | |
parent | 5fbfd883386a8ff78bd6ca10ab761aff1b38e46d (diff) |
ARB_fbo: Add missing GLX render opcode for glFramebufferTextureLayerEXT
Also regenerate the GLX protocol files from this change.
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 aa9a6bb2b0e..73ca993027b 100644 --- a/src/glx/x11/indirect_init.c +++ b/src/glx/x11/indirect_init.c @@ -776,6 +776,10 @@ __GLapi * __glXNewIndirectAPI( void ) glAPI->BlitFramebufferEXT = __indirect_glBlitFramebufferEXT; + /* 329. GL_EXT_texture_array */ + + glAPI->FramebufferTextureLayerEXT = __indirect_glFramebufferTextureLayerEXT; + return glAPI; } |