From e4551548cdac0e0643bd4d6bd7b259f11b773a91 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 25 May 2024 01:58:55 +0200 Subject: [PATCH] Fix typos and clean up --- pixmappaint.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index aff06c8..66262ef 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -278,7 +278,7 @@ private { } /++ - Limits a value to a maximum 0xFF (= 255). + Limits a value to a maximum of 0xFF (= 255). +/ ubyte clamp255(Tint)(const Tint value) { pragma(inline, true); @@ -291,7 +291,7 @@ ubyte clamp255(Tint)(const Tint value) { This function optimizes its runtime performance by substituting the division by 255 with an approximation using bitshifts. - Nonetheless, the its result are as accurate as a floating point + Nonetheless, its result are as accurate as a floating point division with 64-bit precision. Params: @@ -310,7 +310,7 @@ ubyte n255thsOf(const ubyte nPercentage, const ubyte value) { // Accuracy verification static ubyte n255thsOfFP64(const ubyte nPercentage, const ubyte value) { - return (value * nPercentage / 255.0).round().castTo!ubyte(); + return (double(value) * double(nPercentage) / 255.0).round().castTo!ubyte(); } for (int value = ubyte.min; value <= ubyte.max; ++value) { @@ -395,7 +395,7 @@ enum BlendAccuracy { /// public void alphaBlend( BlendAccuracy accuracy, - ubyte function(const ubyte, const ubyte) pure blend = null, + ubyte function(const ubyte, const ubyte) blend = null, )( scope Pixel[] target, scope const Pixel[] source,