mesa: remove support for GL_APPLE_client_storage extension

AFAIK, there are few users of this extension and I can see a couple
reasons why this is probably broken in Mesa anyway.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Brian Paul
2011-09-21 18:54:53 -06:00
parent 980f6f1b37
commit 9e9a76eea1
9 changed files with 3 additions and 18 deletions

View File

@@ -610,7 +610,7 @@ _mesa_free_texture_image_data(struct gl_context *ctx,
{
(void) ctx;
if (texImage->Data && !texImage->IsClientData) {
if (texImage->Data) {
/* free the old texture data */
_mesa_free_texmemory(texImage->Data);
}