mirror of
https://github.com/libretro/libretro-common.git
synced 2024-11-27 18:31:05 +00:00
Update
This commit is contained in:
parent
f42b3a1c61
commit
ede54c09ab
@ -1687,10 +1687,10 @@ void rglGenVertexArrays(GLsizei n, GLuint *arrays)
|
||||
* OpenGL : 3.0
|
||||
* OpenGLES : 3.0
|
||||
*/
|
||||
void rglDeleteVertexArrays(GLuint array)
|
||||
void rglDeleteVertexArrays(GLsizei n, const GLuint *arrays)
|
||||
{
|
||||
#if defined(HAVE_OPENGL) || defined(HAVE_OPENGLES) && defined(HAVE_OPENGLES3)
|
||||
glDeleteVertexArrays(array);
|
||||
glDeleteVertexArrays(n, arrays);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -365,7 +365,7 @@ void rglTexSubImage2D( GLenum target,
|
||||
GLenum format,
|
||||
GLenum type,
|
||||
const GLvoid * pixels);
|
||||
void rglDeleteVertexArrays(GLuint array);
|
||||
void rglDeleteVertexArrays(GLsizei n, const GLuint *arrays);
|
||||
|
||||
RETRO_END_DECLS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user