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.
This commit is contained in:
Ryan Houdek 2014-04-24 02:28:30 -05:00
parent 7f00cae2b6
commit 99338daa8f
1 changed files with 1 additions and 0 deletions

View File

@ -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;