From b0b481d709b9f69b1f212b48957686b09236c4c8 Mon Sep 17 00:00:00 2001 From: Brandon Schaefer Date: Thu, 27 Jul 2017 08:03:11 -0700 Subject: [PATCH] [mir] Same no need to wrap this, which is already being done --- src/video/mir/SDL_miropengl.c | 12 ------------ src/video/mir/SDL_miropengl.h | 4 +--- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/src/video/mir/SDL_miropengl.c b/src/video/mir/SDL_miropengl.c index ff9442776..1f10f6360 100644 --- a/src/video/mir/SDL_miropengl.c +++ b/src/video/mir/SDL_miropengl.c @@ -73,18 +73,6 @@ MIR_GL_LoadLibrary(_THIS, const char* path) return 0; } -void* -MIR_GL_GetProcAddress(_THIS, const char* proc) -{ - void* proc_addr = SDL_EGL_GetProcAddress(_this, proc); - - if (!proc_addr) { - SDL_SetError("Failed to find proc address!"); - } - - return proc_addr; -} - #endif /* SDL_VIDEO_DRIVER_MIR */ /* vi: set ts=4 sw=4 expandtab: */ diff --git a/src/video/mir/SDL_miropengl.h b/src/video/mir/SDL_miropengl.h index 511cbdea7..6fd5cb457 100644 --- a/src/video/mir/SDL_miropengl.h +++ b/src/video/mir/SDL_miropengl.h @@ -34,6 +34,7 @@ #define MIR_GL_GetSwapInterval SDL_EGL_GetSwapInterval #define MIR_GL_SetSwapInterval SDL_EGL_SetSwapInterval #define MIR_GL_UnloadLibrary SDL_EGL_UnloadLibrary +#define MIR_GL_GetProcAddress SDL_EGL_GetProcAddress extern int MIR_GL_SwapWindow(_THIS, SDL_Window* window); @@ -50,9 +51,6 @@ MIR_GL_LoadLibrary(_THIS, const char* path); extern void MIR_GL_UnloadLibrary(_THIS); -extern void* -MIR_GL_GetProcAddress(_THIS, const char* proc); - #endif /* _SDL_miropengl_h */ /* vi: set ts=4 sw=4 expandtab: */