2000-02-18 Michael Natterer <mitch@gimp.org> * libgimp/Makefile.am * libgimp/gimppixmap.[ch]: simple widget which creates a pixmap from XPM data without the need to worry about it's parent's "realized" state and other stuff. * libgimp/gimpcolorbutton.c: removed a gtk-doc comment from an internal function. * libgimp/gimpwidgets.[ch]: new function gimp_pixmap_button_new(). * app/gimpui.h * libgimp/gimpui.h: include gimppixmap.h. * app/gradient.c * app/nav_window.c * app/palette.c * libgimp/gimpfileselection.[ch] * libgimp/gimppatheditor.c * libgimp/gimpquerybox.c * plug-ins/FractalExplorer/FractalExplorer.c: use GimpPixmaps. * plug-ins/Lighting/* * plug-ins/MapObject/*: some more cleanups: reduced # of includes, made private functions static, use GimpPixmaps. * plug-ins/libgck/Makefile.am * plug-ins/libgck/NEWS * plug-ins/libgck/README * plug-ins/libgck/TODO * plug-ins/libgck/docs/html/gck.html * plug-ins/libgck/docs/html/gck_application_window.html * plug-ins/libgck/docs/html/gck_dialog_window.html * plug-ins/libgck/docs/html/gckmath.html * plug-ins/libgck/docs/html/gckui.html * plug-ins/libgck/docs/html/gckvector.html: removed because they documented files which don't exist any more.
17 lines
590 B
C
17 lines
590 B
C
#ifndef __LIGHTING_SHADE_H__
|
|
#define __LIGHTING_SHADE_H__
|
|
|
|
typedef GckRGB (* get_ray_func) (GimpVector3 *vector);
|
|
|
|
GckRGB get_ray_color (GimpVector3 *position);
|
|
GckRGB get_ray_color_no_bilinear (GimpVector3 *position);
|
|
GckRGB get_ray_color_ref (GimpVector3 *position);
|
|
GckRGB 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__ */
|