Code

Merge from fe-moved
[inkscape.git] / src / filters / blend.h
1 #ifndef SP_FEBLEND_H_SEEN
2 #define SP_FEBLEND_H_SEEN
4 /** \file
5  * SVG <feBlend> implementation, see Blend.cpp.
6  */
7 /*
8  * Authors:
9  *   Hugo Rodrigues <haa.rodrigues@gmail.com>
10  *   Niko Kiirala <niko@kiirala.com>
11  *
12  * Copyright (C) 2006,2007 authors
13  *
14  * Released under GNU GPL, read the file 'COPYING' for more information
15  */
17 #include "sp-filter.h"
18 #include "blend-fns.h"
20 #include "display/nr-filter-blend.h"
22 /* FeBlend base class */
23 class SPFeBlendClass;
25 struct SPFeBlend : public SPFilterPrimitive {
26     /** BLEND ATTRIBUTES HERE */
27     NR::FilterBlendMode blend_mode;
28     int in2;
29 };
31 struct SPFeBlendClass {
32     SPFilterPrimitiveClass parent_class;
33 };
35 GType sp_feBlend_get_type();
38 #endif /* !SP_FEBLEND_H_SEEN */
40 /*
41   Local Variables:
42   mode:c++
43   c-file-style:"stroustrup"
44   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
45   indent-tabs-mode:nil
46   fill-column:99
47   End:
48 */
49 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :