Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / graphics / filters / FEComposite.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  * Copyright (C) 2013 Google Inc. All rights reserved.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public License
18  * along with this library; see the file COPYING.LIB.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef FEComposite_h
24 #define FEComposite_h
25
26 #include "SkXfermode.h"
27 #include "platform/graphics/filters/FilterEffect.h"
28 #include "wtf/text/WTFString.h"
29
30 namespace blink {
31
32 enum CompositeOperationType {
33     FECOMPOSITE_OPERATOR_UNKNOWN    = 0,
34     FECOMPOSITE_OPERATOR_OVER       = 1,
35     FECOMPOSITE_OPERATOR_IN         = 2,
36     FECOMPOSITE_OPERATOR_OUT        = 3,
37     FECOMPOSITE_OPERATOR_ATOP       = 4,
38     FECOMPOSITE_OPERATOR_XOR        = 5,
39     FECOMPOSITE_OPERATOR_ARITHMETIC = 6
40 };
41
42 class PLATFORM_EXPORT FEComposite : public FilterEffect {
43 public:
44     static PassRefPtr<FEComposite> create(Filter*, const CompositeOperationType&, float, float, float, float);
45
46     CompositeOperationType operation() const;
47     bool setOperation(CompositeOperationType);
48
49     float k1() const;
50     bool setK1(float);
51
52     float k2() const;
53     bool setK2(float);
54
55     float k3() const;
56     bool setK3(float);
57
58     float k4() const;
59     bool setK4(float);
60
61     virtual FloatRect determineAbsolutePaintRect(const FloatRect& requestedRect) override;
62
63     virtual TextStream& externalRepresentation(TextStream&, int indention) const override;
64
65     virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) override;
66     virtual PassRefPtr<SkImageFilter> createImageFilterWithoutValidation(SkiaImageFilterBuilder*) override;
67
68 protected:
69     virtual bool mayProduceInvalidPreMultipliedPixels() override { return m_type == FECOMPOSITE_OPERATOR_ARITHMETIC; }
70
71 private:
72     FEComposite(Filter*, const CompositeOperationType&, float, float, float, float);
73
74     PassRefPtr<SkImageFilter> createImageFilterInternal(SkiaImageFilterBuilder*, bool requiresPMColorValidation);
75
76     inline void platformArithmeticSoftware(Uint8ClampedArray* source, Uint8ClampedArray* destination,
77         float k1, float k2, float k3, float k4);
78     template <int b1, int b4>
79     static inline void computeArithmeticPixelsNeon(unsigned char* source, unsigned  char* destination,
80         unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
81     static inline void platformArithmeticNeon(unsigned char* source, unsigned  char* destination,
82         unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
83
84     CompositeOperationType m_type;
85     float m_k1;
86     float m_k2;
87     float m_k3;
88     float m_k4;
89 };
90
91 } // namespace blink
92
93 #endif // FEComposite_h