From 29d0c06eb3a69cd838e1224f46942389c501f9b8 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Wed, 13 Jan 2016 13:51:00 +0100 Subject: Removed some unnecessary comments. --- voronoisplat.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'voronoisplat.cpp') diff --git a/voronoisplat.cpp b/voronoisplat.cpp index b6b480d..6aa7a4a 100644 --- a/voronoisplat.cpp +++ b/voronoisplat.cpp @@ -297,7 +297,6 @@ bool VoronoiSplatTexture::updateTexture() void VoronoiSplatTexture::updateSites() { - // Update VBO with the new data gl.glBindBuffer(GL_ARRAY_BUFFER, m_VBOs[0]); gl.glBufferData(GL_ARRAY_BUFFER, m_sites.size() * sizeof(float), m_sites.data(), GL_DYNAMIC_DRAW); @@ -310,7 +309,6 @@ void VoronoiSplatTexture::updateSites() void VoronoiSplatTexture::updateValues() { - // Update VBO with the new data gl.glBindBuffer(GL_ARRAY_BUFFER, m_VBOs[1]); gl.glBufferData(GL_ARRAY_BUFFER, m_values.size() * sizeof(float), m_values.data(), GL_DYNAMIC_DRAW); -- cgit v1.2.3