mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user