From: Dave Airlie Date: Fri, 24 Sep 2010 06:36:16 +0000 (+1000) Subject: r600g: fixup sprite coord enable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=efa111a6cbfe03318a0e0569d4c9205a16d56857;p=mesa.git r600g: fixup sprite coord enable. this fixes piglit glsl-fs-pointcoord --- diff --git a/src/gallium/drivers/r600/r600_hw_states.c b/src/gallium/drivers/r600/r600_hw_states.c index 9cbf12008b7..892666b00b6 100644 --- a/src/gallium/drivers/r600/r600_hw_states.c +++ b/src/gallium/drivers/r600/r600_hw_states.c @@ -1019,7 +1019,8 @@ static int r600_ps_shader(struct r600_context *rctx, struct r600_context_state * if (rshader->input[i].name == TGSI_SEMANTIC_FACE) have_face = TRUE; - if (rasterizer->sprite_coord_enable & (1 << i)) { + if (rshader->input[i].name == TGSI_SEMANTIC_GENERIC && + rasterizer->sprite_coord_enable & (1 << rshader->input[i].sid)) { tmp |= S_028644_PT_SPRITE_TEX(1); } state->states[R600_PS_SHADER__SPI_PS_INPUT_CNTL_0 + i] = tmp;