ac: add glc parameter to ac_build_buffer_load_format
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
@@ -1049,10 +1049,11 @@ LLVMValueRef ac_build_buffer_load_format(struct ac_llvm_context *ctx,
|
||||
LLVMValueRef vindex,
|
||||
LLVMValueRef voffset,
|
||||
unsigned num_channels,
|
||||
bool glc,
|
||||
bool can_speculate)
|
||||
{
|
||||
return ac_build_buffer_load_common(ctx, rsrc, vindex, voffset,
|
||||
num_channels, false, false,
|
||||
num_channels, glc, false,
|
||||
can_speculate, true);
|
||||
}
|
||||
|
||||
|
@@ -219,6 +219,7 @@ LLVMValueRef ac_build_buffer_load_format(struct ac_llvm_context *ctx,
|
||||
LLVMValueRef vindex,
|
||||
LLVMValueRef voffset,
|
||||
unsigned num_channels,
|
||||
bool glc,
|
||||
bool can_speculate);
|
||||
|
||||
LLVMValueRef
|
||||
|
@@ -2298,7 +2298,7 @@ static LLVMValueRef build_tex_intrinsic(struct ac_nir_context *ctx,
|
||||
args->addr,
|
||||
ctx->ac.i32_0,
|
||||
util_last_bit(mask),
|
||||
true);
|
||||
false, true);
|
||||
}
|
||||
|
||||
args->opcode = ac_image_sample;
|
||||
@@ -5356,7 +5356,7 @@ handle_vs_input_decl(struct nir_to_llvm_context *ctx,
|
||||
input = ac_build_buffer_load_format(&ctx->ac, t_list,
|
||||
buffer_index,
|
||||
ctx->ac.i32_0,
|
||||
4, true);
|
||||
4, false, true);
|
||||
|
||||
for (unsigned chan = 0; chan < 4; chan++) {
|
||||
LLVMValueRef llvm_chan = LLVMConstInt(ctx->ac.i32, chan, false);
|
||||
|
@@ -611,7 +611,7 @@ void si_llvm_load_input_vs(
|
||||
|
||||
input[i] = ac_build_buffer_load_format(&ctx->ac, t_list,
|
||||
vertex_index, voffset,
|
||||
num_channels, true);
|
||||
num_channels, false, true);
|
||||
input[i] = ac_build_expand_to_vec4(&ctx->ac, input[i], num_channels);
|
||||
}
|
||||
|
||||
|
@@ -1828,7 +1828,7 @@ static void build_tex_intrinsic(const struct lp_build_tgsi_action *action,
|
||||
emit_data->args[0],
|
||||
emit_data->args[2],
|
||||
emit_data->args[1],
|
||||
num_channels, true);
|
||||
num_channels, false, true);
|
||||
emit_data->output[emit_data->chan] =
|
||||
ac_build_expand_to_vec4(&ctx->ac, result, num_channels);
|
||||
return;
|
||||
|
Reference in New Issue
Block a user