Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions flutter/shell/platform/tizen/tizen_renderer_egl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,13 @@ void* TizenRendererEgl::OnProcResolver(const char* name) {
GL_FUNC(glVertexAttrib4fv)
GL_FUNC(glVertexAttribPointer)
GL_FUNC(glViewport)
#define GL_FUNC_EXT(ExtFunctionName, FunctionName) \
else if (strcmp(name, #ExtFunctionName) == 0) { \
return reinterpret_cast<void*>(eglGetProcAddress(#FunctionName)); \
}
GL_FUNC_EXT(glMultiDrawArraysIndirectEXT, glMultiDrawArraysIndirect)
GL_FUNC_EXT(glMultiDrawElementsIndirectEXT, glMultiDrawElementsIndirect)
#undef GL_FUNC_EXT
#undef GL_FUNC

FT_LOG(Warn) << "Could not resolve: " << name;
Expand Down