| Index: mojo/public/platform/native/mgl_thunks.c
|
| diff --git a/mojo/public/platform/native/mgl_thunks.c b/mojo/public/platform/native/mgl_thunks.c
|
| index 2e8e9d84c37e3aa3c97f73d03f7616ffccfb87fe..c58e5f055c50ab8eb31815b93b47a061ab86729e 100644
|
| --- a/mojo/public/platform/native/mgl_thunks.c
|
| +++ b/mojo/public/platform/native/mgl_thunks.c
|
| @@ -43,3 +43,8 @@ THUNK_EXPORT size_t MojoSetMGLThunks(
|
| g_thunks = *mgl_thunks;
|
| return sizeof(g_thunks);
|
| }
|
| +
|
| +MGLFunctionPointerType MGLGetProcAddress(const char* name) {
|
| + assert(g_thunks.MGLGetProcAddress);
|
| + return g_thunks.MGLGetProcAddress(name);
|
| +}
|
|
|