Browse Source

added buffer test to xmesa_choose_point(), fixes X protocol error

tags/mesa_3_5
Brian Paul 25 years ago
parent
commit
8fa6b363db
1 changed files with 6 additions and 4 deletions
  1. 6
    4
      src/mesa/drivers/x11/xm_line.c

+ 6
- 4
src/mesa/drivers/x11/xm_line.c View File

@@ -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 {

Loading…
Cancel
Save