diff options
author | Julian T <julian@jtle.dk> | 2020-05-06 17:19:26 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2020-05-06 17:19:26 +0200 |
commit | c2bd065bafe52a3e85be7a87945ed47aec7a33d9 (patch) | |
tree | 637c08399e3a6f20cff390d9c4e9a4116950efc8 /ray.h | |
parent | 86848ec1abaec38435d93d99a80cd5476967bd23 (diff) |
First version of global light
Diffstat (limited to 'ray.h')
-rw-r--r-- | ray.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,6 +20,6 @@ COORD_T ray_intersect_sphere(sphere_t *s, ray_t *ray, bool skip_dist); COORD_T ray_intersect_plane(plane_t *p, ray_t *ray, bool skip_dist); object_t *ray_cast(space_t *s, ray_t *r, COORD_T *dist_ret, bool chk, COORD_T chk_dist); -void ray_trace(space_t *s, unsigned int x, unsigned int y, unsigned samples, color_t *c, void *seed); +void ray_trace(space_t *s, unsigned int x, unsigned int y, color_t *c, void *seed); #endif |