summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/common
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-10-31 10:52:57 -0600
committerBrian Paul <[email protected]>2011-10-31 10:52:57 -0600
commit12d69fca096facf0ddb4642faaed4d5f02d76848 (patch)
treebbc6ab14015b8f75141e87c74eb2fcf40223ea47 /src/mesa/drivers/common
parente0a0496971dfd6c0f22b3870e6320128fa895d4d (diff)
swrast: implement GL_ARB_texture_storage
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r--src/mesa/drivers/common/driverfuncs.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c
index 80db4bde8d3..920271626a9 100644
--- a/src/mesa/drivers/common/driverfuncs.c
+++ b/src/mesa/drivers/common/driverfuncs.c
@@ -218,6 +218,9 @@ _mesa_init_driver_functions(struct dd_function_table *driver)
driver->EndList = NULL;
driver->BeginCallList = NULL;
driver->EndCallList = NULL;
+
+ /* GL_ARB_texture_storage */
+ driver->AllocTextureStorage = _swrast_AllocTextureStorage;
}