Fixed assert on bind VAO.

This commit is contained in:
Daria Volvenkova 2016-05-10 13:14:00 +03:00 committed by Vladimir Byko-Ianko
parent a1edf3069a
commit 229b82793e

View file

@ -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;
}