Window visibility and application loop

I am reading this http://www.glfw.org/docs/latest/window_guide.html#window_hide and I dont understand this: If glfw application is hidden “This makes the window completely invisible to the user, including removing it from the task bar, dock or window list.” the process is still running? I mean, whether application will still run and perform running tasks.

Another question about this, it don’t call any destructors? I think no, but I am asking for sure.

Yes, process will be running. It only changes visibility of window, no other change (destructors of your code) is modified.

1 Like