diff options
author | Brian Paul <[email protected]> | 2000-05-26 14:44:59 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-05-26 14:44:59 +0000 |
commit | 413d6a21f849a689b5c83ea04395856b44fc65a8 (patch) | |
tree | aae7c12c895ce970f4981c6a864216ee0c0c5cb7 /src/mesa/main/texobj.c | |
parent | 2c3a62013333fe624a431115c7913ae007bdd850 (diff) |
more work on GL_ARB_texture_cube_map
Diffstat (limited to 'src/mesa/main/texobj.c')
-rw-r--r-- | src/mesa/main/texobj.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 81833a3fa62..a5a8b373a23 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -307,6 +307,10 @@ _mesa_test_texobj_completeness( const GLcontext *ctx, } } } + else if (t->Dimensions == 6) { /* cube map */ + + + } else { /* Dimensions = ??? */ gl_problem(NULL, "Bug in gl_test_texture_object_completeness\n"); |