mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
radv: remove unused code in radv_export_param()
It was hack for geometry shaders. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
6d50dcd80f
commit
d8844533af
1 changed files with 1 additions and 15 deletions
|
|
@ -2593,21 +2593,7 @@ radv_export_param(struct radv_shader_context *ctx, unsigned index,
|
|||
static LLVMValueRef
|
||||
radv_load_output(struct radv_shader_context *ctx, unsigned index, unsigned chan)
|
||||
{
|
||||
LLVMValueRef output;
|
||||
|
||||
if (ctx->vertexptr) {
|
||||
LLVMValueRef gep_idx[3] = {
|
||||
ctx->ac.i32_0, /* implicit C-style array */
|
||||
ctx->ac.i32_0, /* second value of struct */
|
||||
ctx->ac.i32_1, /* stream 1: source data index */
|
||||
};
|
||||
|
||||
gep_idx[2] = LLVMConstInt(ctx->ac.i32, ac_llvm_reg_index_soa(index, chan), false);
|
||||
output = LLVMBuildGEP(ctx->ac.builder, ctx->vertexptr, gep_idx, 3, "");
|
||||
} else {
|
||||
output = ctx->abi.outputs[ac_llvm_reg_index_soa(index, chan)];
|
||||
}
|
||||
|
||||
LLVMValueRef output = ctx->abi.outputs[ac_llvm_reg_index_soa(index, chan)];
|
||||
return LLVMBuildLoad(ctx->ac.builder, output, "");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue