diff options
author | Brian Paul <brianp@vmware.com> | 2011-09-17 14:50:49 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2011-09-17 14:57:40 -0600 |
commit | e6cf338d015e994012535fce5e06c7dc59482b02 (patch) | |
tree | 029d309eabb1788ce50de034842969b6a26f6386 | |
parent | efc93219a9dfbd8e0bc42a1d0db372d2e7a7618c (diff) | |
download | external_mesa3d-e6cf338d015e994012535fce5e06c7dc59482b02.zip external_mesa3d-e6cf338d015e994012535fce5e06c7dc59482b02.tar.gz external_mesa3d-e6cf338d015e994012535fce5e06c7dc59482b02.tar.bz2 |
mesa: plug in swrast texture image alloc/free functions
Use the swrast allocation/free functions instead of core Mesa.
-rw-r--r-- | src/mesa/drivers/common/driverfuncs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c index 56b3d5a..3e28969 100644 --- a/src/mesa/drivers/common/driverfuncs.c +++ b/src/mesa/drivers/common/driverfuncs.c @@ -112,7 +112,8 @@ _mesa_init_driver_functions(struct dd_function_table *driver) driver->DeleteTexture = _mesa_delete_texture_object; driver->NewTextureImage = _swrast_new_texture_image; driver->DeleteTextureImage = _swrast_delete_texture_image; - driver->FreeTextureImageBuffer = _mesa_free_texture_image_data; + driver->AllocTextureImageBuffer = _swrast_alloc_texture_image_buffer; + driver->FreeTextureImageBuffer = _swrast_free_texture_image_buffer; driver->MapTextureImage = _swrast_map_teximage; driver->UnmapTextureImage = _swrast_unmap_teximage; driver->MapTexture = NULL; |