From: Alan Hourihane Date: Mon, 18 Jul 2005 13:50:06 +0000 (+0000) Subject: pass in the renderbuffer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c235a96a7198f5975baec3870e48ee83bf32e23a;p=mesa.git pass in the renderbuffer --- diff --git a/src/mesa/swrast/s_masking.c b/src/mesa/swrast/s_masking.c index f58b2c20e24..391dfde7a19 100644 --- a/src/mesa/swrast/s_masking.c +++ b/src/mesa/swrast/s_masking.c @@ -111,7 +111,7 @@ _swrast_mask_rgba_array(GLcontext *ctx, struct gl_renderbuffer *rb, const GLint bMask = ctx->Color.ColorMask[BCOMP]; const GLint aMask = ctx->Color.ColorMask[ACOMP]; - _swrast_read_rgba_span( ctx, ctx->DrawBuffer, n, x, y, dest ); + _swrast_read_rgba_span( ctx, rb, n, x, y, dest ); for (i = 0; i < n; i++) { if (!rMask) rgba[i][RCOMP] = dest[i][RCOMP]; if (!gMask) rgba[i][GCOMP] = dest[i][GCOMP];