diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-04-24 02:28:30 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-04-30 19:11:06 -0500 |
| commit | 99338daa8f2f75af607a1347bbbd2bc7959b2294 (patch) | |
| tree | 67c10b41077c58e061aa897e5a08aaf16cff09dc /Source | |
| parent | 7f00cae2b6a5d7ec457b65406e2fe95e657fadff (diff) | |
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.
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/VideoBackends/OGL/GLExtensions/GLExtensions.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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; |
