mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-03-04 09:27:15 +00:00
Create glcontext_get_ptr
This commit is contained in:
parent
93e17b46bd
commit
dcefb740f2
@ -90,6 +90,11 @@ static NSOpenGLPixelFormat* g_format;
|
||||
static unsigned g_minor = 0;
|
||||
static unsigned g_major = 0;
|
||||
|
||||
GLContextClass *glcontext_get_ptr(void)
|
||||
{
|
||||
return g_context;
|
||||
}
|
||||
|
||||
/* forward declaration */
|
||||
void *nsview_get_ptr(void);
|
||||
|
||||
|
@ -36,6 +36,9 @@
|
||||
|
||||
static id apple_platform;
|
||||
|
||||
/* forward declaration */
|
||||
GLContextClass *glcontext_get_ptr(void);
|
||||
|
||||
void apple_rarch_exited(void)
|
||||
{
|
||||
[[NSApplication sharedApplication] terminate:nil];
|
||||
@ -347,10 +350,11 @@ static void open_document_handler(NSOpenPanel *panel, NSInteger result)
|
||||
}
|
||||
|
||||
- (IBAction)openCore:(id)sender {
|
||||
NSOpenPanel* panel = (NSOpenPanel*)[NSOpenPanel openPanel];
|
||||
GLContextClass *glc = glcontext_get_ptr();
|
||||
NSOpenPanel* panel = (NSOpenPanel*)[NSOpenPanel openPanel];
|
||||
settings_t *settings = config_get_ptr();
|
||||
NSString *startdir = BOXSTRING(settings->libretro_directory);
|
||||
NSArray *filetypes = [[NSArray alloc] initWithObjects:BOXSTRING("dylib"), BOXSTRING("Core"), nil];
|
||||
NSArray *filetypes = [[NSArray alloc] initWithObjects:BOXSTRING("dylib"), BOXSTRING("Core"), nil];
|
||||
[panel setAllowedFileTypes:filetypes];
|
||||
#if defined(MAC_OS_X_VERSION_10_6)
|
||||
[panel setMessage:BOXSTRING("Load Core")];
|
||||
@ -372,11 +376,12 @@ static void open_document_handler(NSOpenPanel *panel, NSInteger result)
|
||||
if (result == 1)
|
||||
open_core_handler(panel, result);
|
||||
#endif
|
||||
[g_context makeCurrentContext];
|
||||
[glc makeCurrentContext];
|
||||
}
|
||||
|
||||
- (void)openDocument:(id)sender
|
||||
{
|
||||
GLContextClass *glc = glcontext_get_ptr();
|
||||
NSOpenPanel* panel = (NSOpenPanel*)[NSOpenPanel openPanel];
|
||||
settings_t *settings = config_get_ptr();
|
||||
NSString *startdir = BOXSTRING(settings->menu_content_directory);
|
||||
@ -403,7 +408,7 @@ static void open_document_handler(NSOpenPanel *panel, NSInteger result)
|
||||
if (result == 1)
|
||||
open_document_handler(panel, result);
|
||||
#endif
|
||||
[g_context makeCurrentContext];
|
||||
[glc makeCurrentContext];
|
||||
}
|
||||
|
||||
- (void)unloadingCore
|
||||
|
Loading…
x
Reference in New Issue
Block a user