]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/imagefilters.cpp
Pass clang-format on various cpp/header files (#5559)
[dragonfireclient.git] / src / imagefilters.cpp
index a995e98d6267d1f13f5bd1f424b3e6614dff6754..b34027725a93728d6c54c6313efb357904811b97 100644 (file)
@@ -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<u32> 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<s32> &srcrect, video::IImage *dest) {
-
+void imageScaleNNAA(video::IImage *src, const core::rect<s32> &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;