From 440b292c39162284a447b34d3a692143af9fbc87 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Thu, 30 Oct 2025 17:21:22 -0700 Subject: - Replace SceneCamera with Camera. - Remove backpointer from scene types to node to decouple underlying types from the scene graph. --- src/render/llr.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/render/llr.c') diff --git a/src/render/llr.c b/src/render/llr.c index a1b37be..189041a 100644 --- a/src/render/llr.c +++ b/src/render/llr.c @@ -46,9 +46,6 @@ Light* gfx_make_light(const LightDesc* desc) { void gfx_destroy_light(Light** light) { assert(light); if (*light) { - if ((*light)->parent.val) { - gfx_del_node((*light)->parent); - } mem_free_light(light); } } -- cgit v1.2.3