diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-03-05 15:03:51 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-03-05 15:03:56 +0000 |
commit | 6ba31fb2dbe6a90e6d60a49b3e5bd2edce05241d (patch) | |
tree | 6b7a36a3b422cf33f94ea6eff5e37b01c0361b81 /src/mesa/main/dlist.c | |
parent | 3490923c817cd81d46a405de117e9ba8a8aeef3c (diff) | |
parent | 755915fa5d9ea782d142b3f8755b62d6de28fe29 (diff) |
Merge branch 'object-purgeable'
Acked-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 673db30f25..43aadb1de5 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -9285,6 +9285,12 @@ _mesa_init_save_table(struct _glapi_table *table) /* 364. GL_EXT_provoking_vertex */ SET_ProvokingVertexEXT(table, save_ProvokingVertexEXT); + /* 371. GL_APPLE_object_purgeable */ +#if FEATURE_APPLE_object_purgeable + SET_ObjectPurgeableAPPLE(table, _mesa_ObjectPurgeableAPPLE); + SET_ObjectUnpurgeableAPPLE(table, _mesa_ObjectUnpurgeableAPPLE); +#endif + /* GL 3.0 */ #if 0 SET_ClearBufferiv(table, save_ClearBufferiv); |