From 99338daa8f2f75af607a1347bbbd2bc7959b2294 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Thu, 24 Apr 2014 02:28:30 -0500 Subject: [PATCH] Fixes glVertexAttribIPointer on GLES. We need to pull in function pointers for OpenGL 3.0 in order to use glAttribIPointer. This isn't too big of an issue, and this code will be gone in the future when we change over to libepoxy. Just need to push code upstream to libepoxy to support Android with GLES and GL first. --- Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp b/Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp index 7c6bb7aeff..f6fd98a48a 100644 --- a/Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp +++ b/Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp @@ -1604,6 +1604,7 @@ namespace GLExtensions "GL_ARB_sync", "GL_ARB_ES2_compatibility", "VERSION_GLES3", + "VERSION_3_0", }; for (auto it : gles3exts) m_extension_list[it] = true;