diff options
author | Gareth Hughes <[email protected]> | 2001-03-28 20:40:51 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2001-03-28 20:40:51 +0000 |
commit | 38f28665bf9fb5b2464738ca5074848ec2777ae1 (patch) | |
tree | d7df29f52814f6cd466b3ad9c3252c744ee5071c /src/mesa/main/texstate.c | |
parent | 53933fe9dbfae168dce0688b406810462a6d577b (diff) |
More texture format updates. Drivers now need only plug an appropriate
format into texImage->TexFormat, the rest is handled by core Mesa.
Diffstat (limited to 'src/mesa/main/texstate.c')
-rw-r--r-- | src/mesa/main/texstate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/texstate.c b/src/mesa/main/texstate.c index 93d12e71915..5e98965730a 100644 --- a/src/mesa/main/texstate.c +++ b/src/mesa/main/texstate.c @@ -1,4 +1,4 @@ -/* $Id: texstate.c,v 1.39 2001/03/26 19:42:40 brianp Exp $ */ +/* $Id: texstate.c,v 1.40 2001/03/28 20:40:51 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -956,8 +956,8 @@ _mesa_GetTexLevelParameteriv( GLenum target, GLint level, case GL_TEXTURE_DEPTH: *params = img->Depth; return; - case GL_TEXTURE_COMPONENTS: - *params = img->IntFormat; + case GL_TEXTURE_INTERNAL_FORMAT: + *params = img->TexFormat->IntFormat; return; case GL_TEXTURE_BORDER: *params = img->Border; |