Quote Originally Posted by psychopath View Post
Make sure you're passing glDrawArrays a pointer to the first element of you're vertex array, not a pointer to the array itself.


A pointer to the first element of the array is a pointer to the array itself.

m_vertex_array and &m_vertex_array[0] are equivalent statements.