Lines Matching full:vaos
2150 // Test with multiple VAOs
2154 GLuint vaos[2] = {0};
2157 glGenVertexArrays(2, vaos);
2164 glBindVertexArray(vaos[0]);
2174 glBindVertexArray(vaos[1]);
2184 glBindVertexArray(vaos[0]);
2188 // deleting clears from bound vaos ...
2193 // ... but does not from non-bound vaos?
2194 glBindVertexArray(vaos[1]);
2198 glDeleteVertexArrays(2, vaos);