diff options
author | Brian Paul <[email protected]> | 2010-12-06 15:11:41 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-12-06 17:10:05 -0700 |
commit | ecb7cc3319a74bda1edc226a1103f0e1a86d92a9 (patch) | |
tree | 09b2b406453631a67f5ebb976f04ca3bd9016c6c /src/mesa/main/texobj.h | |
parent | c17c7903871b031162e41d6495a1bef64844e19b (diff) |
mesa: test for cube map completeness in glGenerateMipmap()
The texture is not cube complete if the base level images aren't of
the same size and format.
NOTE: This is a candidate for the 7.9 branch.
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r-- | src/mesa/main/texobj.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index 9e3bf50147a..2461b063efd 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -69,6 +69,9 @@ extern void _mesa_test_texobj_completeness( const struct gl_context *ctx, struct gl_texture_object *obj ); +extern GLboolean +_mesa_cube_complete(const struct gl_texture_object *texObj); + extern void _mesa_dirty_texobj(struct gl_context *ctx, struct gl_texture_object *texObj, GLboolean invalidate_state); |