From: Brian Paul Date: Wed, 18 Jun 2008 15:30:13 +0000 (-0600) Subject: mesa: fix ReadBuffer initialization X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=715715e230bbe3e90fed566230b4a10ed0e89e90;p=mesa.git mesa: fix ReadBuffer initialization --- diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 19dd55f9d94..ed0addcdbbf 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1037,6 +1037,8 @@ init_attrib_groups(GLcontext *ctx) _mesa_init_multisample( ctx ); #if FEATURE_pixel_transfer _mesa_init_pixel( ctx ); +#else + ctx->Pixel.ReadBuffer = ctx->Visual.doubleBufferMode ? GL_BACK : GL_FRONT; #endif _mesa_init_pixelstore( ctx ); _mesa_init_point( ctx );