From: Dave Airlie Date: Sun, 1 Jun 2008 21:18:21 +0000 (+1000) Subject: r500: add missing brackets around depth testing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7ead1c5d061b86027cb5e821fdcaa9cdce1d9537;p=mesa.git r500: add missing brackets around depth testing --- diff --git a/src/mesa/drivers/dri/r300/r500_fragprog.c b/src/mesa/drivers/dri/r300/r500_fragprog.c index d5ae4a5f749..b967aa2d737 100644 --- a/src/mesa/drivers/dri/r300/r500_fragprog.c +++ b/src/mesa/drivers/dri/r300/r500_fragprog.c @@ -364,10 +364,11 @@ static void emit_alu(struct r500_fragment_program *fp, int counter, struct prog_ if (fpi->DstReg.Index == FRAG_RESULT_COLR) fp->inst[counter].inst0 |= (fpi->DstReg.WriteMask << 15); - if (fpi->DstReg.Index == FRAG_RESULT_DEPR) + if (fpi->DstReg.Index == FRAG_RESULT_DEPR) { fp->inst[counter].inst4 |= R500_ALPHA_W_OMASK; /* Notify the state emission! */ fp->writes_depth = GL_TRUE; + } } else { fp->inst[counter].inst0 = R500_INST_TYPE_ALU /* pixel_mask */