You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to create a window that borderless = true and resizable = true. But according to GLFW's document
GLFW_DECORATED specifies whether the windowed mode window will have window decorations such as a border, a close widget, etc. An undecorated window will not be resizable by the user but will still allow the user to generate close events on some platforms. Possible values are GLFW_TRUE and GLFW_FALSE. This hint is ignored for full screen windows.
So, I wonder if I can write some code to detect the mouse whether drag the corner of window or not, then call function like setwindowsize().
The text was updated successfully, but these errors were encountered:
I want to create a window that
borderless = true
andresizable = true
. But according to GLFW's documentSo, I wonder if I can write some code to detect the mouse whether drag the corner of window or not, then call function like
setwindowsize()
.The text was updated successfully, but these errors were encountered: