diff options
author | Brian Paul <[email protected]> | 2003-01-08 16:48:04 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-01-08 16:48:04 +0000 |
commit | ff9ef3baed31b7b6bf1706aedf7f1127fcfb6a1d (patch) | |
tree | 88978e8fe6f6f680375587621019811c69b07878 /src/mesa/main/texobj.c | |
parent | 1e091f48f0434e8fb9713fbebc9d74ad68a75e34 (diff) |
move t->Image[i]->Format test (bug 659012)
Diffstat (limited to 'src/mesa/main/texobj.c')
-rw-r--r-- | src/mesa/main/texobj.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index f24a0b03de7..40711cd13ee 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -1,10 +1,10 @@ -/* $Id: texobj.c,v 1.63 2002/12/12 13:03:15 keithw Exp $ */ +/* $Id: texobj.c,v 1.64 2003/01/08 16:48:04 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 4.1 + * Version: 5.1 * - * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2003 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -454,12 +454,6 @@ _mesa_test_texobj_completeness( const GLcontext *ctx, height /= 2; } if (i >= minLevel && i <= maxLevel) { - /* Don't support GL_DEPTH_COMPONENT for cube maps */ - if (t->Image[i]->Format == GL_DEPTH_COMPONENT) { - t->Complete = GL_FALSE; - incomplete(t, "GL_DEPTH_COMPONENT only works with 1/2D tex"); - return; - } /* check that we have images defined */ if (!t->Image[i] || !t->NegX[i] || !t->PosY[i] || !t->NegY[i] || @@ -468,6 +462,12 @@ _mesa_test_texobj_completeness( const GLcontext *ctx, incomplete(t, "CubeMap Image[i] == NULL"); return; } + /* Don't support GL_DEPTH_COMPONENT for cube maps */ + if (t->Image[i]->Format == GL_DEPTH_COMPONENT) { + t->Complete = GL_FALSE; + incomplete(t, "GL_DEPTH_COMPONENT only works with 1/2D tex"); + return; + } /* check that all six images have same size */ if (t->NegX[i]->Width2!=width || t->NegX[i]->Height2!=height || t->PosY[i]->Width2!=width || t->PosY[i]->Height2!=height || |