~vaifrax/inkscape/bugfix170049

« back to all changes in this revision

Viewing changes to src/libnr/nr-svp-render.h

  • Committer: mental
  • Date: 2006-01-16 02:36:01 UTC
  • Revision ID: mental@users.sourceforge.net-20060116023601-wkr0h7edl5veyudq
moving trunk for module inkscape

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __NR_SVP_RENDER_H__
 
2
#define __NR_SVP_RENDER_H__
 
3
 
 
4
/*
 
5
 * Pixel buffer rendering library
 
6
 *
 
7
 * Authors:
 
8
 *   Lauris Kaplinski <lauris@kaplinski.com>
 
9
 *
 
10
 * This code is in public domain
 
11
 */
 
12
 
 
13
#include <libnr/nr-pixblock.h>
 
14
#include <libnr/nr-svp.h>
 
15
 
 
16
/* Renders graymask of svp into buffer */
 
17
void nr_pixblock_render_svp_mask_or (NRPixBlock *d, NRSVP *svp);
 
18
 
 
19
#endif
 
20
 
 
21
/*
 
22
  Local Variables:
 
23
  mode:c++
 
24
  c-file-style:"stroustrup"
 
25
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
26
  indent-tabs-mode:nil
 
27
  fill-column:99
 
28
  End:
 
29
*/
 
30
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :