From 07bb9884a5decd19119d9474af06c0d7ddc726b5 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Tue, 25 Jun 2002 08:44:27 +0000 Subject: FRONT_AND_BACK culling --- src/mesa/drivers/x11/xm_tri.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/mesa/drivers/x11/xm_tri.c') diff --git a/src/mesa/drivers/x11/xm_tri.c b/src/mesa/drivers/x11/xm_tri.c index 4b3f02677e..5615f5ec2f 100644 --- a/src/mesa/drivers/x11/xm_tri.c +++ b/src/mesa/drivers/x11/xm_tri.c @@ -1,4 +1,4 @@ -/* $Id: xm_tri.c,v 1.24 2002/06/15 03:03:10 brianp Exp $ */ +/* $Id: xm_tri.c,v 1.25 2002/06/25 08:44:27 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -1531,6 +1531,9 @@ static swrast_tri_func get_triangle_func( GLcontext *ctx ) if (ctx->Polygon.SmoothFlag) return (swrast_tri_func) NULL; if (ctx->Texture._EnabledUnits) return (swrast_tri_func) NULL; if (swrast->_RasterMask & MULTI_DRAW_BIT) return (swrast_tri_func) NULL; + if (ctx->Polygon.CullFlag && + ctx->Polygon.CullFaceMode == GL_FRONT_AND_BACK)) + return (swrast_tri_func) NULL; if (xmesa->xm_buffer->buffer==XIMAGE) { if ( ctx->Light.ShadeModel==GL_SMOOTH -- cgit v1.2.3