mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
gl/cocoa: fix NSAutoreleasePool initialization
This commit is contained in:
parent
3c49f0f42a
commit
871ddef9ce
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ gst_gl_window_cocoa_init_nsapp (gpointer data)
|
||||||
|
|
||||||
g_mutex_lock (&nsapp_lock);
|
g_mutex_lock (&nsapp_lock);
|
||||||
|
|
||||||
[[NSAutoreleasePool alloc] init];
|
pool = [[NSAutoreleasePool alloc] init];
|
||||||
|
|
||||||
/* The sharedApplication class method initializes
|
/* The sharedApplication class method initializes
|
||||||
* the display environment and connects your program
|
* the display environment and connects your program
|
||||||
|
@ -122,7 +122,7 @@ gst_gl_context_cocoa_class_init (GstGLContextCocoaClass * klass)
|
||||||
GST_DEBUG_FUNCPTR (gst_gl_context_cocoa_get_gl_platform);
|
GST_DEBUG_FUNCPTR (gst_gl_context_cocoa_get_gl_platform);
|
||||||
|
|
||||||
#ifndef GNUSTEP
|
#ifndef GNUSTEP
|
||||||
[[NSAutoreleasePool alloc] init];
|
pool = [[NSAutoreleasePool alloc] init];
|
||||||
|
|
||||||
/* [NSApplication sharedApplication] will usually be
|
/* [NSApplication sharedApplication] will usually be
|
||||||
* called in your application so it's not necessary
|
* called in your application so it's not necessary
|
||||||
|
|
Loading…
Reference in a new issue