diff options
author | Chris Wilson <[email protected]> | 2009-11-13 12:19:35 +0000 |
---|---|---|
committer | Chris Wilson <[email protected]> | 2010-03-05 11:23:55 +0000 |
commit | 99864d595f7d4c13e9548f83d5972db9af64e67b (patch) | |
tree | 860f19ad081f2e6bc8dae386c9b2abf751ea9ee0 /src/mesa/main/dlist.c | |
parent | 894d0ab9388543642b6940f09358844736a8bd3a (diff) |
APPLE_object_purgeable: core
Signed-off-by: Chris Wilson <[email protected]>
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 673db30f254..43aadb1de57 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); |