From 7359b43f9fde19b6911b3ed95c8b31ea5e6a689b Mon Sep 17 00:00:00 2001 From: Julian T Date: Thu, 26 Mar 2020 15:43:23 +0100 Subject: Started work on area light, cleaned up ray.c and clamped colors --- scene.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'scene.c') diff --git a/scene.c b/scene.c index 730d8c8..6008942 100644 --- a/scene.c +++ b/scene.c @@ -90,13 +90,15 @@ object_t *add_object(container_t *cont, unsigned type) return o; } -light_t *add_light(container_t *cont) +light_t *add_light(container_t *cont, unsigned type) { light_t *o = container_lig_space(cont); if (!o) { return NULL; } + o->type = type; + space_t *s = &cont->space; if (s) { o->next = s->lights; @@ -112,6 +114,7 @@ light_t *add_light(container_t *cont) material_t *add_material(container_t *cont) { material_t *m = container_mat_space(cont); + memset(m, 0, sizeof(material_t)); return m; } -- cgit v1.2.3