If you found a bug in our library or on our website, please report it in this section. In this forum you can also make concrete suggestions or feature requests.
using Origin 1.7.4 CEGUI and Origin OGRE 1.7.1 and CEGUI provide CEGUIOgreRenderer ,In the CEGUI Demo7Sample when i resized the Main App Window the cegui window borders will strange, like this but when i using Direct3D9Renderer it's seems ok
Are you using DX10/DX11 in Ogre? It's experimental and the fixed pipeline emulation has rough edges. OgreRenderer through DX10/11 could look like the screenshot you posted.
I think we've seen this bug before and it was related to drivers. Please post what GPU you are using and what drivers. This is an annoying bug and AFAIK we haven't really tracked it down last time, it just disappeared with driver updates. Maybe it's not CEGUI's fault at all, who knows.
I think i have find the reason occur that problem! when sized the app window then trigger the notifyDisplaySizeChanged and OgreCEGUIRenderer do declareRenderSize, but after that the D3D9 DeviceLost. the TextureTarget must be invalid! It is seems CEGUIOgreRenderer's bug. In order to fix that , after DeviceLost I called notifyDisplaySizeChanged,the problem is solved!