summaryrefslogtreecommitdiffstats
path: root/video/out/cocoa_common.m
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2014-12-28 19:10:44 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2014-12-28 19:10:44 +0100
commitf987625d5a84546b564bd15635c4051af5dc7113 (patch)
tree7de71cc8b0521baafc0d0cdc1789fe9eaf4f642f /video/out/cocoa_common.m
parent9270dda50a4059cfc063714cd4f6dfdaf305f532 (diff)
downloadmpv-f987625d5a84546b564bd15635c4051af5dc7113.tar.bz2
mpv-f987625d5a84546b564bd15635c4051af5dc7113.tar.xz
cocoa: move the gl function loader to gl_cocoa.c
Diffstat (limited to 'video/out/cocoa_common.m')
-rw-r--r--video/out/cocoa_common.m14
1 files changed, 0 insertions, 14 deletions
diff --git a/video/out/cocoa_common.m b/video/out/cocoa_common.m
index 6f4603b65f..01e28aceda 100644
--- a/video/out/cocoa_common.m
+++ b/video/out/cocoa_common.m
@@ -20,7 +20,6 @@
#import <Cocoa/Cocoa.h>
#import <CoreServices/CoreServices.h> // for CGDisplayHideCursor
#import <IOKit/pwr_mgt/IOPMLib.h>
-#include <dlfcn.h>
#import "cocoa_common.h"
#import "video/out/cocoa/window.h"
@@ -112,19 +111,6 @@ static void queue_new_video_size(struct vo *vo, int w, int h)
}
}
-void *vo_cocoa_glgetaddr(const char *s)
-{
- void *ret = NULL;
- void *handle = dlopen(
- "/System/Library/Frameworks/OpenGL.framework/OpenGL",
- RTLD_LAZY | RTLD_LOCAL);
- if (!handle)
- return NULL;
- ret = dlsym(handle, s);
- dlclose(handle);
- return ret;
-}
-
static void enable_power_management(struct vo *vo)
{
struct vo_cocoa_state *s = vo->cocoa;