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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should not be using
RenderWindowbutRenderTextureif you don’t want to open a window. It works almost exactly the same asRenderWindowbecause it is derived fromRenderTargetas 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.