I've had this for a while, but *finally* got around to reproducing the crash in a demo (rather than my own app where it could be all my bad!).
Basically what I want to do is have items get added to a listbox in an event callback. This worked a couple months ago, and it works on Windows (I believe both opengl and directx) -- which makes me think its perhaps an ogre bug. What I've done is added another button to Demo7 which adds a text item to the listbox. See diff here: http://dl.dropbox.com/u/282238/add-crash.patch
Basically I just do addItem() and ensureItemVisible(). When I click the button I get a crash. Running through gdb I get the following backtrace:
Code: Select all
(gdb) bt
#0 0x0000006f00000073 in ?? ()
#1 0x00007ffff7ca1c7c in CEGUI::ItemEntry::setSelected_impl (this=0x889740, setting=<value optimized out>,
notify=<value optimized out>) at elements/CEGUIItemEntry.cpp:104
#2 0x00007ffff7ca7288 in CEGUI::ItemListbox::clearAllSelections (this=0xcb8990) at elements/CEGUIItemListbox.cpp:331
#3 0x00007ffff7ca7440 in CEGUI::ItemListbox::notifyItemClicked (this=0xcb8990, li=0x7fffffffd800)
at elements/CEGUIItemListbox.cpp:256
#4 0x00007ffff7cab1f3 in CEGUI::Listbox::addItem (this=0xcb8990, item=0x889740) at elements/CEGUIListbox.cpp:306
#5 0x0000000000405df3 in Demo7Sample::handleAdd (this=<value optimized out>, e=<value optimized out>) at Sample_Demo7.cpp:315
#6 0x00007ffff7c1057c in operator() (this=0xa24910, args=...) at ../../cegui/include/CEGUISubscriberSlot.h:82
#7 CEGUI::Event::operator() (this=0xa24910, args=...) at CEGUIEvent.cpp:102
#8 0x00007ffff7cd1624 in CEGUI::PushButton::onMouseButtonUp (this=0xbdb090, e=...) at elements/CEGUIPushButton.cpp:89
#9 0x00007ffff7c51927 in CEGUI::System::injectMouseButtonUp (this=0x854960, button=CEGUI::LeftButton) at CEGUISystem.cpp:845
#10 0x00007ffff78f4109 in CEGuiDemoFrameListener::mouseReleased (this=<value optimized out>, e=<value optimized out>,
id=<value optimized out>) at CEGuiOgreBaseApplication.cpp:429
#11 0x00007ffff656a42c in OIS::LinuxMouse::_processXEvents (this=0x868aa0) at ./linux/LinuxMouse.cpp:234
#12 0x00007ffff656a6e2 in OIS::LinuxMouse::capture (this=0x868aa0) at ./linux/LinuxMouse.cpp:116
#13 0x00007ffff78f44c7 in CEGuiDemoFrameListener::frameStarted (this=0x862460, evt=...) at CEGuiOgreBaseApplication.cpp:361
#14 0x00007ffff6ac3182 in Ogre::Root::_fireFrameStarted (this=0x7ffff3d0a4a8, evt=...)
at /home/eugene/Desktop/or/ogre/OgreMain/src/OgreRoot.cpp:804
#15 0x00007ffff6ac3eb9 in Ogre::Root::_fireFrameStarted (this=0x7ffff3d0a4a8)
at /home/eugene/Desktop/or/ogre/OgreMain/src/OgreRoot.cpp:876
#16 0x00007ffff6ac3f19 in Ogre::Root::renderOneFrame (this=0x7ffff3d0a4a8)
at /home/eugene/Desktop/or/ogre/OgreMain/src/OgreRoot.cpp:963
#17 0x00007ffff6ac3f7b in Ogre::Root::startRendering (this=0x7ffff3d0a4a8)
at /home/eugene/Desktop/or/ogre/OgreMain/src/OgreRoot.cpp:956
#18 0x00007ffff78f451a in CEGuiOgreBaseApplication::execute (this=0x6211d0, sampleApp=<value optimized out>)
at CEGuiOgreBaseApplication.cpp:153
#19 0x00007ffff78f1f06 in CEGuiSample::initialise (this=0x7fffffffdfc0) at CEGuiSample.cpp:241
#20 0x00007ffff78f20f7 in CEGuiSample::run (this=0x7fffffffdfc0) at CEGuiSample.cpp:121
#21 0x00000000004053f6 in main () at Sample_Demo7.cpp:43
CEGUI Log:
Code: Select all
21/09/2010 16:15:19 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
21/09/2010 16:15:19 (Std) + Crazy Eddie's GUI System - Event log +
21/09/2010 16:15:19 (Std) + (http://www.cegui.org.uk/) +
21/09/2010 16:15:19 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
21/09/2010 16:15:19 (Std) CEGUI::Logger singleton created. (0x852f20)
21/09/2010 16:15:19 (Std)
21/09/2010 16:15:19 (Std) ********************************************************************************
21/09/2010 16:15:19 (Std) * Important: *
21/09/2010 16:15:19 (Std) * To get support at the CEGUI forums, you must post _at least_ the section *
21/09/2010 16:15:19 (Std) * of this log file indicated below. Failure to do this will result in no *
21/09/2010 16:15:19 (Std) * support being given; please do not waste our time. *
21/09/2010 16:15:19 (Std) ********************************************************************************
21/09/2010 16:15:19 (Std) ********************************************************************************
21/09/2010 16:15:19 (Std) * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
21/09/2010 16:15:19 (Std) ********************************************************************************
21/09/2010 16:15:19 (Std) ---- Version 0.7.3 (Build: Sep 17 2010 GNU/Linux g++ 4.4.4 20100630 (Red Hat 4.4.4-10) 64 bit) ----
21/09/2010 16:15:19 (Std) ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
21/09/2010 16:15:19 (Std) ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
21/09/2010 16:15:19 (Std) ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
21/09/2010 16:15:19 (Std) ---- Scripting module is: None ----
21/09/2010 16:15:19 (Std) ********************************************************************************
21/09/2010 16:15:19 (Std) * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
21/09/2010 16:15:19 (Std) ********************************************************************************
21/09/2010 16:15:19 (Std)
21/09/2010 16:15:19 (Std) ---- Begining CEGUI System initialisation ----
21/09/2010 16:15:19 (Std) CEGUI::ImagesetManager singleton created (0x850b10)
21/09/2010 16:15:19 (Std) CEGUI::FontManager singleton created. (0x855240)
21/09/2010 16:15:19 (Std) CEGUI::WindowFactoryManager singleton created
21/09/2010 16:15:19 (Std) CEGUI::WindowManager singleton created (0x85bb30)
21/09/2010 16:15:19 (Std) CEGUI::SchemeManager singleton created. (0x85bbd0)
21/09/2010 16:15:19 (Std) CEGUI::MouseCursor singleton created. (0x85bd00)
21/09/2010 16:15:19 (Std) CEGUI::GlobalEventSet singleton created. (0x853520)
21/09/2010 16:15:19 (Std) CEGUI::AnimationManager singleton created (0x855370)
21/09/2010 16:15:19 (Std) CEGUI::WidgetLookManager singleton created. (0x8506c0)
21/09/2010 16:15:19 (Std) CEGUI::WindowRendererManager singleton created (0x851810)
21/09/2010 16:15:19 (Std) CEGUI::RenderEffectManager singleton created (0x8558b0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'DefaultWindow' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'DefaultWindow' windows added. (0x85c370)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'DragContainer' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'DragContainer' windows added. (0x85c510)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'ScrolledContainer' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'ScrolledContainer' windows added. (0x85c6b0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'ClippedContainer' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'ClippedContainer' windows added. (0x85c850)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Checkbox' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Checkbox' windows added. (0x85c9f0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/PushButton' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/PushButton' windows added. (0x85cb90)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/RadioButton' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/RadioButton' windows added. (0x84fa10)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Combobox' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Combobox' windows added. (0x84fbb0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/ComboDropList' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/ComboDropList' windows added. (0x84fd50)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Editbox' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Editbox' windows added. (0x84fef0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/FrameWindow' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/FrameWindow' windows added. (0x850090)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/ItemEntry' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/ItemEntry' windows added. (0x850230)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Listbox' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Listbox' windows added. (0x8503d0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/ListHeader' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/ListHeader' windows added. (0x8580f0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (0x858290)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Menubar' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Menubar' windows added. (0x858430)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/PopupMenu' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/PopupMenu' windows added. (0x8585d0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/MenuItem' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/MenuItem' windows added. (0x858880)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/MultiColumnList' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/MultiColumnList' windows added. (0x858a20)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (0x858bc0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/ProgressBar' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/ProgressBar' windows added. (0x853d50)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/ScrollablePane' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/ScrollablePane' windows added. (0x853ef0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Scrollbar' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Scrollbar' windows added. (0x854090)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Slider' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Slider' windows added. (0x854230)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Spinner' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Spinner' windows added. (0x8543d0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/TabButton' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/TabButton' windows added. (0x854570)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/TabControl' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/TabControl' windows added. (0x854710)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Thumb' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Thumb' windows added. (0x8548b0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Titlebar' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Titlebar' windows added. (0x854a50)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Tooltip' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Tooltip' windows added. (0x854bf0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/ItemListbox' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/ItemListbox' windows added. (0x859230)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/GroupBox' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/GroupBox' windows added. (0x8593d0)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'CEGUI/Tree' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'CEGUI/Tree' windows added. (0x859570)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'HorizontalLayoutContainer' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'HorizontalLayoutContainer' windows added. (0x858770)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'VerticalLayoutContainer' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'VerticalLayoutContainer' windows added. (0x859a00)
21/09/2010 16:15:19 (Std) Created WindowFactory for 'GridLayoutContainer' windows.
21/09/2010 16:15:19 (Std) WindowFactory for 'GridLayoutContainer' windows added. (0x859ba0)
21/09/2010 16:15:19 (Std) Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
21/09/2010 16:15:19 (Std) CEGUI::System singleton created. (0x851150)
21/09/2010 16:15:19 (Std) ---- CEGUI System initialisation completed ----
21/09/2010 16:15:19 (Std)
21/09/2010 16:15:19 (Std) Attempting to create Imageset 'cegui_logo' using image file 'logo.png'.
21/09/2010 16:15:19 (Std) Registered RenderEffect named 'WobblyWindow'
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/WobblyFrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect 'WobblyWindow'. (0x7fffffffbc80)
21/09/2010 16:15:19 (Std) Started creation of Scheme from XML specification:
21/09/2010 16:15:19 (Std) ---- CEGUI GUIScheme name: TaharezLook
21/09/2010 16:15:19 (Std) Started creation of Imageset from XML specification:
21/09/2010 16:15:19 (Std) ---- CEGUI Imageset name: TaharezLook
21/09/2010 16:15:19 (Std) ---- Source texture file: TaharezLook.tga in resource group: (Default)
21/09/2010 16:15:19 (Std) Started creation of Font from XML specification:
21/09/2010 16:15:19 (Std) ---- CEGUI font name: DejaVuSans-10
21/09/2010 16:15:19 (Std) ---- Font type: FreeType
21/09/2010 16:15:19 (Std) ---- Source file: DejaVuSans.ttf in resource group: (Default)
21/09/2010 16:15:19 (Std) ---- Real point size: 10
21/09/2010 16:15:19 (Std) ===== Falagard 'root' element: look and feel parsing begins =====
21/09/2010 16:15:19 (Std) ===== Look and feel parsing completed =====
21/09/2010 16:15:19 (Std) No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Button' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Button' added. (0x944660)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Default' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Default' added. (0xb1d520)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Editbox' added. (0x944b70)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/FrameWindow' added. (0x943ec0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/ItemEntry' added. (0x88d2a0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/ListHeader' added. (0xb25fb0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/ListHeaderSegment' added. (0x88a830)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Listbox' added. (0xb26670)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Menubar' added. (0xb26810)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/MenuItem' added. (0xb269b0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/MultiColumnList' added. (0xb26b50)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/MultiLineEditbox' added. (0xb26cf0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/PopupMenu' added. (0xb26e90)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/ProgressBar' added. (0xb1de80)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/ScrollablePane' added. (0xb1e020)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Scrollbar' added. (0xb1e1c0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Slider' added. (0xb1e360)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Static' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Static' added. (0xb1e610)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/StaticImage' added. (0xb1e6d0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/StaticText' added. (0xb16fc0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/SystemButton' added. (0xb17160)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/TabButton' added. (0xb17300)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/TabControl' added. (0xb174a0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Titlebar' added. (0xb17640)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/ToggleButton' added. (0xb177e0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Tooltip' added. (0x8a27a0)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/ItemListbox' added. (0x8a2940)
21/09/2010 16:15:19 (Std) Created WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
21/09/2010 16:15:19 (Std) WindowRendererFactory 'Falagard/Tree' added. (0x8a2ae0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' Look'N'Feel 'TaharezLook/ItemListbox' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Creating falagard mapping for type 'TaharezLook/Tree' using base type 'CEGUI/Tree', window renderer 'Falagard/Tree' Look'N'Feel 'TaharezLook/Tree' and RenderEffect ''. (0x7fffffffa8a0)
21/09/2010 16:15:19 (Std) Started creation of Font from XML specification:
21/09/2010 16:15:19 (Std) ---- CEGUI font name: DejaVuSans-10
21/09/2010 16:15:19 (Std) ---- Font type: FreeType
21/09/2010 16:15:19 (Std) ---- Source file: DejaVuSans.ttf in resource group: (Default)
21/09/2010 16:15:19 (Std) ---- Real point size: 10
21/09/2010 16:15:19 (Std) ---- Returning existing instance of Font named 'DejaVuSans-10'.
21/09/2010 16:15:19 (Std) Attempting to create Imageset 'BackgroundImage' using image file 'GPN-2000-001437.tga'.
21/09/2010 16:15:19 (Std) RenderEffectManager::create: Created instance of effect 'WobblyWindow' at 0xa864c0
21/09/2010 16:15:19 (Std) Attempting to create Imageset 'DejaVuSans-10_auto_glyph_images_ ' with texture only.
21/09/2010 16:15:19 (Std) RenderEffectManager::create: Created instance of effect 'WobblyWindow' at 0xccebe0
21/09/2010 16:15:19 (Std) RenderEffectManager::create: Created instance of effect 'WobblyWindow' at 0xe77430
21/09/2010 16:15:19 (Std) ---- Successfully completed loading of GUI layout from 'Demo7Windows.layout' ----
My OGRE log:
Code: Select all
16:15:17: Creating resource group General
16:15:17: Creating resource group Internal
16:15:17: Creating resource group Autodetect
16:15:17: SceneManagerFactory for type 'DefaultSceneManager' registered.
16:15:17: Registering ResourceManager for type Material
16:15:17: Registering ResourceManager for type Mesh
16:15:17: Registering ResourceManager for type Skeleton
16:15:17: MovableObjectFactory for type 'ParticleSystem' registered.
16:15:17: OverlayElementFactory for type Panel registered.
16:15:17: OverlayElementFactory for type BorderPanel registered.
16:15:17: OverlayElementFactory for type TextArea registered.
16:15:17: Registering ResourceManager for type Font
16:15:17: ArchiveFactory for archive type FileSystem registered.
16:15:17: ArchiveFactory for archive type Zip registered.
16:15:17: DDS codec registering
16:15:17: FreeImage version: 3.10.0
16:15:17: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
16:15:17: Supported formats: bmp,ico,jpg,jif,jpeg,jpe,jng,koa,iff,lbm,mng,pbm,pbm,pcd,pcx,pgm,pgm,png,ppm,ppm,ras,tga,targa,tif,tiff,wap,wbmp,wbm,psd,cut,xbm,xpm,gif,hdr,sgi,exr,j2k,j2c,jp2
16:15:17: Registering ResourceManager for type HighLevelGpuProgram
16:15:17: Registering ResourceManager for type Compositor
16:15:17: MovableObjectFactory for type 'Entity' registered.
16:15:17: MovableObjectFactory for type 'Light' registered.
16:15:17: MovableObjectFactory for type 'BillboardSet' registered.
16:15:17: MovableObjectFactory for type 'ManualObject' registered.
16:15:17: MovableObjectFactory for type 'BillboardChain' registered.
16:15:17: MovableObjectFactory for type 'RibbonTrail' registered.
16:15:17: Loading library /home/eugene/local/prefix/lib/OGRE/RenderSystem_GL.so
16:15:17: Installing plugin: GL RenderSystem
16:15:17: OpenGL Rendering Subsystem created.
16:15:17: Plugin successfully installed
16:15:17: *-*-* OGRE Initialising
16:15:17: *-*-* Version 1.7.1 (Cthugha)
16:15:18: CPU Identifier & Features
16:15:18: -------------------------
16:15:18: * CPU ID: GenuineIntel: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz
16:15:18: * SSE: yes
16:15:18: * SSE2: yes
16:15:18: * SSE3: yes
16:15:18: * MMX: yes
16:15:18: * MMXEXT: yes
16:15:18: * 3DNOW: no
16:15:18: * 3DNOWEXT: no
16:15:18: * CMOV: yes
16:15:18: * TSC: yes
16:15:18: * FPU: yes
16:15:18: * PRO: yes
16:15:18: * HT: no
16:15:18: -------------------------
16:15:18: ******************************
*** Starting GLX Subsystem ***
******************************
16:15:18: GLRenderSystem::_createRenderWindow "OGRE Render Window", 640x400 windowed miscParams: FSAA=0 displayFrequency=50 MHz gamma=No vsync=No
16:15:18: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GLX_icon.png in resource group General or any other group. in ResourceGroupManager::openResource at /home/eugene/Desktop/or/ogre/OgreMain/src/OgreResourceGroupManager.cpp (line 753)
16:15:18: GLXWindow::create used FBConfigID = 117
16:15:18: GL_VERSION = 3.3.0 NVIDIA 256.53
16:15:18: GL_VENDOR = NVIDIA Corporation
16:15:18: GL_RENDERER = GeForce 8800 GT/PCI/SSE2
16:15:18: GL_EXTENSIONS = GL_ARB_blend_func_extended GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_copy_buffer GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_explicit_attrib_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_geometry_shader4 GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_imaging GL_ARB_instanced_arrays GL_ARB_map_buffer_range GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_provoking_vertex GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_shader_bit_encoding GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_shadow GL_ARB_sync GL_ARB_texture_border_clamp GL_ARB_texture_buffer_object GL_ARB_texture_compression GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_swizzle GL_ARB_timer_query GL_ARB_transpose_matrix GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_texture_float GL_ATI_texture_mirror_once GL_S3_s3tc GL_EXT_texture_env_add GL_EXT_abgr GL_EXT_bgra GL_EXT_bindable_uniform GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_Cg_shader GL_EXT_depth_bounds_test GL_EXT_direct_state_access GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXTX_framebuffer_mixed_formats GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_geometry_shader4 GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_provoking_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_shader_objects GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_array GL_EXT_texture_buffer_object GL_EXT_texture_compression_latc GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_shared_exponent GL_EXT_texture_sRGB GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_KTX_buffer_region GL_NV_blend_square GL_NV_conditional_render GL_NV_copy_depth_to_color GL_NV_copy_image GL_NV_depth_buffer_float GL_NV_depth_clamp GL_NV_explicit_multisample GL_NV_fence GL_NV_float_buffer GL_NV_fog_distance GL_NV_fragment_program GL_NV_fragment_program_option GL_NV_fragment_program2 GL_NV_framebuffer_multisample_coverage GL_NV_geometry_shader4 GL_NV_gpu_program4 GL_NV_half_float GL_NV_light_max_exponent GL_NV_multisample_coverage GL_NV_multisample_filter_hint GL_NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_parameter_buffer_object GL_NV_parameter_buffer_object2 GL_NV_pixel_data_range GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV_register_combiners2 GL_NV_shader_buffer_load GL_NV_texgen_reflection GL_NV_texture_barrier GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 GL_NV_texture_expand_normal GL_NV_texture_multisample GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_texture_shader3 GL_NV_transform_feedback GL_NV_vdpau_interop GL_NV_vertex_array_range GL_NV_vertex_array_range2 GL_NV_vertex_buffer_unified_memory GL_NV_vertex_program GL_NV_vertex_program1_1 GL_NV_vertex_program2 GL_NV_vertex_program2_option GL_NV_vertex_program3 GL_NVX_conditional_render GL_NVX_gpu_memory_info GL_SGIS_generate_mipmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_accum
16:15:18: Supported GLX extensions: GLX_EXT_visual_info GLX_EXT_visual_rating GLX_SGIX_fbconfig GLX_SGIX_pbuffer GLX_SGI_video_sync GLX_SGI_swap_control GLX_EXT_swap_control GLX_EXT_texture_from_pixmap GLX_ARB_create_context GLX_ARB_create_context_profile GLX_ARB_multisample GLX_NV_float_buffer GLX_ARB_fbconfig_float GLX_EXT_framebuffer_sRGB GLX_ARB_get_proc_address
16:15:18: ***************************
16:15:18: *** GL Renderer Started ***
16:15:18: ***************************
16:15:18: Registering ResourceManager for type GpuProgram
16:15:18: GLSL support detected
16:15:18: GL: Using GL_EXT_framebuffer_object for rendering to textures (best)
16:15:18: FBO PF_UNKNOWN depth/stencil support: D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_L8 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_A8 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_A4L4 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_BYTE_LA depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_R5G6B5 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_B5G6R5 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_A1R5G5B5 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_R8G8B8 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_B8G8R8 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_A8R8G8B8 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_B8G8R8A8 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_A2R10G10B10 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_A2B10G10R10 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_FLOAT16_RGB depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_FLOAT16_RGBA depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_FLOAT32_RGB depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_FLOAT32_RGBA depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_X8R8G8B8 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_X8B8G8R8 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_SHORT_RGBA depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:18: FBO PF_R3G3B2 depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:19: FBO PF_FLOAT16_R depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:19: FBO PF_FLOAT32_R depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:19: FBO PF_FLOAT16_GR depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:19: FBO PF_FLOAT32_GR depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:19: FBO PF_SHORT_RGB depth/stencil support: D0S0 D16S0 D24S0 D32S0 Packed-D24S8
16:15:19: [GL] : Valid FBO targets PF_UNKNOWN PF_L8 PF_A8 PF_A4L4 PF_BYTE_LA PF_R5G6B5 PF_B5G6R5 PF_A1R5G5B5 PF_R8G8B8 PF_B8G8R8 PF_A8R8G8B8 PF_B8G8R8A8 PF_A2R10G10B10 PF_A2B10G10R10 PF_FLOAT16_RGB PF_FLOAT16_RGBA PF_FLOAT32_RGB PF_FLOAT32_RGBA PF_X8R8G8B8 PF_X8B8G8R8 PF_SHORT_RGBA PF_R3G3B2 PF_FLOAT16_R PF_FLOAT32_R PF_FLOAT16_GR PF_FLOAT32_GR PF_SHORT_RGB
16:15:19: RenderSystem capabilities
16:15:19: -------------------------
16:15:19: RenderSystem Name: OpenGL Rendering Subsystem
16:15:19: GPU Vendor: nvidia
16:15:19: Device Name: GeForce 8800 GT/PCI/SSE2
16:15:19: Driver Version: 3.3.0.0
16:15:19: * Fixed function pipeline: yes
16:15:19: * Hardware generation of mipmaps: yes
16:15:19: * Texture blending: yes
16:15:19: * Anisotropic texture filtering: yes
16:15:19: * Dot product texture operation: yes
16:15:19: * Cube mapping: yes
16:15:19: * Hardware stencil buffer: yes
16:15:19: - Stencil depth: 8
16:15:19: - Two sided stencil support: yes
16:15:19: - Wrap stencil values: yes
16:15:19: * Hardware vertex / index buffers: yes
16:15:19: * Vertex programs: yes
16:15:19: * Number of floating-point constants for vertex programs: 1024
16:15:19: * Number of integer constants for vertex programs: 0
16:15:19: * Number of boolean constants for vertex programs: 0
16:15:19: * Fragment programs: yes
16:15:19: * Number of floating-point constants for fragment programs: 512
16:15:19: * Number of integer constants for fragment programs: 0
16:15:19: * Number of boolean constants for fragment programs: 0
16:15:19: * Geometry programs: yes
16:15:19: * Number of floating-point constants for geometry programs: 512
16:15:19: * Number of integer constants for geometry programs: 0
16:15:19: * Number of boolean constants for geometry programs: 0
16:15:19: * Supported Shader Profiles: arbfp1 arbvp1 fp20 fp30 fp40 glsl gp4gp gpu_gp nvgp4 vp30 vp40
16:15:19: * Texture Compression: yes
16:15:19: - DXT: yes
16:15:19: - VTC: yes
16:15:19: - PVRTC: no
16:15:19: * Scissor Rectangle: yes
16:15:19: * Hardware Occlusion Query: yes
16:15:19: * User clip planes: yes
16:15:19: * VET_UBYTE4 vertex element type: yes
16:15:19: * Infinite far plane projection: yes
16:15:19: * Hardware render-to-texture: yes
16:15:19: * Floating point textures: yes
16:15:19: * Non-power-of-two textures: yes
16:15:19: * Volume textures: yes
16:15:19: * Multiple Render Targets: 8
16:15:19: - With different bit depths: yes
16:15:19: * Point Sprites: yes
16:15:19: * Extended point parameters: yes
16:15:19: * Max Point Size: 63.375
16:15:19: * Vertex texture fetch: yes
16:15:19: * Number of world matrices: 0
16:15:19: * Number of texture units: 32
16:15:19: * Stencil buffer depth: 8
16:15:19: * Number of vertex blend matrices: 0
16:15:19: - Max vertex textures: 32
16:15:19: - Vertex textures shared: yes
16:15:19: * Render to Vertex Buffer : yes
16:15:19: * GL 1.5 without VBO workaround: no
16:15:19: * Frame Buffer objects: yes
16:15:19: * Frame Buffer objects (ARB extension): no
16:15:19: * Frame Buffer objects (ATI extension): no
16:15:19: * PBuffer support: no
16:15:19: * GL 1.5 without HW-occlusion workaround: no
16:15:19: Registering ResourceManager for type Texture
16:15:19: DefaultWorkQueue('Root') initialising on thread 0x63b260.
16:15:19: DefaultWorkQueue('Root')::WorkerFunc - thread 0x854df0 starting.
16:15:19: DefaultWorkQueue('Root')::WorkerFunc - thread 0x685140 starting.
16:15:19: DefaultWorkQueue('Root')::WorkerFunc - thread 0x85a730 starting.
16:15:19: DefaultWorkQueue('Root')::WorkerFunc - thread 0x855e20 starting.
16:15:19: Particle Renderer Type 'billboard' registered
16:15:19: Creating resource group imagesets
16:15:19: Creating resource group fonts
16:15:19: Creating resource group layouts
16:15:19: Creating resource group schemes
16:15:19: Creating resource group looknfeels
16:15:19: Creating resource group lua_scripts
16:15:19: Creating resource group schemas
16:15:19: Added resource location './' of type 'FileSystem' to resource group 'General'
16:15:19: Added resource location '/home/eugene/local/prefix/share/CEGUI/schemes/' of type 'FileSystem' to resource group 'schemes'
16:15:19: Added resource location '/home/eugene/local/prefix/share/CEGUI/imagesets/' of type 'FileSystem' to resource group 'imagesets'
16:15:19: Added resource location '/home/eugene/local/prefix/share/CEGUI/fonts/' of type 'FileSystem' to resource group 'fonts'
16:15:19: Added resource location '/home/eugene/local/prefix/share/CEGUI/layouts/' of type 'FileSystem' to resource group 'layouts'
16:15:19: Added resource location '/home/eugene/local/prefix/share/CEGUI/looknfeel/' of type 'FileSystem' to resource group 'looknfeels'
16:15:19: Added resource location '/home/eugene/local/prefix/share/CEGUI/lua_scripts/' of type 'FileSystem' to resource group 'lua_scripts'
16:15:19: Added resource location '/home/eugene/local/prefix/share/CEGUI/xml_schemas/' of type 'FileSystem' to resource group 'schemas'
16:15:19: Parsing scripts for resource group Autodetect
16:15:19: Finished parsing scripts for resource group Autodetect
16:15:19: Parsing scripts for resource group General
16:15:19: Finished parsing scripts for resource group General
16:15:19: Parsing scripts for resource group Internal
16:15:19: Finished parsing scripts for resource group Internal
16:15:19: Parsing scripts for resource group fonts
16:15:19: Finished parsing scripts for resource group fonts
16:15:19: Parsing scripts for resource group imagesets
16:15:19: Finished parsing scripts for resource group imagesets
16:15:19: Parsing scripts for resource group layouts
16:15:19: Finished parsing scripts for resource group layouts
16:15:19: Parsing scripts for resource group looknfeels
16:15:19: Finished parsing scripts for resource group looknfeels
16:15:19: Parsing scripts for resource group lua_scripts
16:15:19: Finished parsing scripts for resource group lua_scripts
16:15:19: Parsing scripts for resource group schemas
16:15:19: Finished parsing scripts for resource group schemas
16:15:19: Parsing scripts for resource group schemes
16:15:19: Finished parsing scripts for resource group schemes
16:15:19: Texture: _cegui_ogre_0: Loading 1 faces(PF_A8B8G8R8,128x89x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,128x89x1.
16:15:19: Texture: _cegui_ogre_1: Loading 1 faces(PF_A8B8G8R8,256x256x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
16:15:19: Texture: _cegui_ogre_2: Loading 1 faces(PF_B8G8R8,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
16:15:19: Texture: _cegui_ogre_5: Loading 1 faces(PF_A8B8G8R8,256x256x1) with 0 generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
The crash is slightly different in my application unfortunately, it gives a backtrace like this:
Code: Select all
0x00007ffff50f7b89 in glBindFramebufferEXT () from /usr/lib64/nvidia/libGL.so.1
(gdb) bt
#0 0x00007ffff50f7b89 in glBindFramebufferEXT () from /usr/lib64/nvidia/libGL.so.1
#1 0x00007ffff518306b in Ogre::GLFBOManager::bind (this=<value optimized out>, target=0x7fffe2c4db20)
at /home/eugene/Desktop/or/ogre/RenderSystems/GL/src/OgreGLFBORenderTexture.cpp:431
#2 0x00007ffff5197c01 in Ogre::GLRenderSystem::_setRenderTarget (this=0x7ffff6060748, target=0x7fffe2c4db20)
at /home/eugene/Desktop/or/ogre/RenderSystems/GL/src/OgreGLRenderSystem.cpp:3465
#3 0x00007ffff51968d3 in Ogre::GLRenderSystem::_setViewport (this=0x7ffff6060748, vp=0x7ffff5c5c0d8)
at /home/eugene/Desktop/or/ogre/RenderSystems/GL/src/OgreGLRenderSystem.cpp:1888
#4 0x00007ffff7416be7 in CEGUI::OgreTextureTarget::clear (this=0x5e81040) at CEGUIOgreTextureTarget.cpp:73
#5 0x00007ffff7034edf in CEGUI::RenderingWindow::invalidate (this=0x5e993e0) at CEGUIRenderingWindow.cpp:223
#6 0x00007ffff705f067 in CEGUI::Window::onMoved (this=0x5eb73b0, e=...) at CEGUIWindow.cpp:2547
#7 0x00007ffff705fb64 in CEGUI::Window::setArea_impl (this=0x5eb73b0, pos=<value optimized out>, size=<value optimized out>,
topLeftSizing=false, fireEvents=true) at CEGUIWindow.cpp:1921
#8 0x00007ffff706087d in CEGUI::Window::setArea (this=0x5eb73b0, pos=..., size=<value optimized out>) at CEGUIWindow.cpp:1962
#9 0x00007ffff7060966 in CEGUI::Window::setArea (this=<value optimized out>, area=<value optimized out>)
at CEGUIWindow.cpp:1968
#10 0x00007ffff7115508 in CEGUI::WidgetComponent::layout (this=<value optimized out>, owner=...)
at falagard/CEGUIFalWidgetComponent.cpp:170
#11 0x00007ffff7117a02 in CEGUI::WidgetLookFeel::layoutChildWidgets (this=0xaf9930, owner=...)
at falagard/CEGUIFalWidgetLookFeel.cpp:261
#12 0x00007ffff705dd82 in CEGUI::Window::performChildWindowLayout (this=0x5ea69b0) at CEGUIWindow.cpp:2210
#13 0x00007ffff70d4c3a in CEGUI::Scrollbar::onScrollConfigChanged (this=0x5ea69b0, e=...) at elements/CEGUIScrollbar.cpp:213
#14 0x00007ffff70d878a in CEGUI::Scrollbar::setDocumentSize (this=0x5ea69b0, document_size=<value optimized out>)
at elements/CEGUIScrollbar.cpp:131
#15 0x00007ffff70a6309 in CEGUI::Listbox::configureScrollbars (this=0x5e964f0) at elements/CEGUIListbox.cpp:630
#16 0x00007ffff70a6489 in CEGUI::Listbox::onListContentsChanged (this=0x5e964f0, e=...) at elements/CEGUIListbox.cpp:780
#17 0x00007ffff70a71f3 in CEGUI::Listbox::addItem (this=0x5e964f0, item=0x7fffc8003970) at elements/CEGUIListbox.cpp:306