pass mask array to PutRowRGB() in simple_z_textured_triangle()

This commit is contained in:
Brian Paul 2005-06-10 14:36:55 +00:00
parent b4979ec178
commit 5d6ecf25f8

View file

@ -237,7 +237,8 @@ _swrast_culltriangle( GLcontext *ctx,
span.intTex[1] += span.intTexStep[1]; \
span.z += span.zStep; \
} \
rb->PutRowRGB(ctx, rb, span.end, span.x, span.y, span.array->rgb, NULL);
rb->PutRowRGB(ctx, rb, span.end, span.x, span.y, \
span.array->rgb, span.array->mask);
#include "s_tritemp.h"