gallium: clean-up, minor fix
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 8 May 2008 22:02:19 +0000 (16:02 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 8 May 2008 22:02:19 +0000 (16:02 -0600)
src/mesa/state_tracker/st_cb_drawpixels.c

index c967c98..61cbd9e 100644 (file)
@@ -986,12 +986,7 @@ st_CopyPixels(GLcontext *ctx, GLint srcx, GLint srcy,
       stvp = st_make_passthrough_vertex_shader(ctx->st, GL_TRUE);
    }
 
-#if 0
-   psRead = rbRead->surface;
-   srcFormat = psRead->format;
-#else
    srcFormat = rbRead->texture->format;
-#endif
 
    if (screen->is_format_supported(screen, srcFormat, PIPE_TEXTURE)) {
       texFormat = srcFormat;
@@ -1003,8 +998,9 @@ st_CopyPixels(GLcontext *ctx, GLint srcx, GLint srcy,
          assert(texFormat != PIPE_FORMAT_NONE); /* XXX no depth texture formats??? */
       }
       else {
-         /* todo */
-         assert(0);
+         /* default color format */
+         texFormat = st_choose_format(pipe, GL_RGBA, PIPE_TEXTURE);
+         assert(texFormat != PIPE_FORMAT_NONE);
       }
    }