diff options
author | Brian Paul <[email protected]> | 2001-07-26 20:02:10 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-07-26 20:02:10 +0000 |
commit | 172281dad8d1f1d32f5f31583a5fa565aa1bf5da (patch) | |
tree | 98cf5d057fe7f1c03868a27664ad9f9fb828e090 /src/mesa/main/teximage.c | |
parent | e2df5de01cbaf73c7f2b52459b318f9951f1e85a (diff) |
fixes for proxy cube map texture images
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r-- | src/mesa/main/teximage.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index c856f331d95..4206062b136 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -1,4 +1,4 @@ -/* $Id: teximage.c,v 1.102 2001/07/23 16:18:18 brianp Exp $ */ +/* $Id: teximage.c,v 1.103 2001/07/26 20:02:10 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1525,7 +1525,9 @@ _mesa_TexImage2D( GLenum target, GLint level, GLint internalFormat, texObj->Complete = GL_FALSE; ctx->NewState |= _NEW_TEXTURE; } - else if (target == GL_PROXY_TEXTURE_2D) { + else if (target == GL_PROXY_TEXTURE_2D || + (target == GL_PROXY_TEXTURE_CUBE_MAP_ARB && + ctx->Extensions.ARB_texture_cube_map)) { /* Proxy texture: check for errors and update proxy state */ GLenum error = texture_error_check(ctx, target, level, internalFormat, format, type, 2, |