gl: cocoa: fix warnings of unused variables

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2026>
This commit is contained in:
Stéphane Cerveau 2022-03-25 13:00:13 +01:00 committed by GStreamer Marge Bot
parent b863c10ead
commit 4f970bb811

View file

@ -203,14 +203,12 @@ gst_gl_window_cocoa_create_window (GstGLWindowCocoa *window_cocoa)
NSRect rect = NSMakeRect (0, y, priv->preferred_width, priv->preferred_height);
NSRect windowRect = NSMakeRect (0, y, priv->preferred_width, priv->preferred_height);
GstGLContext *context = gst_gl_window_get_context (window);
GstGLContextCocoa *context_cocoa;
GstGLCAOpenGLLayer *layer;
GstGLNSView *glView;
if (!context)
return FALSE;
context_cocoa = GST_GL_CONTEXT_COCOA (context);
layer = [[GstGLCAOpenGLLayer alloc] initWithGstGLContext:context];
layer.autoresizingMask = kCALayerWidthSizable | kCALayerHeightSizable;
layer.needsDisplayOnBoundsChange = YES;
@ -242,10 +240,6 @@ gst_gl_window_cocoa_create_window (GstGLWindowCocoa *window_cocoa)
static gboolean
gst_gl_window_cocoa_open (GstGLWindow *window, GError **err)
{
GstGLWindowCocoa *window_cocoa;
window_cocoa = GST_GL_WINDOW_COCOA (window);
return TRUE;
}