Olive
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
blur.h
Go to the documentation of this file.
1 #ifndef BLUR_H
2 #define BLUR_H
3 
4 #include <QImage>
5 #include <QRect>
6 
7 namespace olive {
8  namespace ui {
28  void blur(QImage& result, const QRect& rect, int radius, bool alphaOnly);
29  }
30 }
31 
32 #endif // BLUR_H
void blur(QImage &result, const QRect &rect, int radius, bool alphaOnly)
Convenience function for blurring a QImage.
Definition: blur.cpp:3