Code

get rid of a lot of no longer needed "libnr/nr-..." includes.
[inkscape.git] / src / display / nr-filter-specularlighting.h
1 #ifndef __NR_FILTER_SPECULARLIGHTING_H__
2 #define __NR_FILTER_SPECULARLIGHTING_H__
4 /*
5  * feSpecularLighting renderer
6  *
7  * Authors:
8  *   Niko Kiirala <niko@kiirala.com>
9  *   Jean-Rene Reinhard <jr@komite.net>
10  * 
11  * Copyright (C) 2007 authors
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
16 #include <gdk/gdktypes.h>
17 #include "display/nr-light-types.h"
18 #include "display/nr-filter-primitive.h"
19 #include "display/nr-filter-slot.h"
20 #include "display/nr-filter-units.h"
21 #include "filters/distantlight.h"
22 #include "filters/pointlight.h"
23 #include "filters/spotlight.h"
24 #include "color.h"
26 namespace NR {
27     
28 class FilterSpecularLighting : public FilterPrimitive {
29 public:
30     union {
31         SPFeDistantLight *distant;
32         SPFePointLight *point;
33         SPFeSpotLight *spot;
34     } light;
35     LightType light_type;
36     gdouble surfaceScale;
37     gdouble specularConstant;
38     gdouble specularExponent;
39     guint32 lighting_color;
40     
41     FilterSpecularLighting();
42     static FilterPrimitive *create();
43     virtual ~FilterSpecularLighting();
44     virtual int render(FilterSlot &slot, FilterUnits const &units);
45     virtual FilterTraits get_input_traits();
47 private:
48 };
50 } /* namespace NR */
52 #endif /* __NR_FILTER_SPECULARLIGHTING_H__ */
53 /*
54   Local Variables:
55   mode:c++
56   c-file-style:"stroustrup"
57   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
58   indent-tabs-mode:nil
59   fill-column:99
60   End:
61 */
62 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :