summaryrefslogtreecommitdiffstats
path: root/examples/opengl/hellogles3/glwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/opengl/hellogles3/glwindow.cpp')
-rw-r--r--examples/opengl/hellogles3/glwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/opengl/hellogles3/glwindow.cpp b/examples/opengl/hellogles3/glwindow.cpp
index 13cbc41ce8..9458b74810 100644
--- a/examples/opengl/hellogles3/glwindow.cpp
+++ b/examples/opengl/hellogles3/glwindow.cpp
@@ -243,7 +243,8 @@ void GLWindow::initializeGL()
f->glEnableVertexAttribArray(0);
f->glEnableVertexAttribArray(1);
f->glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(GLfloat), 0);
- f->glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(GLfloat), reinterpret_cast<void *>(3 * sizeof(GLfloat)));
+ f->glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(GLfloat),
+ reinterpret_cast<void *>(3 * sizeof(GLfloat)));
m_vbo->release();
f->glEnable(GL_DEPTH_TEST);