Remove warning

This commit is contained in:
4VRDriver
2020-09-19 00:21:49 +02:00
parent a5818dfd04
commit dd9b808283
3 changed files with 4 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ void Mesh::draw(ShaderProgram *shaderProgram) {
}
void Mesh::drawWithoutTextures(ShaderProgram *shaderProgram) {
void Mesh::drawWithoutTextures() {
vertexArray.bind();
glDrawElements(GL_TRIANGLES, numElements, GL_UNSIGNED_INT, 0);