mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
ac/llvm: fix amdgcn.fract for v2f16
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6284>
This commit is contained in:
parent
ab614abeef
commit
dd8561fda9
1 changed files with 2 additions and 3 deletions
|
|
@ -860,9 +860,8 @@ static void visit_alu(struct ac_nir_context *ctx, const nir_alu_instr *instr)
|
|||
ac_to_float_type(&ctx->ac, def_type),src[0]);
|
||||
break;
|
||||
case nir_op_ffract:
|
||||
src[0] = ac_to_float(&ctx->ac, src[0]);
|
||||
result = ac_build_fract(&ctx->ac, src[0],
|
||||
instr->dest.dest.ssa.bit_size);
|
||||
result = emit_intrin_1f_param_scalar(&ctx->ac, "llvm.amdgcn.fract",
|
||||
ac_to_float_type(&ctx->ac, def_type), src[0]);
|
||||
break;
|
||||
case nir_op_fsin:
|
||||
result = emit_intrin_1f_param(&ctx->ac, "llvm.sin",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue