Compiling with rev 63470 of wxWidgets now works with OSX x86_64. There are a BUNCH of errors while running, none fatal from what I've seen. This also fixes Dolphin creating multiple NSWindows when running multiple games.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5041 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Sonicadvance1 2010-02-12 12:41:53 +00:00
parent 78f8fe2e85
commit 060bbcf067
4 changed files with 69 additions and 61 deletions

View file

@ -343,9 +343,6 @@ else:
env['HAVE_COCOA'] = 0
# handling wx flags CCFLAGS should be created before
if sys.platform == 'darwin' and env['osx'] == '64cocoa':
wxmods = ['adv', 'core', 'base']
else:
wxmods = ['aui', 'adv', 'core', 'base']
env['USE_WX'] = 0

View file

@ -621,6 +621,7 @@ void OpenGL_Shutdown()
delete GLWin.glCanvas;
delete GLWin.frame;
#elif defined(HAVE_COCOA) && HAVE_COCOA
cocoaGLDeleteWindow(GLWin.cocoaWin);
cocoaGLDelete(GLWin.cocoaCtx);
#elif defined(_WIN32)

View file

@ -19,6 +19,8 @@ NSOpenGLContext* cocoaGLInit(int mode);
void cocoaGLDelete(NSOpenGLContext *ctx);
void cocoaGLDeleteWindow(NSWindow *window);
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window);
#ifdef __cplusplus

View file

@ -9,6 +9,7 @@ NSWindow *cocoaGLCreateWindow(int w,int h)
styleMask:NSTitledWindowMask | NSResizableWindowMask
backing:NSBackingStoreBuffered
defer:FALSE];
[window setReleasedWhenClosed: YES];
[window setTitle:@"Dolphin on OSX"];
//[window makeKeyAndOrderFront: nil];
@ -37,16 +38,14 @@ void cocoaGLMakeCurrent(NSOpenGLContext *ctx, NSWindow *win)
[ctx setValues:&value forParameter:NSOpenGLCPSwapInterval];
if (ctx) {
[ctx setView:[win contentView]];
[ctx update];
[ctx makeCurrentContext];
} else {
[NSOpenGLContext clearCurrentContext];
}
else
[NSOpenGLContext clearCurrentContext];
[pool release];
}
@ -54,6 +53,7 @@ void cocoaGLMakeCurrent(NSOpenGLContext *ctx, NSWindow *win)
NSOpenGLContext* cocoaGLInit(int mode)
{
NSAutoreleasePool *pool;
NSOpenGLPixelFormatAttribute attr[32];
NSOpenGLPixelFormat *fmt;
NSOpenGLContext *context;
@ -69,6 +69,7 @@ NSOpenGLContext* cocoaGLInit(int mode)
attr[i++] = mode;
attr[i++] = NSOpenGLPFASamples;
attr[i++] = 1;
attr[i++] = NSOpenGLPFANoRecovery;
#ifdef GL_VERSION_1_3
@ -120,6 +121,16 @@ void cocoaGLDelete(NSOpenGLContext *ctx)
[pool release];
}
void cocoaGLDeleteWindow(NSWindow *window)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[window close];
[pool release];
return window;
}
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)
{
@ -129,13 +140,10 @@ void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)
[window makeKeyAndOrderFront: nil];
ctx = [NSOpenGLContext currentContext];
if (ctx != nil) {
if (ctx != nil)
[ctx flushBuffer];
}
else
{
printf("bad cocoa gl ctx\n");
}
[pool release];
[pool release];
}