aboutsummaryrefslogtreecommitdiffstats
path: root/include/systems/light.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2019-02-25 18:47:55 -0500
committerClyne Sullivan <tullivan99@gmail.com>2019-02-25 18:47:55 -0500
commitd7bae41fab5570bdac547a46463974adb4723f96 (patch)
tree37b0567300f2e3d0a74ceae5861272f4ff970558 /include/systems/light.hpp
parent58774909a78f06b8de3cb60e2f010e8ceccbf3a6 (diff)
mem leak patches; world ground from image
Diffstat (limited to 'include/systems/light.hpp')
-rw-r--r--include/systems/light.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/systems/light.hpp b/include/systems/light.hpp
index ba91113..02c7eed 100644
--- a/include/systems/light.hpp
+++ b/include/systems/light.hpp
@@ -21,6 +21,11 @@ class LightSystem : public entityx::System<LightSystem> {
private:
static std::vector<Light> lights;
+ static GLfloat *colorData;
+ static GLfloat *coordData;
+
+ static void resizeLights(void);
+
public:
void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override;