~ubuntu-branches/ubuntu/oneiric/inkscape/oneiric-updates

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/filters/blend.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SP_FEBLEND_H_SEEN
 
2
#define SP_FEBLEND_H_SEEN
 
3
 
 
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
 */
 
16
 
 
17
#include "sp-filter.h"
 
18
#include "blend-fns.h"
 
19
 
 
20
#include "display/nr-filter-blend.h"
 
21
 
 
22
/* FeBlend base class */
 
23
class SPFeBlendClass;
 
24
 
 
25
struct SPFeBlend : public SPFilterPrimitive {
 
26
    /** BLEND ATTRIBUTES HERE */
 
27
    Inkscape::Filters::FilterBlendMode blend_mode;
 
28
    int in2;
 
29
};
 
30
 
 
31
struct SPFeBlendClass {
 
32
    SPFilterPrimitiveClass parent_class;
 
33
};
 
34
 
 
35
GType sp_feBlend_get_type();
 
36
 
 
37
 
 
38
#endif /* !SP_FEBLEND_H_SEEN */
 
39
 
 
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 :