From: Christian König Date: Sun, 12 Dec 2010 14:37:54 +0000 (+0100) Subject: r600g: texture instructions also work fine with TGSI_FILE_INPUT X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=93a95ad8ff1d543f886f123029d1329513729c4b;p=mesa.git r600g: texture instructions also work fine with TGSI_FILE_INPUT --- diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index 59c080fcbba..2bf116c90bc 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -1717,7 +1717,9 @@ static int tgsi_tex(struct r600_shader_ctx *ctx) unsigned src_gpr; int r, i; int opcode; - boolean src_not_temp = inst->Src[0].Register.File != TGSI_FILE_TEMPORARY; + boolean src_not_temp = + inst->Src[0].Register.File != TGSI_FILE_TEMPORARY && + inst->Src[0].Register.File != TGSI_FILE_INPUT; uint32_t lit_vals[4]; src_gpr = ctx->file_offset[inst->Src[0].Register.File] + inst->Src[0].Register.Index;