Code

revert jasper's way overzealous fix in png-write.cpp rev 13700; new fix in item_rende...
[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 "libnr/nr-matrix.h"
18 #include "libnr/nr-rect-l.h"
20 namespace NR {
22 class FilterTile : public FilterPrimitive {
23 public:
24     FilterTile();
25     static FilterPrimitive *create();
26     virtual ~FilterTile();
28     virtual int render(FilterSlot &slot, Matrix const &trans);
29     virtual void area_enlarge(NRRectL &area, Matrix const &trans);
30 };
32 } /* namespace NR */
34 #endif /* __NR_FILTER_TILE_H__ */
35 /*
36   Local Variables:
37   mode:c++
38   c-file-style:"stroustrup"
39   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
40   indent-tabs-mode:nil
41   fill-column:99
42   End:
43 */
44 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :