diff --git a/Source/Core/VideoBackends/OGL/GLUtil.cpp b/Source/Core/VideoBackends/OGL/GLUtil.cpp index dddc299fb9..8809d6be39 100644 --- a/Source/Core/VideoBackends/OGL/GLUtil.cpp +++ b/Source/Core/VideoBackends/OGL/GLUtil.cpp @@ -129,6 +129,7 @@ void OpenGL_CreateAttributelessVAO() glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat), nullptr, GL_STATIC_DRAW); // We must also define vertex attribute 0. + glBindVertexArray(attributelessVAO); glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 0, nullptr); }