vulkan: Fix some confusing typos
authorYeongjin Jeong <yeongjin.jeong@navercorp.com>
Thu, 1 Aug 2019 16:37:22 +0000 (01:37 +0900)
committerMatthew Waters <matthew@centricular.com>
Thu, 29 Aug 2019 11:19:37 +0000 (11:19 +0000)
Seems to have been copy pasted from around gl element

gst-libs/gst/vulkan/xcb/gstvkdisplay_xcb.c
gst-libs/gst/vulkan/xcb/gstvkwindow_xcb.c

index 4703988..544d1d1 100644 (file)
@@ -96,7 +96,7 @@ gst_vulkan_display_xcb_new (const gchar * name)
   GstVulkanDisplayXCB *ret;
   int screen_no = 0;
 
-  GST_DEBUG_CATEGORY_GET (gst_vulkan_display_debug, "gldisplay");
+  GST_DEBUG_CATEGORY_GET (gst_vulkan_display_debug, "vulkandisplay");
 
   connection = xcb_connect (NULL, &screen_no);
   if (connection == NULL || xcb_connection_has_error (connection)) {
@@ -129,7 +129,7 @@ gst_vulkan_display_xcb_new_with_connection (xcb_connection_t * connection,
 
   g_return_val_if_fail (connection != NULL, NULL);
 
-  GST_DEBUG_CATEGORY_GET (gst_vulkan_display_debug, "gldisplay");
+  GST_DEBUG_CATEGORY_GET (gst_vulkan_display_debug, "vulkandisplay");
 
   ret = g_object_new (GST_TYPE_VULKAN_DISPLAY_XCB, NULL);
   gst_object_ref_sink (ret);
index fb32e97..82b108a 100644 (file)
@@ -185,9 +185,9 @@ gst_vulkan_window_xcb_create_window (GstVulkanWindowXCB * window_xcb)
       root_window, x, y, width, height, 0, XCB_WINDOW_CLASS_INPUT_OUTPUT,
       screen->root_visual, value_mask, value_list);
 
-  GST_LOG_OBJECT (window_xcb, "gl window id: %p",
+  GST_LOG_OBJECT (window_xcb, "vulkan window id: %p",
       (gpointer) (guintptr) window_xcb->win_id);
-  GST_LOG_OBJECT (window_xcb, "gl window props: x:%d y:%d", x, y);
+  GST_LOG_OBJECT (window_xcb, "vulkan window props: x:%d y:%d", x, y);
 
   /* Magic code that will send notification when window is destroyed */
   cookie = xcb_intern_atom (connection, 1, 12, "WM_PROTOCOLS");