diff options
author | Brian Paul <[email protected]> | 2009-01-22 15:17:42 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-01-22 15:17:42 -0700 |
commit | 777a2efc7768de659fbc2e9a7541c9cbb3fc1d8b (patch) | |
tree | f2baa0644abc0a8f2f0d6c815518634b9bb0fd02 /src/mesa/main/api_exec.c | |
parent | 1f32c410dd06d73e2ad007a6ce755437884e92c3 (diff) |
mesa: stub for _mesa_RenderbufferStorageMultisample()
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r-- | src/mesa/main/api_exec.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index bae3bf11cb5..f8ee0d59dda 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -880,5 +880,12 @@ _mesa_init_exec_table(struct _glapi_table *exec) /* GL_ATI_separate_stencil */ SET_StencilFuncSeparateATI(exec, _mesa_StencilFuncSeparateATI); + +#if FEATURE_ARB_framebuffer_object + /* The ARB_fbo functions are the union of + * GL_EXT_fbo, GL_EXT_framebuffer_blit, GL_EXT_texture_array + */ + SET_RenderbufferStorageMultisample(exec, _mesa_RenderbufferStorageMultisample); +#endif } |