Update Video software plugin with latest cocoaGL.m file

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5076 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Sonicadvance1 2010-02-17 21:04:26 +00:00
parent 377ece3294
commit 5e5e03daeb
3 changed files with 68 additions and 57 deletions

View File

@ -582,6 +582,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];
}