gl/cocoa: Fix debug statements and platform
authorEdward Hervey <bilboed@bilboed.com>
Mon, 17 Mar 2014 13:06:22 +0000 (14:06 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 9 Dec 2017 19:31:34 +0000 (19:31 +0000)
gst-libs/gst/gl/cocoa/gstglcontext_cocoa.m
gst-libs/gst/gl/cocoa/gstglwindow_cocoa.m

index 486763ea89a2a4f466641d39f4b7894c91b8d6f6..63c508fd7255519966478f7293918e95839fd177 100644 (file)
@@ -176,7 +176,7 @@ gst_gl_context_cocoa_create_context (GstGLContext *context, GstGLAPI gl_api,
   glContext = [[NSOpenGLContext alloc] initWithFormat:fmt 
     shareContext:context_cocoa->priv->external_gl_context];
 
-  GST_DEBUG ("NSOpenGL context created: %lud\n", (guintptr) glContext);
+  GST_DEBUG ("NSOpenGL context created: %"G_GUINTPTR_FORMAT, (guintptr) glContext);
 
   context_cocoa->priv->gl_context = glContext;
 
@@ -262,5 +262,5 @@ gst_gl_context_cocoa_get_gl_api (GstGLContext * context)
 static GstGLPlatform
 gst_gl_context_cocoa_get_gl_platform (GstGLContext * context)
 {
-  return GST_GL_API_COCOA;
+  return GST_GL_PLATFORM_CGL;
 }
index 280d614b87174115b021a66b33a584984a7e809e..271c30d8950934441a4d4e431875f3308b7d49df 100644 (file)
@@ -148,7 +148,7 @@ gst_gl_window_cocoa_create_window (GstGLWindowCocoa *window_cocoa)
     NSResizableWindowMask | NSMiniaturizableWindowMask)
     backing: NSBackingStoreBuffered defer: NO screen: nil gstWin: window_cocoa];
 
-  GST_DEBUG ("NSWindow id: %lud\n", (guintptr) priv->internal_win_id);
+  GST_DEBUG ("NSWindow id: %"G_GUINTPTR_FORMAT, (guintptr) priv->internal_win_id);
 
   priv->thread = [NSThread currentThread];