We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3db934 commit bcf6d18Copy full SHA for bcf6d18
1 file changed
src/main/cpp/gles/loader.cpp
@@ -209,6 +209,10 @@ void InitGLESCapabilities() {
209
if (global_settings.ext_compute_shader) {
210
AppendExtension("GL_ARB_compute_shader");
211
}
212
+
213
+ if (g_gles_caps.major > 3 || (g_gles_caps.major == 3 && g_gles_caps.minor >= 1)) {
214
+ AppendExtension("GL_ARB_vertex_attrib_binding");
215
+ }
216
217
218
void init_target_gles() {
0 commit comments