
2008-03-24 Michael Natterer <mitch@gimp.org> * plug-ins/map-object * plug-ins/gradient-flare * plug-ins/ifs-compose * plug-ins/selection-to-path * plug-ins/lighting * plug-ins/help-browser * plug-ins/fli: rename files in these folders to have no underscores and match new names of the plug-ins. * configure.in: changed accordingly. svn path=/trunk/; revision=25197
18 lines
600 B
C
18 lines
600 B
C
#ifndef __LIGHTING_SHADE_H__
|
|
#define __LIGHTING_SHADE_H__
|
|
|
|
typedef GimpRGB (* get_ray_func) (GimpVector3 *vector);
|
|
|
|
GimpRGB get_ray_color (GimpVector3 *position);
|
|
GimpRGB get_ray_color_no_bilinear (GimpVector3 *position);
|
|
GimpRGB get_ray_color_ref (GimpVector3 *position);
|
|
GimpRGB get_ray_color_no_bilinear_ref (GimpVector3 *position);
|
|
|
|
void precompute_init (gint w,
|
|
gint h);
|
|
void precompute_normals (gint x1,
|
|
gint x2,
|
|
gint y);
|
|
|
|
#endif /* __LIGHTING_SHADE_H__ */
|