From 62c36a2ff39d775c1f1bc377b9ddbc69e2340799 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 23 Apr 2002 16:44:46 +0000 Subject: [PATCH] call _mesa_sizeof_packed_type() in _mesa_GetTexImage() (bug 547203) --- src/mesa/main/teximage.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index e383cbdfc96..342bab3aac9 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -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 - * Version: 4.0.2 + * Version: 4.1 * * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. * @@ -1222,7 +1222,7 @@ _mesa_GetTexImage( GLenum target, GLint level, GLenum format, return; } - if (_mesa_sizeof_type(type) <= 0) { + if (_mesa_sizeof_packed_type(type) <= 0) { _mesa_error( ctx, GL_INVALID_ENUM, "glGetTexImage(type)" ); return; } -- 2.30.2