diff options
author | Brian <[email protected]> | 2007-06-11 16:32:57 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-06-11 16:32:57 -0600 |
commit | 227315278dea9095cee6e508d03b28720b2e7880 (patch) | |
tree | 58acf851f4ba7bcb6729ef6e27e5d0d8ffd59ede /src/mesa/main/texstate.c | |
parent | a28977a4c726ac5023fcefb58695498c0c5ae507 (diff) |
Replace texobj->Complete with texobj->_Complete since it's a derived field.
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 18afaf4edde..a951a024336 100644 --- a/src/mesa/main/texstate.c +++ b/src/mesa/main/texstate.c @@ -1552,7 +1552,7 @@ _mesa_TexParameterfv( GLenum target, GLenum pname, const GLfloat *params ) return; } - texObj->Complete = GL_FALSE; + texObj->_Complete = GL_FALSE; if (ctx->Driver.TexParameter) { (*ctx->Driver.TexParameter)( ctx, target, texObj, pname, params ); @@ -2839,10 +2839,10 @@ texture_override(GLcontext *ctx, struct gl_texture_object *texObj, GLuint textureBit) { if (!texUnit->_ReallyEnabled && (enableBits & textureBit)) { - if (!texObj->Complete) { + if (!texObj->_Complete) { _mesa_test_texobj_completeness(ctx, texObj); } - if (texObj->Complete) { + if (texObj->_Complete) { texUnit->_ReallyEnabled = textureBit; texUnit->_Current = texObj; } |