From ddf96c7a17e45cdfb4a8060c3b0f74f17f7156df Mon Sep 17 00:00:00 2001 From: kwolekr Date: Wed, 1 Apr 2015 00:19:10 -0400 Subject: Fix some minor details from 6d61375 --- src/imagefilters.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/imagefilters.cpp') diff --git a/src/imagefilters.cpp b/src/imagefilters.cpp index a995e98d6..b34027725 100644 --- a/src/imagefilters.cpp +++ b/src/imagefilters.cpp @@ -31,8 +31,8 @@ with this program; if not, write to the Free Software Foundation, Inc., * transparent. Should be 127 for 3d where alpha is threshold, but 0 for * 2d where alpha is blended. */ -void imageCleanTransparent(video::IImage *src, u32 threshold) { - +void imageCleanTransparent(video::IImage *src, u32 threshold) +{ core::dimension2d dim = src->getDimension(); // Walk each pixel looking for fully transparent ones. @@ -85,8 +85,8 @@ void imageCleanTransparent(video::IImage *src, u32 threshold) { * filter is designed to produce the most accurate results for both upscaling * and downscaling. */ -void imageScaleNNAA(video::IImage *src, const core::rect &srcrect, video::IImage *dest) { - +void imageScaleNNAA(video::IImage *src, const core::rect &srcrect, video::IImage *dest) +{ double sx, sy, minsx, maxsx, minsy, maxsy, area, ra, ga, ba, aa, pw, ph, pa; u32 dy, dx; video::SColor pxl; -- cgit v1.2.3