summaryrefslogtreecommitdiffstats
path: root/src/RendererSection.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/RendererSection.hpp')
-rw-r--r--src/RendererSection.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/RendererSection.hpp b/src/RendererSection.hpp
index fe5e96b..9e5fd99 100644
--- a/src/RendererSection.hpp
+++ b/src/RendererSection.hpp
@@ -17,6 +17,7 @@ struct RendererSectionData {
std::vector<glm::mat4> models;
std::vector<glm::vec4> textures;
std::vector<glm::vec3> colors;
+ std::vector<glm::vec2> lights;
size_t hash;
Vector sectionPos;
@@ -24,7 +25,7 @@ struct RendererSectionData {
};
class RendererSection {
- GLuint Vao, VboTextures, VboModels, VboColors;
+ GLuint Vao, VboTextures, VboModels, VboColors, VboLights;
static GLuint VboVertices, VboUvs;
static std::map<GLuint, int> refCounterVbo;