From: Corbin Simpson Date: Sat, 14 Feb 2009 10:07:29 +0000 (-0800) Subject: r300-gallium: Enable all four colorbuffer render targets. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a20ef0a52f8c4efd7431ccd59e32efecdc33893;p=mesa.git r300-gallium: Enable all four colorbuffer render targets. As far as I can tell all the state emission necessary has been set up. Well, except for the fragment shader, but c'mon, gimme a break. :3 --- diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index 8ed66a1660c..5088c130392 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -100,8 +100,7 @@ static int r300_get_param(struct pipe_screen* pscreen, int param) /* IN THEORY */ return 0; case PIPE_CAP_MAX_RENDER_TARGETS: - /* XXX 4 eventually */ - return 1; + return 4; case PIPE_CAP_OCCLUSION_QUERY: /* IN THEORY */ return 0;