2000-02-18 13:59:18 +00:00
|
|
|
#ifndef __LIGHTING_SHADE_H__
|
|
|
|
#define __LIGHTING_SHADE_H__
|
1998-06-11 06:04:59 +00:00
|
|
|
|
2024-09-11 03:05:27 +00:00
|
|
|
typedef void (* get_ray_func) (GimpVector3 *vector,
|
|
|
|
gdouble *color_sum);
|
1998-06-11 06:04:59 +00:00
|
|
|
|
2024-09-11 03:05:27 +00:00
|
|
|
void get_ray_color (GimpVector3 *position,
|
|
|
|
gdouble *color_sum);
|
|
|
|
void get_ray_color_no_bilinear (GimpVector3 *position,
|
|
|
|
gdouble *color_sum);
|
|
|
|
void get_ray_color_ref (GimpVector3 *position,
|
|
|
|
gdouble *color_sum);
|
|
|
|
void get_ray_color_no_bilinear_ref (GimpVector3 *position,
|
|
|
|
gdouble *color_sum);
|
1998-06-11 06:04:59 +00:00
|
|
|
|
2001-01-01 18:35:09 +00:00
|
|
|
void precompute_init (gint w,
|
2024-09-11 03:05:27 +00:00
|
|
|
gint h);
|
2001-01-01 18:35:09 +00:00
|
|
|
void precompute_normals (gint x1,
|
2024-09-11 03:05:27 +00:00
|
|
|
gint x2,
|
|
|
|
gint y);
|
2013-02-16 14:09:48 +01:00
|
|
|
void interpol_row (gint x1,
|
|
|
|
gint x2,
|
|
|
|
gint y);
|
1998-06-11 06:04:59 +00:00
|
|
|
|
2000-02-18 13:59:18 +00:00
|
|
|
#endif /* __LIGHTING_SHADE_H__ */
|