mesa: remove _mesa_alloc_texmemory(), _mesa_free_texmemory()
authorBrian Paul <brianp@vmware.com>
Sun, 23 Oct 2011 16:44:47 +0000 (10:44 -0600)
committerBrian Paul <brianp@vmware.com>
Sun, 23 Oct 2011 16:44:47 +0000 (10:44 -0600)
Core Mesa no longer does any texture memory allocation.

src/mesa/drivers/dri/intel/intel_mipmap_tree.c
src/mesa/drivers/dri/intel/intel_tex.c
src/mesa/drivers/dri/intel/intel_tex_image.c
src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c
src/mesa/drivers/dri/radeon/radeon_texture.c
src/mesa/main/teximage.c
src/mesa/main/teximage.h

index c5ef38b75960f6742d209e16c50a793d2e6c6018..9eb81deb78a82d54117335a8d92cf854b3e6f94b 100644 (file)
@@ -436,8 +436,8 @@ intel_miptree_copy_teximage(struct intel_context *intel,
       }
    }
 
-   if (!src_mt) {
-      _mesa_free_texmemory(intelImage->base.Data);
+   if (!src_mt && intelImage->base.Data) {
+      _mesa_align_free(intelImage->base.Data);
       intelImage->base.Data = NULL;
    }
 
index c11753b3deb5d145abea546793b1b185b11e9d04..0e82e136e5a1d7cd50f848cc49320d0a3b087f7b 100644 (file)
@@ -135,7 +135,7 @@ intel_free_texture_image_buffer(struct gl_context * ctx,
    intel_miptree_release(&intelImage->mt);
 
    if (intelImage->base.Data) {
-      _mesa_free_texmemory(intelImage->base.Data);
+      _mesa_align_free(intelImage->base.Data);
       intelImage->base.Data = NULL;
    }
 
index cf54a1391c1c1a30265ecc15d0f6ea80b8db23c0..2625e17a65647d4dcd268aeed647a6a480d17736 100644 (file)
@@ -14,6 +14,7 @@
 #include "main/texgetimage.h"
 #include "main/texobj.h"
 #include "main/teximage.h"
+#include "main/texstore.h"
 
 #include "intel_context.h"
 #include "intel_mipmap_tree.h"
index 8daeb5e8dd2eebff168a86d8cc0c909631cee657..d251670794abddb193e94330adaa0dda519b98e1 100644 (file)
@@ -499,7 +499,7 @@ static void migrate_image_to_miptree(radeon_mipmap_tree *mt,
                copy_rows(dest, dstlvl->rowstride, image->base.Data, srcrowstride,
                                  rows, srcrowstride);
 
-               _mesa_free_texmemory(image->base.Data);
+               _mesa_align_free(image->base.Data);
                image->base.Data = 0;
        }
 
index 2d17d30bb50ce8874ce392bdaa32afefa702fcec..abe751053e6dab71f27727bd8deb4fc36ca4aa7d 100644 (file)
@@ -106,14 +106,14 @@ void radeonFreeTextureImageBuffer(struct gl_context *ctx, struct gl_texture_imag
                radeon_miptree_unreference(&image->mt);
                assert(!image->base.Data);
        } else {
-               _mesa_free_texture_image_data(ctx, timage);
+               _swrast_free_texture_image_buffer(ctx, timage);
        }
        if (image->bo) {
                radeon_bo_unref(image->bo);
                image->bo = NULL;
        }
        if (image->base.Data) {
-               _mesa_free_texmemory(image->base.Data);
+               _mesa_align_free(image->base.Data);
                image->base.Data = NULL;
        }
 
@@ -828,7 +828,8 @@ static void radeon_teximage(
                                                                texImage->Width,
                                                                texImage->Height,
                                                                texImage->Depth);
-                       image->base.Data = _mesa_alloc_texmemory(size);
+                       image->base.Data = _mesa_align_malloc(size, 512);
+
                        radeon_print(RADEON_TEXTURE, RADEON_VERBOSE,
                                        "%s %dd: texObj %p, texImage %p, "
                                        " no miptree assigned, using local memory %p\n",
index 69b958505365c1c053c03f795c20adbfc20c5514..c4089f4a9e761008cdf768897e955ec39a8e8176 100644 (file)
 
 
 
-/**
- * We allocate texture memory on 512-byte boundaries so we can use MMX/SSE
- * elsewhere.
- */
-void *
-_mesa_alloc_texmemory(GLsizei bytes)
-{
-   return _mesa_align_malloc(bytes, 512);
-}
-
-
-/**
- * Free texture memory allocated with _mesa_alloc_texmemory()
- */
-void
-_mesa_free_texmemory(void *m)
-{
-   _mesa_align_free(m);
-}
-
-
 /**
  * Return the simple base format for a given internal texture format.
  * For example, given GL_LUMINANCE12_ALPHA4, return GL_LUMINANCE_ALPHA.
@@ -598,31 +577,6 @@ _mesa_new_texture_image( struct gl_context *ctx )
 }
 
 
-/**
- * Free texture image data.
- * This function is a fallback called via ctx->Driver.FreeTextureImageBuffer().
- *
- * \param texImage texture image.
- *
- * Free the texture image data if it's not marked as client data.
- */
-void
-_mesa_free_texture_image_data(struct gl_context *ctx,
-                              struct gl_texture_image *texImage)
-{
-   (void) ctx;
-
-#if 0
-   if (texImage->Data) {
-      /* free the old texture data */
-      _mesa_free_texmemory(texImage->Data);
-   }
-
-   texImage->Data = NULL;
-#endif
-}
-
-
 /**
  * Free a gl_texture_image and associated data.
  * This function is a fallback called via ctx->Driver.DeleteTextureImage().
index 6ce0fe92cc8af09dd543be329f3ff7d112ce997a..fd315bea3db3b16716d0c3ce5b5cd0b4bcc4b251 100644 (file)
 #include "formats.h"
 
 
-extern void *
-_mesa_alloc_texmemory(GLsizei bytes);
-
-extern void
-_mesa_free_texmemory(void *m);
-
-
 /** \name Internal functions */
 /*@{*/
 
@@ -62,10 +55,6 @@ extern void
 _mesa_delete_texture_image( struct gl_context *ctx,
                             struct gl_texture_image *teximage );
 
-extern void
-_mesa_free_texture_image_data( struct gl_context *ctx, 
-                              struct gl_texture_image *texImage );
-
 
 extern void
 _mesa_init_teximage_fields(struct gl_context *ctx, GLenum target,