Code

45d280d3957679f15fccce100b72994cad146569
[inkscape.git] / src / display / nr-filter-tile.h
1 #ifndef __NR_FILTER_TILE_H__
2 #define __NR_FILTER_TILE_H__
4 /*
5  * feTile filter primitive renderer
6  *
7  * Authors:
8  *   Felipe CorrĂȘa da Silva Sanches <felipe.sanches@gmail.com>
9  *
10  * Copyright (C) 2007 authors
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #include "display/nr-filter-primitive.h"
16 #include "display/nr-filter-slot.h"
17 #include "display/nr-filter-units.h"
18 #include "libnr/nr-matrix.h"
19 #include "libnr/nr-rect-l.h"
21 namespace NR {
23 class FilterTile : public FilterPrimitive {
24 public:
25     FilterTile();
26     static FilterPrimitive *create();
27     virtual ~FilterTile();
29     virtual int render(FilterSlot &slot, FilterUnits const &units);
30     virtual void area_enlarge(NRRectL &area, Matrix const &trans);
31     virtual FilterTraits get_input_traits();
32 };
34 } /* namespace NR */
36 #endif /* __NR_FILTER_TILE_H__ */
37 /*
38   Local Variables:
39   mode:c++
40   c-file-style:"stroustrup"
41   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
42   indent-tabs-mode:nil
43   fill-column:99
44   End:
45 */
46 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :