remove conditional in RESET_STIPPLE to fix conformance failure
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
/* $Id: t_vb_render.c,v 1.25 2001/12/14 02:51:45 brianp Exp $ */
|
/* $Id: t_vb_render.c,v 1.26 2001/12/17 01:46:58 brianp Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Mesa 3-D graphics library
|
* Mesa 3-D graphics library
|
||||||
* Version: 3.5
|
* Version: 4.0.1
|
||||||
*
|
*
|
||||||
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
|
* Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
|
||||||
*
|
*
|
||||||
@@ -142,7 +142,7 @@ do { \
|
|||||||
|
|
||||||
#define TAG(x) clip_##x##_verts
|
#define TAG(x) clip_##x##_verts
|
||||||
#define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
|
#define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
|
||||||
#define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx )
|
#define RESET_STIPPLE tnl->Driver.Render.ResetLineStipple( ctx )
|
||||||
#define RESET_OCCLUSION ctx->OcclusionResult = GL_TRUE
|
#define RESET_OCCLUSION ctx->OcclusionResult = GL_TRUE
|
||||||
#define PRESERVE_VB_DEFS
|
#define PRESERVE_VB_DEFS
|
||||||
#include "t_vb_rendertmp.h"
|
#include "t_vb_rendertmp.h"
|
||||||
@@ -229,7 +229,7 @@ static void clip_elt_triangles( GLcontext *ctx,
|
|||||||
(void) (LineFunc && TriangleFunc && QuadFunc); \
|
(void) (LineFunc && TriangleFunc && QuadFunc); \
|
||||||
(void) elt; (void) stipple
|
(void) elt; (void) stipple
|
||||||
|
|
||||||
#define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx )
|
#define RESET_STIPPLE tnl->Driver.Render.ResetLineStipple( ctx )
|
||||||
#define RESET_OCCLUSION ctx->OcclusionResult = GL_TRUE
|
#define RESET_OCCLUSION ctx->OcclusionResult = GL_TRUE
|
||||||
#define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
|
#define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
|
||||||
#define RENDER_TAB_QUALIFIER
|
#define RENDER_TAB_QUALIFIER
|
||||||
|
Reference in New Issue
Block a user