Hide Window Manager In A Cocos2d-x App In Windows

Is there any possible way to hide the window manager in a Cocos2d-x Application or this should be handled by using win32 API?

An App with Window Manager:

An App without Window Manager:

Yes, you can but after that you will not be able to move your app.
Add this line in glfwWindowHint(GLFW_DECORATED, GL_FALSE); in CCGLViewImpl-desktop.cpp
inside GLViewImpl::initWithRect method, after all other Hint.
You can use glfwSetWindowPos to set position of the window.

1 Like

Thanks mate :wink: