Просмотр исходного кода

ac: remove arrays when when querying sampler info

Fixes the following ARB_arrays_of_arrays piglit tests:

basic-imagestore-const-uniform-index
basic-imagestore-mixed-const-non-const-uniform-index
basic-imagestore-mixed-const-non-const-uniform-index2
basic-imagestore-non-const-uniform-index

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
tags/18.0-branchpoint
Timothy Arceri 7 лет назад
Родитель
Сommit
209b14c2cb
1 измененных файлов: 1 добавлений и 3 удалений
  1. 1
    3
      src/amd/common/ac_nir_to_llvm.c

+ 1
- 3
src/amd/common/ac_nir_to_llvm.c Просмотреть файл

@@ -3518,9 +3518,7 @@ static LLVMValueRef adjust_sample_index_using_fmask(struct ac_llvm_context *ctx,
static LLVMValueRef get_image_coords(struct ac_nir_context *ctx,
const nir_intrinsic_instr *instr)
{
const struct glsl_type *type = instr->variables[0]->var->type;
if(instr->variables[0]->deref.child)
type = instr->variables[0]->deref.child->type;
const struct glsl_type *type = glsl_without_array(instr->variables[0]->var->type);

LLVMValueRef src0 = get_src(ctx, instr->src[0]);
LLVMValueRef coords[4];

Загрузка…
Отмена
Сохранить