From: Brian Paul Date: Thu, 10 May 2001 17:55:54 +0000 (+0000) Subject: added check for zero-length spans, avoids potential problems later X-Git-Tag: 062012170305~27154 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a5cc6155d425b1a94e576e0c87140557051b7505;p=profile%2Fivi%2Fmesa.git added check for zero-length spans, avoids potential problems later --- diff --git a/src/mesa/swrast/s_aatritemp.h b/src/mesa/swrast/s_aatritemp.h index 4b92165..df68093 100644 --- a/src/mesa/swrast/s_aatritemp.h +++ b/src/mesa/swrast/s_aatritemp.h @@ -1,4 +1,4 @@ -/* $Id: s_aatritemp.h,v 1.11 2001/05/07 16:01:59 brianp Exp $ */ +/* $Id: s_aatritemp.h,v 1.12 2001/05/10 17:55:54 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -322,6 +322,9 @@ } n = (GLuint) ix - (GLuint) startX; + if (n == 0) + continue; + #ifdef DO_MULTITEX # ifdef DO_SPEC _mesa_write_multitexture_span(ctx, n, startX, iy, z, fog, @@ -440,6 +443,9 @@ } n = (GLuint) startX - (GLuint) ix; + if (n == 0) + continue; + left = ix + 1; #ifdef DO_MULTITEX {