Module: Mesa
Branch: master
Commit: e6cf338d015e994012535fce5e06c7dc59482b02
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=e6cf338d015e994012535fce5e06c7dc59482b02

Author: Brian Paul <[email protected]>
Date:   Sat Sep 17 14:50:49 2011 -0600

mesa: plug in swrast texture image alloc/free functions

Use the swrast allocation/free functions instead of core Mesa.

---

 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;

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to