diff options
author | Chris Wilson <[email protected]> | 2010-03-05 15:03:51 +0000 |
---|---|---|
committer | Chris Wilson <[email protected]> | 2010-03-05 15:03:56 +0000 |
commit | 6ba31fb2dbe6a90e6d60a49b3e5bd2edce05241d (patch) | |
tree | 6b7a36a3b422cf33f94ea6eff5e37b01c0361b81 /src/mesa/main/api_exec.c | |
parent | 3490923c817cd81d46a405de117e9ba8a8aeef3c (diff) | |
parent | 755915fa5d9ea782d142b3f8755b62d6de28fe29 (diff) |
Merge branch 'object-purgeable'
Acked-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r-- | src/mesa/main/api_exec.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 70c154b62b2..fa8d409caa8 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -758,4 +758,10 @@ _mesa_init_exec_table(struct _glapi_table *exec) SET_EGLImageTargetTexture2DOES(exec, _mesa_EGLImageTargetTexture2DOES); SET_EGLImageTargetRenderbufferStorageOES(exec, _mesa_EGLImageTargetRenderbufferStorageOES); #endif + +#if FEATURE_APPLE_object_purgeable + SET_ObjectPurgeableAPPLE(exec, _mesa_ObjectPurgeableAPPLE); + SET_ObjectUnpurgeableAPPLE(exec, _mesa_ObjectUnpurgeableAPPLE); + SET_GetObjectParameterivAPPLE(exec, _mesa_GetObjectParameterivAPPLE); +#endif } |