chore: immediate.c unused note

This commit is contained in:
Hayden Kowalchuk 2020-03-05 14:54:07 -05:00
parent c842b6de48
commit 87874f0f1f

View File

@ -192,6 +192,7 @@ void APIENTRY glVertex2fv(const GLfloat* v) {
}
void APIENTRY glVertex4f(GLfloat x, GLfloat y, GLfloat z, GLfloat w) {
_GL_UNUSED(w);
glVertex3f(x, y, z);
}