diff options
author | Eric Anholt <[email protected]> | 2011-07-27 12:29:48 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-08-29 10:09:41 -0700 |
commit | 0bb29949ba8a9e5a15dc0640dbb0a4e7990a1d57 (patch) | |
tree | 7bcd0b32d5903c73a722aefc8a822ac205327d1a /src/mesa/main/mipmap.c | |
parent | beca3316fbf317c1032e73c9296c7777d35deb9d (diff) |
mesa: Rename FreeTexImageData to FreeTextureImageBuffer.
This was produced by sed, except for one hunk in driverfuncs.c where
trailing whitespace was dropped.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/mipmap.c')
-rw-r--r-- | src/mesa/main/mipmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/mipmap.c b/src/mesa/main/mipmap.c index 8a811cb7225..611f3755010 100644 --- a/src/mesa/main/mipmap.c +++ b/src/mesa/main/mipmap.c @@ -1949,7 +1949,7 @@ generate_mipmap_uncompressed(struct gl_context *ctx, GLenum target, /* Free old image data */ if (dstImage->Data) - ctx->Driver.FreeTexImageData(ctx, dstImage); + ctx->Driver.FreeTextureImageBuffer(ctx, dstImage); /* initialize new image */ _mesa_init_teximage_fields(ctx, target, dstImage, dstWidth, dstHeight, |