From cb951763fd823c67ba1187655b2772503439f417 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 30 Dec 2014 10:29:18 -0800 Subject: [PATCH] CR feedback spacing --- libraries/render-utils/src/GeometryCache.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/render-utils/src/GeometryCache.cpp b/libraries/render-utils/src/GeometryCache.cpp index e7d40c7627..d71aa0b5cf 100644 --- a/libraries/render-utils/src/GeometryCache.cpp +++ b/libraries/render-utils/src/GeometryCache.cpp @@ -730,7 +730,7 @@ void GeometryCache::renderQuad(const glm::vec2& topLeft, const glm::vec2& bottom int vertexPoints = vertices * FLOATS_PER_VERTEX; GLfloat* vertexData = new GLfloat[vertexPoints]; // text coords & vertices GLfloat* vertex = vertexData; - static GLubyte cannonicalIndices[indices] = { 0, 1, 2, 3 }; + static GLubyte cannonicalIndices[indices] = {0, 1, 2, 3}; int v = 0; vertex[v++] = topLeft.x; @@ -802,7 +802,7 @@ void GeometryCache::renderQuad(const glm::vec3& topLeft, const glm::vec3& bottom int vertexPoints = vertices * FLOATS_PER_VERTEX; GLfloat* vertexData = new GLfloat[vertexPoints]; // only vertices GLfloat* vertex = vertexData; - static GLubyte cannonicalIndices[indices] = { 0, 1, 2, 3 }; + static GLubyte cannonicalIndices[indices] = {0, 1, 2, 3}; int v = 0; vertex[v++] = topLeft.x; @@ -881,7 +881,7 @@ void GeometryCache::renderQuad(const glm::vec3& topLeft, const glm::vec3& bottom int vertexPoints = vertices * FLOATS_PER_VERTEX; GLfloat* vertexData = new GLfloat[vertexPoints]; // text coords & vertices GLfloat* vertex = vertexData; - static GLubyte cannonicalIndices[indices] = { 0, 1, 2, 3 }; + static GLubyte cannonicalIndices[indices] = {0, 1, 2, 3}; int v = 0; vertex[v++] = topLeft.x;