summaryrefslogtreecommitdiff
path: root/src/new_render/render_scene.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-08-10 14:06:15 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-08-10 14:06:15 +1000
commit9cb4bfacc69b2a95ce8e9250afc33fb04d1ba548 (patch)
treefbe75da188ac83b34153ac79c367b9d57e0d5ff9 /src/new_render/render_scene.h
parent071a635e63536e50abfad7d5aeca1208dba58025 (diff)
remove old code
Diffstat (limited to 'src/new_render/render_scene.h')
-rw-r--r--src/new_render/render_scene.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/new_render/render_scene.h b/src/new_render/render_scene.h
deleted file mode 100644
index 31dc1c9..0000000
--- a/src/new_render/render_scene.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * @file render_scene.h
- * @brief
- */
-#pragma once
-#include "camera.h"
-#include "defines.h"
-#include "render_types.h"
-
-/** @brief Holds globally bound data for rendering a scene. Typically held by the renderer.
- * Whenever you call draw functions you can think of this as an implicit parameter. */
-typedef struct RenderScene {
- Camera camera;
- DirectionalLight sun;
-} RenderScene;
-
-// --- Public APIs
-
-PUB void SetCamera(Camera camera);
-PUB void SetMainLight(DirectionalLight light);