forworldm

Results 4 issues of forworldm

glfw: git master gnome: 44.4 libdecor: 0.1.1 ```C++ #include int main() { glfwInitHint(GLFW_PLATFORM, GLFW_PLATFORM_WAYLAND); glfwInit(); glfwWindowHint(GLFW_DECORATED, GLFW_FALSE); // window size can be changed if comment this line auto window =...

bug
verified
Wayland

glfw: git master gnome: 44.4 xwayland: 23.2.0 ``` C++ #include int main() { glfwInitHint(GLFW_PLATFORM, GLFW_PLATFORM_X11); glfwInit(); auto window = glfwCreateWindow(200, 200, "demo", nullptr, nullptr); glfwRestoreWindow(window); // don't return } ```...

bug
X11
cannot reproduce

**Describe the bug** `path("//?/UNC/::1/c$/foo").lexically_normal()` returns `\\?\UNC\::\1\c$\foo` **To Reproduce** See above **Expected behavior** `\\?\UNC\::1\c$\foo` **Additional context** OS Windows

bug
Windows

**Describe the bug** `canonical("//./UNC/localhost/c$/foo")` throws exception **To Reproduce** See above **Expected behavior** MSVC STL gives `\\localhost\c$\foo` **Additional context** OS Windows maybe use `GetFinalPathNameByHandleW`

bug
Windows