From: Nicolai Hähnle Date: Mon, 1 Jun 2009 20:17:07 +0000 (+0200) Subject: radeon: Always initialize front and back renderbuffers if present X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dbb56687c83845cc20aee7243e437a32e5c79a70;p=mesa.git radeon: Always initialize front and back renderbuffers if present This fixes an assertion in glReadPixels from the front buffer. Signed-off-by: Nicolai Hähnle --- diff --git a/src/mesa/drivers/dri/radeon/radeon_common_context.c b/src/mesa/drivers/dri/radeon/radeon_common_context.c index eb0e5b35e5e..009859fecaa 100644 --- a/src/mesa/drivers/dri/radeon/radeon_common_context.c +++ b/src/mesa/drivers/dri/radeon/radeon_common_context.c @@ -487,8 +487,7 @@ radeon_update_renderbuffers(__DRIcontext *context, __DRIdrawable *drawable) struct radeon_renderbuffer *stencil_rb; i = 0; - if ((radeon->is_front_buffer_rendering || !draw->color_rb[1]) - && draw->color_rb[0]) { + if (draw->color_rb[0]) { attachments[i++] = __DRI_BUFFER_FRONT_LEFT; attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]); }