Hello, I'm trying to create a windowless Ogre application, but it seems that the method RenderWindow::setVisible(false) is completely ignored by the application. Is there a way to accomplish that?
Thank you
Tommaso
Hello, I'm trying to create a windowless Ogre application, but it seems that the method RenderWindow::setVisible(false) is completely ignored by the application. Is there a way to accomplish that?
Thank you
Tommaso
You should not be using RenderWindow
but RenderTexture
if you don't want to open a window. It works almost exactly the same as RenderWindow
because it is derived from RenderTarget
as well. You should have almost no trouble just switching them around with your current parameters except for changing the constructor.
Please update your question with some concrete code if you do run into trouble with the switch.