initial import
[vuplus_webkit] / Source / WebCore / platform / graphics / filters / FEGaussianBlur.h
1 /*
2  * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3  * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4  * Copyright (C) 2005 Eric Seidel <eric@webkit.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 #ifndef FEGaussianBlur_h
23 #define FEGaussianBlur_h
24
25 #if ENABLE(FILTERS)
26 #include "FilterEffect.h"
27 #include "Filter.h"
28
29 namespace WebCore {
30
31 class FEGaussianBlur : public FilterEffect {
32 public:
33     static PassRefPtr<FEGaussianBlur> create(Filter*, float, float);
34
35     float stdDeviationX() const;
36     void setStdDeviationX(float);
37
38     float stdDeviationY() const;
39     void setStdDeviationY(float);
40
41     static float calculateStdDeviation(float);
42
43     virtual void apply();
44     virtual void dump();
45     
46     virtual void determineAbsolutePaintRect();
47     static void calculateKernelSize(Filter*, unsigned& kernelSizeX, unsigned& kernelSizeY, float stdX, float stdY);
48
49     virtual TextStream& externalRepresentation(TextStream&, int indention) const;
50
51 private:
52 #if ENABLE(PARALLEL_JOBS)
53     static const int s_minimalRectDimension = 100 * 100; // Empirical data limit for parallel jobs
54
55     template<typename Type>
56     friend class ParallelJobs;
57
58     struct PlatformApplyParameters {
59         FEGaussianBlur* filter;
60         RefPtr<ByteArray> srcPixelArray;
61         RefPtr<ByteArray> dstPixelArray;
62         int width;
63         int height;
64         unsigned kernelSizeX;
65         unsigned kernelSizeY;
66     };
67
68     static void platformApplyWorker(PlatformApplyParameters*);
69 #endif // ENABLE(PARALLEL_JOBS)
70
71     FEGaussianBlur(Filter*, float, float);
72
73     static inline void kernelPosition(int boxBlur, unsigned& std, int& dLeft, int& dRight);
74     inline void platformApply(ByteArray* srcPixelArray, ByteArray* tmpPixelArray, unsigned kernelSizeX, unsigned kernelSizeY, IntSize& paintSize);
75
76     inline void platformApplyGeneric(ByteArray* srcPixelArray, ByteArray* tmpPixelArray, unsigned kernelSizeX, unsigned kernelSizeY, IntSize& paintSize);
77     inline void platformApplyNeon(ByteArray* srcPixelArray, ByteArray* tmpPixelArray, unsigned kernelSizeX, unsigned kernelSizeY, IntSize& paintSize);
78
79     float m_stdX;
80     float m_stdY;
81 };
82
83 inline void FEGaussianBlur::kernelPosition(int boxBlur, unsigned& std, int& dLeft, int& dRight)
84 {
85     // check http://www.w3.org/TR/SVG/filters.html#feGaussianBlurElement for details
86     switch (boxBlur) {
87     case 0:
88         if (!(std % 2)) {
89             dLeft = std / 2 - 1;
90             dRight = std - dLeft;
91         } else {
92             dLeft = std / 2;
93             dRight = std - dLeft;
94         }
95         break;
96     case 1:
97         if (!(std % 2)) {
98             dLeft++;
99             dRight--;
100         }
101         break;
102     case 2:
103         if (!(std % 2)) {
104             dRight++;
105             std++;
106         }
107         break;
108     }
109 }
110
111 } // namespace WebCore
112
113 #endif // ENABLE(FILTERS)
114
115 #endif // FEGaussianBlur_h