From: Brian Paul Date: Mon, 6 Nov 2000 15:52:48 +0000 (+0000) Subject: added buffer test to xmesa_choose_point(), fixes X protocol error X-Git-Tag: 062012170305~27711 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8fa6b363dbed32f4e18b4b83866658c62fba8d39;p=profile%2Fivi%2Fmesa.git added buffer test to xmesa_choose_point(), fixes X protocol error --- diff --git a/src/mesa/drivers/x11/xm_line.c b/src/mesa/drivers/x11/xm_line.c index 00e9df6..2a09dd8 100644 --- a/src/mesa/drivers/x11/xm_line.c +++ b/src/mesa/drivers/x11/xm_line.c @@ -1,4 +1,4 @@ -/* $Id: xm_line.c,v 1.6 2000/11/05 18:26:12 keithw Exp $ */ +/* $Id: xm_line.c,v 1.7 2000/11/06 15:52:48 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -92,11 +92,13 @@ static void draw_points_ANY_pixmap( GLcontext *ctx, SWvertex *vert ) */ void xmesa_choose_point( GLcontext *ctx ) { + XMesaContext xmesa = (XMesaContext) ctx->DriverCtx; SWcontext *swrast = SWRAST_CONTEXT(ctx); - if (ctx->Point.Size==1.0F && !ctx->Point.SmoothFlag - && swrast->_RasterMask==0 - && !ctx->Texture._ReallyEnabled) { + if (ctx->Point.Size == 1.0F && !ctx->Point.SmoothFlag + && swrast->_RasterMask == 0 + && !ctx->Texture._ReallyEnabled + && xmesa->xm_buffer->buffer != XIMAGE) { swrast->Point = draw_points_ANY_pixmap; } else {