From bc650f623032a225887006e3304ed77ae6e232b3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 10 Sep 2022 12:28:53 +0530 Subject: [PATCH] Output initial window creation size in debug --- glfw/wl_window.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glfw/wl_window.c b/glfw/wl_window.c index 30cbe88a2..c67c69a97 100644 --- a/glfw/wl_window.c +++ b/glfw/wl_window.c @@ -368,6 +368,8 @@ static bool createSurface(_GLFWwindow* window, wl_surface_set_user_data(window->wl.surface, window); + + debug("Creating window at size: %dx%d and scale 1\n", wndconfig->width, wndconfig->height); window->wl.native = wl_egl_window_create(window->wl.surface, wndconfig->width, wndconfig->height);