Added comments to new lines.

Added reference to the PR

Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
Sergiy Kozyr 2024-12-03 15:07:22 +02:00 committed by Alexander Borsuk
parent 1caf64e315
commit 362138160d

View file

@ -268,8 +268,10 @@ void MapWidget::Build()
QVector4D(1.0, -1.0, 1.0, 0.0)};
m_vbo->allocate(static_cast<void*>(vertices), sizeof(vertices));
QOpenGLFunctions *f = QOpenGLContext::currentContext()->functions();
// 0-index of the buffer is linked to "a_position" attribute in vertex shader.
// Introduced in https://github.com/organicmaps/organicmaps/pull/9814
f->glEnableVertexAttribArray(0);
f->glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, 4 * sizeof(GLfloat), nullptr);
f->glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, sizeof(QVector4D), nullptr);
m_vbo->release();
m_program->release();