vulkan/wayland: rename debug category to mention wayland instead of XCB

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6396>
This commit is contained in:
Matthew Waters 2023-03-31 16:33:58 +11:00 committed by Tim-Philipp Müller
parent 6a71f0e99d
commit 1eb5217fd1

View file

@ -40,8 +40,8 @@ _init_debug (void)
static gsize _init = 0;
if (g_once_init_enter (&_init)) {
GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "vulkanwindowxcb", 0,
"Vulkan XCB Window");
GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "vulkanwindowwayland", 0,
"Vulkan Wayland Window");
g_once_init_leave (&_init, 1);
}
}