From 6e9162218e02c5db37923bacdc62a8fe02654a82 Mon Sep 17 00:00:00 2001 From: 0scar Date: Tue, 14 May 2024 21:49:51 +0200 Subject: Set window to floating --- src/rendering/src/window.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/rendering/src/window.c b/src/rendering/src/window.c index 5e76cf2..67a2b55 100644 --- a/src/rendering/src/window.c +++ b/src/rendering/src/window.c @@ -80,6 +80,8 @@ Window* init_window_glfw( INFO_("initializing window..."); //glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API); glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE); + glfwWindowHint(GLFW_DECORATED, GLFW_FALSE); + glfwWindowHint(GLFW_FLOATING, GLFW_TRUE); glfwWindowHint(GLFW_SAMPLES, 0); // Disable anti aliasing -- cgit v1.3