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

link|improve this question

Having never used ogre I would assume that setVisible(true) would mean show the window? – Nifle Mar 7 '10 at 17:46
I'm sorry, I meant false :) – tunnuz Mar 7 '10 at 18:18
feedback

1 Answer

up vote 4 down vote accepted
+150

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.

link|improve this answer
So it's supposed to have a working RenderTexture without a RenderWindow? I've a weird problem with RenderTexture: RenderTexture bigger than RenderWindow – Alessandro Pezzato Nov 10 '11 at 14:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.