forked from organicmaps/organicmaps
Fixed assert on bind VAO.
This commit is contained in:
parent
a1edf3069a
commit
229b82793e
1 changed files with 1 additions and 1 deletions
|
@ -275,9 +275,9 @@ void VertexArrayBuffer::ApplyMutation(ref_ptr<IndexBufferMutator> indexMutator,
|
|||
|
||||
bool VertexArrayBuffer::Bind() const
|
||||
{
|
||||
ASSERT(m_VAO != 0, ("You need to call Build method before bind it and render"));
|
||||
if (GLExtensionsList::Instance().IsSupported(GLExtensionsList::VertexArrayObject))
|
||||
{
|
||||
ASSERT(m_VAO != 0, ("You need to call Build method before bind it and render"));
|
||||
GLFunctions::glBindVertexArray(m_VAO);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue