summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-06-11 16:32:57 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-06-11 16:32:57 -0600
commit227315278dea9095cee6e508d03b28720b2e7880 (patch)
tree58acf851f4ba7bcb6729ef6e27e5d0d8ffd59ede /src/mesa/main/mtypes.h
parenta28977a4c726ac5023fcefb58695498c0c5ae507 (diff)
Replace texobj->Complete with texobj->_Complete since it's a derived field.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 7dfa94ee13..05c08c19fe 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1434,7 +1434,7 @@ struct gl_texture_object
GLint _MaxLevel; /**< actual max mipmap level (q in the spec) */
GLfloat _MaxLambda; /**< = _MaxLevel - BaseLevel (q - b in spec) */
GLboolean GenerateMipmap; /**< GL_SGIS_generate_mipmap */
- GLboolean Complete; /**< Is texture object complete? */
+ GLboolean _Complete; /**< Is texture object complete? */
/** Actual texture images, indexed by [cube face] and [mipmap level] */
struct gl_texture_image *Image[MAX_FACES][MAX_TEXTURE_LEVELS];