mesa: re-enable _mesa_source_buffer_exists() call
authorBrian Paul <brianp@vmware.com>
Thu, 30 Jul 2009 16:04:38 +0000 (10:04 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 30 Jul 2009 16:04:42 +0000 (10:04 -0600)
Somehow this code wound up inside a comment a while back.

src/mesa/main/teximage.c

index 6348ec09f79d2e3fd7dba6711e1418fb229ec92e..825f5e26bff7dc79c55fb3154323a3293343d843 100644 (file)
@@ -1869,14 +1869,14 @@ copytexture_error_check( GLcontext *ctx, GLuint dimensions,
       return GL_TRUE;
    }
 
-   /* NOTE: the format and type aren't really significant for
-    * TestProxyTexImage().  Only the internalformat really matters.
    if (!_mesa_source_buffer_exists(ctx, format)) {
       _mesa_error(ctx, GL_INVALID_OPERATION,
                   "glCopyTexImage%dD(missing readbuffer)", dimensions);
       return GL_TRUE;
    }
 
+   /* NOTE: the format and type aren't really significant for
+    * TestProxyTexImage().  Only the internalformat really matters.
     */
    type = GL_FLOAT;