From c0b81150298ce9f2f21da42f26a57fe59a93bb77 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sun, 5 Aug 2018 04:40:01 +0500 Subject: Replaced usage of old texture atlas --- src/RendererSection.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/RendererSection.cpp') diff --git a/src/RendererSection.cpp b/src/RendererSection.cpp index 21c2714..bbf24ff 100644 --- a/src/RendererSection.cpp +++ b/src/RendererSection.cpp @@ -73,6 +73,14 @@ RendererSection::RendererSection(const RendererSectionData &data) { glVertexAttribDivisor(textureAttribPos, 1); glCheckError(); + //TextureLayers + GLuint layerAttribPos = 14; + glBindBuffer(GL_ARRAY_BUFFER, Vbo[LAYERS]); + glVertexAttribPointer(layerAttribPos, 1, GL_FLOAT, GL_FALSE, sizeof(GLfloat), nullptr); + glEnableVertexAttribArray(layerAttribPos); + glVertexAttribDivisor(layerAttribPos, 1); + glCheckError(); + //Blocks models GLuint matAttribPos = 8; size_t sizeOfMat4 = 4 * 4 * sizeof(GLfloat); @@ -156,6 +164,9 @@ void RendererSection::UpdateData(const RendererSectionData & data) { glBindBuffer(GL_ARRAY_BUFFER, Vbo[TEXTURES]); glBufferData(GL_ARRAY_BUFFER, data.textures.size() * sizeof(glm::vec4), data.textures.data(), GL_DYNAMIC_DRAW); + glBindBuffer(GL_ARRAY_BUFFER, Vbo[LAYERS]); + glBufferData(GL_ARRAY_BUFFER, data.textureLayers.size() * 1* sizeof(GLfloat), data.textureLayers.data(), GL_DYNAMIC_DRAW); + glBindBuffer(GL_ARRAY_BUFFER, Vbo[MODELS]); glBufferData(GL_ARRAY_BUFFER, data.models.size() * sizeof(glm::mat4), data.models.data(), GL_DYNAMIC_DRAW); -- cgit v1.2.3