call _mesa_sizeof_packed_type() in _mesa_GetTexImage() (bug 547203)

This commit is contained in:
Brian Paul
2002-04-23 16:44:46 +00:00
parent dec0131a29
commit 62c36a2ff3

View File

@@ -1,8 +1,8 @@
/* $Id: teximage.c,v 1.107 2002/03/19 16:47:05 brianp Exp $ */ /* $Id: teximage.c,v 1.108 2002/04/23 16:44:46 brianp Exp $ */
/* /*
* Mesa 3-D graphics library * Mesa 3-D graphics library
* Version: 4.0.2 * Version: 4.1
* *
* Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
* *
@@ -1222,7 +1222,7 @@ _mesa_GetTexImage( GLenum target, GLint level, GLenum format,
return; return;
} }
if (_mesa_sizeof_type(type) <= 0) { if (_mesa_sizeof_packed_type(type) <= 0) {
_mesa_error( ctx, GL_INVALID_ENUM, "glGetTexImage(type)" ); _mesa_error( ctx, GL_INVALID_ENUM, "glGetTexImage(type)" );
return; return;
} }