mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 19:18:11 +02:00
radeonsi: remove unused si_shader_context members
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
parent
d3540b405b
commit
472361dd7e
2 changed files with 0 additions and 11 deletions
|
|
@ -191,10 +191,6 @@ struct si_shader_context {
|
|||
|
||||
LLVMTargetMachineRef tm;
|
||||
|
||||
unsigned range_md_kind;
|
||||
unsigned fpmath_md_kind;
|
||||
LLVMValueRef fpmath_md_2p5_ulp;
|
||||
|
||||
/* Preloaded descriptors. */
|
||||
LLVMValueRef esgs_ring;
|
||||
LLVMValueRef gsvs_ring[4];
|
||||
|
|
|
|||
|
|
@ -1194,13 +1194,6 @@ void si_llvm_context_init(struct si_shader_context *ctx,
|
|||
bld_base->emit_declaration = emit_declaration;
|
||||
bld_base->emit_immediate = emit_immediate;
|
||||
|
||||
/* metadata allowing 2.5 ULP */
|
||||
ctx->fpmath_md_kind = LLVMGetMDKindIDInContext(ctx->ac.context,
|
||||
"fpmath", 6);
|
||||
LLVMValueRef arg = LLVMConstReal(ctx->ac.f32, 2.5);
|
||||
ctx->fpmath_md_2p5_ulp = LLVMMDNodeInContext(ctx->ac.context,
|
||||
&arg, 1);
|
||||
|
||||
bld_base->op_actions[TGSI_OPCODE_BGNLOOP].emit = bgnloop_emit;
|
||||
bld_base->op_actions[TGSI_OPCODE_BRK].emit = brk_emit;
|
||||
bld_base->op_actions[TGSI_OPCODE_CONT].emit = cont_emit;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue