diff options
author | Dave Airlie <[email protected]> | 2009-02-22 10:37:54 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2009-02-22 10:37:54 +1000 |
commit | 487a55af7864a3b16531af5481aab7f585622e4a (patch) | |
tree | d5e1ec149b7548a83083fb2e6d00f34019a99c08 | |
parent | 4447fddc82a2c0245e798c90492293d875d186d0 (diff) |
texmem: fix typo from brianp's changes.
Reported by cjb via tinderbox on irc
-rw-r--r-- | src/mesa/drivers/dri/common/texmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/texmem.c b/src/mesa/drivers/dri/common/texmem.c index 041d8c6e97b..b64618a03c8 100644 --- a/src/mesa/drivers/dri/common/texmem.c +++ b/src/mesa/drivers/dri/common/texmem.c @@ -1081,7 +1081,7 @@ void driInitTextureObjects( GLcontext *ctx, driTextureObject * swapped, } if ( (targets & DRI_TEXMGR_DO_TEXTURE_CUBE) != 0 ) { - texObj = ctx->Texture.Unit[i].CurrentTex[TEXTURE_CUBE_INDEX]Map; + texObj = ctx->Texture.Unit[i].CurrentTex[TEXTURE_CUBE_INDEX]; ctx->Driver.BindTexture( ctx, GL_TEXTURE_CUBE_MAP_ARB, texObj ); move_to_tail( swapped, (driTextureObject *) texObj->DriverData ); } |