From: Dave Airlie Date: Wed, 16 Aug 2017 23:17:20 +0000 (+0100) Subject: radv: disable texture gather workaround on gfx9. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c02e2bd95d16407084914ff7248a1717bdce658;p=mesa.git radv: disable texture gather workaround on gfx9. Not required anymore. Reviewed-by: Bas Nieuwenhuizen Cc: "17.2" Signed-off-by: Dave Airlie --- diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index 17bfe5b96f4..7aa7567ebc0 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2185,7 +2185,7 @@ static LLVMValueRef build_tex_intrinsic(struct ac_nir_context *ctx, break; } - if (instr->op == nir_texop_tg4) { + if (instr->op == nir_texop_tg4 && ctx->abi->chip_class <= VI) { enum glsl_base_type stype = glsl_get_sampler_result_type(instr->texture->var->type); if (stype == GLSL_TYPE_UINT || stype == GLSL_TYPE_INT) { return radv_lower_gather4_integer(&ctx->ac, args, instr);