From b5d8fa48cd3f03c6a01b93ccab17ac0b3b949006 Mon Sep 17 00:00:00 2001 From: Themaister Date: Tue, 7 May 2013 20:43:09 +0200 Subject: [PATCH] Don't attempt to look up VAO syms. They're not used ... --- libretro-test-gl/libretro-test.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libretro-test-gl/libretro-test.c b/libretro-test-gl/libretro-test.c index bc3eaa6201..84ac4b1a46 100644 --- a/libretro-test-gl/libretro-test.c +++ b/libretro-test-gl/libretro-test.c @@ -30,9 +30,6 @@ static PFNGLGETATTRIBLOCATIONPROC pglGetAttribLocation; static PFNGLVERTEXATTRIBPOINTERPROC pglVertexAttribPointer; static PFNGLENABLEVERTEXATTRIBARRAYPROC pglEnableVertexAttribArray; static PFNGLDISABLEVERTEXATTRIBARRAYPROC pglDisableVertexAttribArray; -static PFNGLGENVERTEXARRAYSPROC pglGenVertexArrays; -static PFNGLBINDVERTEXARRAYPROC pglBindVertexArray; -static PFNGLDELETEVERTEXARRAYSPROC pglDeleteVertexArray; static PFNGLGENBUFFERSPROC pglGenBuffers; static PFNGLBUFFERDATAPROC pglBufferData; static PFNGLBINDBUFFERPROC pglBindBuffer; @@ -59,9 +56,6 @@ static const struct gl_proc_map proc_map[] = { PROC_BIND(VertexAttribPointer), PROC_BIND(EnableVertexAttribArray), PROC_BIND(DisableVertexAttribArray), - PROC_BIND(GenVertexArrays), - PROC_BIND(BindVertexArray), - PROC_BIND(DeleteVertexArray), PROC_BIND(GenBuffers), PROC_BIND(BufferData), PROC_BIND(BindBuffer),