From: Marek Olšák Date: Fri, 22 Apr 2011 18:19:38 +0000 (+0200) Subject: r300g: do not advertise color_buffer_float on r300 and r400 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=72239d16cd08113e994ea3508f91193c682b0930;p=mesa.git r300g: do not advertise color_buffer_float on r300 and r400 It seems they can't do unclamped vertex colors. Tested on RV350. --- diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index 13344a226d7..9ec16c6562f 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -114,7 +114,7 @@ static int r300_get_param(struct pipe_screen* pscreen, enum pipe_cap param) case PIPE_CAP_BLEND_EQUATION_SEPARATE: case PIPE_CAP_VERTEX_ELEMENT_INSTANCE_DIVISOR: case PIPE_CAP_FRAGMENT_COLOR_CLAMP_CONTROL: - return 1; + return is_r500 ? 1 : 0; case PIPE_CAP_TEXTURE_SWIZZLE: return util_format_s3tc_enabled ? r300screen->caps.dxtc_swizzle : 1; case PIPE_CAP_MIXED_COLORBUFFER_FORMATS: