~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/platform/graphics/filters/FEComposite.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 FEComposite_h
 
23
#define FEComposite_h
 
24
 
 
25
#if ENABLE(FILTERS)
 
26
#include "FilterEffect.h"
 
27
 
 
28
#include "Filter.h"
 
29
#include <wtf/text/WTFString.h>
 
30
 
 
31
namespace WebCore {
 
32
 
 
33
enum CompositeOperationType {
 
34
    FECOMPOSITE_OPERATOR_UNKNOWN    = 0, 
 
35
    FECOMPOSITE_OPERATOR_OVER       = 1,
 
36
    FECOMPOSITE_OPERATOR_IN         = 2,
 
37
    FECOMPOSITE_OPERATOR_OUT        = 3,
 
38
    FECOMPOSITE_OPERATOR_ATOP       = 4,
 
39
    FECOMPOSITE_OPERATOR_XOR        = 5,
 
40
    FECOMPOSITE_OPERATOR_ARITHMETIC = 6
 
41
};
 
42
 
 
43
class FEComposite : public FilterEffect {
 
44
public:
 
45
    static PassRefPtr<FEComposite> create(Filter*, const CompositeOperationType&, float, float, float, float);
 
46
 
 
47
    CompositeOperationType operation() const;
 
48
    bool setOperation(CompositeOperationType);
 
49
 
 
50
    float k1() const;
 
51
    bool setK1(float);
 
52
 
 
53
    float k2() const;
 
54
    bool setK2(float);
 
55
 
 
56
    float k3() const;
 
57
    bool setK3(float);
 
58
 
 
59
    float k4() const;
 
60
    bool setK4(float);
 
61
 
 
62
    virtual void correctFilterResultIfNeeded() OVERRIDE;
 
63
 
 
64
    virtual void platformApplySoftware();
 
65
    virtual void dump();
 
66
    
 
67
    virtual void determineAbsolutePaintRect();
 
68
 
 
69
    virtual TextStream& externalRepresentation(TextStream&, int indention) const;
 
70
 
 
71
protected:
 
72
    virtual bool requiresValidPreMultipliedPixels() OVERRIDE { return m_type != FECOMPOSITE_OPERATOR_ARITHMETIC; }
 
73
 
 
74
private:
 
75
    FEComposite(Filter*, const CompositeOperationType&, float, float, float, float);
 
76
 
 
77
    inline void platformArithmeticSoftware(Uint8ClampedArray* source, Uint8ClampedArray* destination,
 
78
        float k1, float k2, float k3, float k4);
 
79
    template <int b1, int b4>
 
80
    static inline void computeArithmeticPixelsNeon(unsigned char* source, unsigned  char* destination,
 
81
        unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
 
82
    static inline void platformArithmeticNeon(unsigned char* source, unsigned  char* destination,
 
83
        unsigned pixelArrayLength, float k1, float k2, float k3, float k4);
 
84
 
 
85
    CompositeOperationType m_type;
 
86
    float m_k1;
 
87
    float m_k2;
 
88
    float m_k3;
 
89
    float m_k4;
 
90
};
 
91
 
 
92
} // namespace WebCore
 
93
 
 
94
#endif // ENABLE(FILTERS)
 
95
 
 
96
#endif // FEComposite_h