diff options
Diffstat (limited to 'pugl/detail/mac.m')
-rw-r--r-- | pugl/detail/mac.m | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/pugl/detail/mac.m b/pugl/detail/mac.m index 2e077be..7534281 100644 --- a/pugl/detail/mac.m +++ b/pugl/detail/mac.m @@ -927,23 +927,6 @@ puglProcessEvents(PuglView* view) return puglDispatchEvents(view->world); } -PuglGlFunc -puglGetProcAddress(const char *name) -{ - CFBundleRef framework = - CFBundleGetBundleWithIdentifier(CFSTR("com.apple.opengl")); - - CFStringRef symbol = CFStringCreateWithCString( - kCFAllocatorDefault, name, kCFStringEncodingASCII); - - PuglGlFunc func = (PuglGlFunc)CFBundleGetFunctionPointerForName( - framework, symbol); - - CFRelease(symbol); - - return func; -} - double puglGetTime(const PuglWorld* world) { |