From: Dave Airlie Date: Tue, 3 Aug 2010 23:36:17 +0000 (+1000) Subject: r300g: disable multisample visuals until the state tracker bits catch up. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8bc5fe1ad67127f642c47da0a307aa7bd8696fab;p=mesa.git r300g: disable multisample visuals until the state tracker bits catch up. This stops us advertising lots of ms visuals we can't actually use. Signed-off-by: Dave Airlie --- diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index 676430f5fee..6268001054b 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -279,11 +279,14 @@ static boolean r300_is_format_supported(struct pipe_screen* screen, case 3: case 4: case 6: + return FALSE; +#if 0 if (usage != PIPE_BIND_RENDER_TARGET || !util_format_is_rgba8_variant( util_format_description(format))) { return FALSE; } +#endif break; default: return FALSE;