Code

Node tool: fix Tab and Shift+Tab
[inkscape.git] / src / display / pixblock-transform.h
1 #ifndef __NR_PIXBLOCK_TRANSFORM_H__
2 #define __NR_PIXBLOCK_TRANSFORM_H__
4 /*
5  * Functions for blitting pixblocks using matrix transfomation
6  *
7  * Author:
8  *   Niko Kiirala <niko@kiirala.com>
9  *
10  * Copyright (C) 2006 Niko Kiirala
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #include "libnr/nr-pixblock.h"
16 #include <2geom/forward.h>
18 namespace NR {
20 void transform_nearest(NRPixBlock *to, NRPixBlock *from, Geom::Matrix const &trans);
21 void transform_bicubic(NRPixBlock *to, NRPixBlock *from, Geom::Matrix const &trans);
23 } /* namespace NR */
25 #endif // __NR_PIXBLOCK_TRANSFORM_H__
26 /*
27   Local Variables:
28   mode:c++
29   c-file-style:"stroustrup"
30   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
31   indent-tabs-mode:nil
32   fill-column:99
33   End:
34 */
35 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :