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 80e8701 commit 631536bCopy full SHA for 631536b
flutter/shell/platform/tizen/tizen_renderer_egl.cc
@@ -443,6 +443,13 @@ void* TizenRendererEgl::OnProcResolver(const char* name) {
443
GL_FUNC(glVertexAttrib4fv)
444
GL_FUNC(glVertexAttribPointer)
445
GL_FUNC(glViewport)
446
+#define GL_FUNC_EXT(ExtFunctionName, FunctionName) \
447
+ else if (strcmp(name, #ExtFunctionName) == 0) { \
448
+ return reinterpret_cast<void*>(eglGetProcAddress(#FunctionName)); \
449
+ }
450
+ GL_FUNC_EXT(glMultiDrawArraysIndirectEXT, glMultiDrawArraysIndirect)
451
+ GL_FUNC_EXT(glMultiDrawElementsIndirectEXT, glMultiDrawElementsIndirect)
452
+#undef GL_FUNC_EXT
453
#undef GL_FUNC
454
455
FT_LOG(Warn) << "Could not resolve: " << name;
0 commit comments