From 69cb2f088feb3549c63ddb747ee11c781b49e86c Mon Sep 17 00:00:00 2001 From: smatz Date: Thu, 17 Jul 2008 23:43:47 +0000 Subject: (svn r13721) -Codechange: one less multiplication for colour mixing in 32bpp blitters (GeekToo) --- src/blitter/32bpp_base.hpp | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'src/blitter/32bpp_base.hpp') diff --git a/src/blitter/32bpp_base.hpp b/src/blitter/32bpp_base.hpp index 1e9ae1d16..e69a7cbfd 100644 --- a/src/blitter/32bpp_base.hpp +++ b/src/blitter/32bpp_base.hpp @@ -54,9 +54,9 @@ public: /* The 256 is wrong, it should be 255, but 256 is much faster... */ return ComposeColour(0xFF, - (r * a + cr * (256 - a)) / 256, - (g * a + cg * (256 - a)) / 256, - (b * a + cb * (256 - a)) / 256); + ((int)(r - cr) * a) / 256 + cr, + ((int)(g - cg) * a) / 256 + cg, + ((int)(b - cb) * a) / 256 + cb); } /** @@ -79,15 +79,8 @@ public: uint r = GB(colour, 16, 8); uint g = GB(colour, 8, 8); uint b = GB(colour, 0, 8); - uint cr = GB(current, 16, 8); - uint cg = GB(current, 8, 8); - uint cb = GB(current, 0, 8); - /* The 256 is wrong, it should be 255, but 256 is much faster... */ - return ComposeColour(0xFF, - (r * a + cr * (256 - a)) / 256, - (g * a + cg * (256 - a)) / 256, - (b * a + cb * (256 - a)) / 256); + return ComposeColourRGBANoCheck(r, g, b, a, current); } /** -- cgit v1.2.3-54-g00ecf