Skip to content
Snippets Groups Projects
Commit e55b6a7f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard
Browse files

vkd3d-shader/hlsl: Add constants to the block for log()/log10() builtins.

parent aed2d142
No related branches found
No related tags found
1 merge request!476vkd3d-shader/hlsl: Add constants to the block for log()/log10() builtins.
Pipeline #18585 skipped
......@@ -3171,6 +3171,7 @@ static bool intrinsic_log(struct hlsl_ctx *ctx,
/* ln(2) */
if (!(coeff = hlsl_new_float_constant(ctx, 0.69314718055f, loc)))
return false;
hlsl_block_add_instr(params->instrs, coeff);
return !!add_binary_arithmetic_expr(ctx, params->instrs, HLSL_OP2_MUL, log, coeff, loc);
}
......@@ -3189,6 +3190,7 @@ static bool intrinsic_log10(struct hlsl_ctx *ctx,
/* 1 / log2(10) */
if (!(coeff = hlsl_new_float_constant(ctx, 0.301029996f, loc)))
return false;
hlsl_block_add_instr(params->instrs, coeff);
return !!add_binary_arithmetic_expr(ctx, params->instrs, HLSL_OP2_MUL, log, coeff, loc);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment