Page 1 of 1

Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Tue Jul 20, 2010 20:14
by wild_r
Hi all!

Here I have an error. I'm working with this code from tutorial (http://leadwerks.com/werkspace/index.ph ... -cegui-r30):

Code: Select all

#include <stdlib.h>

#include "engine.h"

#include "CEGUI.h"
#include "RendererModules\OpenGL\CEGUIOpenGLRenderer.h"

int main()
{
        Initialize();
        SetAppTitle("CEGUI");
        Graphics(800, 600);
        CreateFramework();

        CEGUI::OpenGLRenderer &ceguiRenderer = CEGUI::OpenGLRenderer::create();
        CEGUI::System::create(ceguiRenderer);

      CEGUI::Logger::getSingleton().setLoggingLevel(CEGUI::Informative);

        ceguiRenderer.enableExtraStateSettings(true);

        CEGUI::DefaultResourceProvider *rp = static_cast<CEGUI::DefaultResourceProvider*>(CEGUI::System::getSingleton().getResourceProvider());

        rp->setResourceGroupDirectory("schemes", "GUI/Schemes/");   
        rp->setResourceGroupDirectory("layouts", "GUI/Layouts/");
        rp->setResourceGroupDirectory("looknfeels", "GUI/LookNFeels/");
        rp->setResourceGroupDirectory("imagesets", "GUI/Imagesets/");
        rp->setResourceGroupDirectory("fonts", "GUI/Fonts/");

        CEGUI::Scheme::setDefaultResourceGroup("schemes");
        CEGUI::WindowManager::setDefaultResourceGroup("layouts");
        CEGUI::WidgetLookManager::setDefaultResourceGroup("looknfeels");
        CEGUI::Imageset::setDefaultResourceGroup("imagesets");
        CEGUI::Font::setDefaultResourceGroup("fonts");

        CEGUI::SchemeManager::getSingleton().create("WindowsLook.scheme");
        CEGUI::FontManager::getSingleton().create( "DejaVuSans-10.font" );

        CEGUI::System::getSingleton().setDefaultFont("DejaVuSans-10");

        CEGUI::WindowManager &wm = CEGUI::WindowManager::getSingleton();

        CEGUI::Window *root = wm.loadWindowLayout("test.layout");
        CEGUI::System::getSingleton().setGUISheet(root);
      
        while (!AppTerminate() && !KeyHit())
        {
                UpdateFramework();
                RenderFramework();

                glPixelStoref(0x806E, 0);
                glPixelStoref(GL_PACK_ROW_LENGTH, 0);
                glPixelStoref(GL_UNPACK_ROW_LENGTH, 0);
 
            CEGUI::System::getSingleton().renderGUI();

                Flip();
        }

        Terminate();

        return EXIT_SUCCESS;
}


Here is an CEGUI log:

Code: Select all

21/07/2010 00:05:20 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
21/07/2010 00:05:20 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
21/07/2010 00:05:20 (Std)    +                          (http://www.cegui.org.uk/)                         +
21/07/2010 00:05:20 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

21/07/2010 00:05:20 (Std)    CEGUI::Logger singleton created. (00424A80)
21/07/2010 00:05:20 (Std)    
21/07/2010 00:05:20 (Std)    ********************************************************************************
21/07/2010 00:05:20 (Std)    * Important:                                                                   *
21/07/2010 00:05:20 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
21/07/2010 00:05:20 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
21/07/2010 00:05:20 (Std)    *     support being given; please do not waste our time.                       *
21/07/2010 00:05:20 (Std)    ********************************************************************************
21/07/2010 00:05:20 (Std)    ********************************************************************************
21/07/2010 00:05:20 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
21/07/2010 00:05:20 (Std)    ********************************************************************************
21/07/2010 00:05:20 (Std)    ---- Version 0.7.1 (Build: Jan 27 2010 Microsoft Windows MSVC++ 9.0 32 bit) ----
21/07/2010 00:05:20 (Std)    ---- Renderer module is: CEGUI::OpenGLRenderer - Official OpenGL based 2nd generation renderer module.  TextureTarget support enabled via FBO extension. ----
21/07/2010 00:05:20 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
21/07/2010 00:05:20 (Std)    ---- Image Codec module is: SILLYImageCodec - Official SILLY based image codec ----
21/07/2010 00:05:20 (Std)    ---- Scripting module is: None ----
21/07/2010 00:05:20 (Std)    ********************************************************************************
21/07/2010 00:05:20 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
21/07/2010 00:05:20 (Std)    ********************************************************************************
21/07/2010 00:05:20 (Std)    
21/07/2010 00:05:20 (Std)    ---- Begining CEGUI System initialisation ----
21/07/2010 00:05:20 (Std)    CEGUI::ImagesetManager singleton created (0042D208)
21/07/2010 00:05:20 (Std)    CEGUI::FontManager singleton created. (0042D2F8)
21/07/2010 00:05:20 (Std)    CEGUI::WindowFactoryManager singleton created
21/07/2010 00:05:20 (Std)    CEGUI::WindowManager singleton created (0041FD98)
21/07/2010 00:05:20 (Std)    CEGUI::SchemeManager singleton created. (0042DBB0)
21/07/2010 00:05:20 (Std)    CEGUI::MouseCursor singleton created. (004293C8)
21/07/2010 00:05:20 (Std)    CEGUI::GlobalEventSet singleton created. (0274FCE8)
21/07/2010 00:05:20 (Std)    CEGUI::WidgetLookManager singleton created. (00424BB8)
21/07/2010 00:05:20 (Std)    CEGUI::WindowRendererManager singleton created (004222D0)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'DefaultWindow' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'DefaultWindow' windows added. (004315B0)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'DragContainer' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'DragContainer' windows added. (0042DDA0)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'ScrolledContainer' windows added. (00432698)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'ClippedContainer' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'ClippedContainer' windows added. (00432740)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Checkbox' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Checkbox' windows added. (004327E8)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (00432890)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (00432938)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (004329E0)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (00432A88)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (00432B30)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (00432BD8)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (00432C80)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (00432D28)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (00432DD0)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (00432E90)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (00432F38)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (00432FE0)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (00433088)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (00433130)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (004331D8)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (00433280)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (00433328)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (004333D0)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (00433478)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (00433520)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (004335C8)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (00433670)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (00433718)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (004337C0)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (00433868)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (00433910)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (004339B8)
21/07/2010 00:05:20 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
21/07/2010 00:05:20 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (00433A60)
21/07/2010 00:05:20 (Std)    Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
21/07/2010 00:05:20 (Std)    CEGUI::System singleton created. (0042C4A0)
21/07/2010 00:05:20 (Std)    ---- CEGUI System initialisation completed ----
21/07/2010 00:05:20 (Std)    
21/07/2010 00:05:20 (Std)    Started creation of Scheme from XML specification:
21/07/2010 00:05:20 (Std)    ---- CEGUI GUIScheme name: WindowsLookSkin
21/07/2010 00:05:20 (Info)    Finished creation of GUIScheme 'WindowsLookSkin' via XML file. (0043A400)
21/07/2010 00:05:20 (Info)    ---- Begining resource loading for GUI scheme 'WindowsLookSkin' ----
21/07/2010 00:05:20 (Std)    Started creation of Imageset from XML specification:
21/07/2010 00:05:20 (Std)    ---- CEGUI Imageset name: WindowsLook
21/07/2010 00:05:20 (Std)    ---- Source texture file: WindowsLook.tga in resource group: (Default)


And here is an screenshot from VS2010. http://img64.imageshack.us/img64/485/ceguierror.png

Error appears at line

Code: Select all

CEGUI::SchemeManager::getSingleton().create("WindowsLook.scheme");


I know that your forum is not a right place to submit this error. :oops:

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Wed Jul 21, 2010 09:35
by CrazyEddie
Hmmm. Apart from the fact it's crashing in the driver, I have no idea. Did you try with alternate drivers? Alternate hardware? Such things might help to narrow the scope of this down a bit, because at the moment, it could be literally anything! :D

CE.

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Wed Jul 21, 2010 14:43
by Jamarr
I would recommend using try/catch blocks around any code that can throw exceptions, so that you can output/handle the error appropriately. Also, as you are simply using the OpenGLRenderer, you might try running the samples/demo apps provided with CEGUI to determine if they exhibit the same behavior; meaning it could be a driver or CEGUI issue. If you cannot reproduce it with the samples, then you / another library has done something very wrong.

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Tue Jul 27, 2010 15:32
by wild_r
Thank you for answers, guys.

I was tried to use try {} catch() {} construction, but code crashes before "catch" block was reached. "throws" also is not usefull. I think trouble is in my code. For that reason my colleague gave me a great example of code, but it uses CEGUI 1.6.

P.S. Excuse me for my english.

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Thu Jul 29, 2010 08:36
by CrazyEddie
Are you able to get a basic CEGUI window up and running, such as what you get after following the tutorials? Or even just a blank screen with a CEGUI based mouse cursor - anything to show the basic functions of CEGUI are working correctly? Or does it always die with 0.7.x no matter what? You might also try a CEGUI snapshot download in case it's a bug that's been fixed already (though I do not think it is).

CE.

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Thu Jul 29, 2010 12:04
by wild_r
CrazyEddie wrote:Are you able to get a basic CEGUI window up and running, such as what you get after following the tutorials? Or even just a blank screen with a CEGUI based mouse cursor - anything to show the basic functions of CEGUI are working correctly? Or does it always die with 0.7.x no matter what? You might also try a CEGUI snapshot download in case it's a bug that's been fixed already (though I do not think it is).

CE.


Tutorials works fine. :roll: All of them was built it under msvc.

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Sun Aug 01, 2010 17:43
by wild_r
It may be helpfull:

After using Leadwerks 2.4, CEGUI 0.7.1, ATi 10.7 drivers and new installation of windows 7 x64 all is fine!

P.S. Just change string

Code: Select all

rp->setResourceGroupDirectory("looknfeels", "Data/GUI/LookNFeel/");
without 's' at the end of string "Data/GUI/LookNFeel/".

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Sun Aug 01, 2010 18:48
by CrazyEddie
So, what do we think was the issue of crashing in the driver? Surely not the 'looknfeel' / 'looknfeels' difference? :lol:

CE

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Mon Aug 02, 2010 06:11
by wild_r
CrazyEddie wrote:So, what do we think was the issue of crashing in the driver? Surely not the 'looknfeel' / 'looknfeels' difference? :lol:

CE


Sure. Issue was in operation system. Code was wrong too. Now it works. :)

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Mon Aug 02, 2010 18:04
by CrazyEddie
Cool :)

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Thu Sep 02, 2010 22:13
by JohnL
Hi,

I'm having the exact same issue but with nVidia's driver (nvogl32.dll). I have checked that the directory names are correct, that the files exist and even updated my video drivers, but the result is always the same: it stops in line:

Code: Select all

CEGUI::SchemeManager::getSingleton().create("TaharezLook.scheme");

and reports the following:

Code: Select all

Unhandled exception at 0x002bfd69 in TestGUI.exe: 0xC0000005: Access violation reading location 0x02341000.

Here's my CEGUI.log:

Code: Select all

02/09/2010 16:43:44 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
02/09/2010 16:43:44 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
02/09/2010 16:43:44 (Std)    +                          (http://www.cegui.org.uk/)                         +
02/09/2010 16:43:44 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

02/09/2010 16:43:44 (Std)    CEGUI::Logger singleton created. (0094F0C0)
02/09/2010 16:43:44 (Std)    
02/09/2010 16:43:44 (Std)    ********************************************************************************
02/09/2010 16:43:44 (Std)    * Important:                                                                   *
02/09/2010 16:43:44 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
02/09/2010 16:43:44 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
02/09/2010 16:43:44 (Std)    *     support being given; please do not waste our time.                       *
02/09/2010 16:43:44 (Std)    ********************************************************************************
02/09/2010 16:43:44 (Std)    ********************************************************************************
02/09/2010 16:43:44 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
02/09/2010 16:43:44 (Std)    ********************************************************************************
02/09/2010 16:43:44 (Std)    ---- Version 0.7.2 (Build: Aug 28 2010 Microsoft Windows MSVC++ 10.0 32 bit) ----
02/09/2010 16:43:44 (Std)    ---- Renderer module is: CEGUI::OpenGLRenderer - Official OpenGL based 2nd generation renderer module.  TextureTarget support enabled via FBO extension. ----
02/09/2010 16:43:44 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
02/09/2010 16:43:44 (Std)    ---- Image Codec module is: SILLYImageCodec - Official SILLY based image codec ----
02/09/2010 16:43:44 (Std)    ---- Scripting module is: None ----
02/09/2010 16:43:44 (Std)    ********************************************************************************
02/09/2010 16:43:44 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
02/09/2010 16:43:44 (Std)    ********************************************************************************
02/09/2010 16:43:44 (Std)    
02/09/2010 16:43:44 (Std)    ---- Begining CEGUI System initialisation ----
02/09/2010 16:43:44 (Std)    CEGUI::ImagesetManager singleton created (0094F588)
02/09/2010 16:43:44 (Std)    CEGUI::FontManager singleton created. (0094F738)
02/09/2010 16:43:44 (Std)    CEGUI::WindowFactoryManager singleton created
02/09/2010 16:43:44 (Std)    CEGUI::WindowManager singleton created (00299478)
02/09/2010 16:43:44 (Std)    CEGUI::SchemeManager singleton created. (00950668)
02/09/2010 16:43:44 (Std)    CEGUI::MouseCursor singleton created. (00945128)
02/09/2010 16:43:44 (Std)    CEGUI::GlobalEventSet singleton created. (00945C00)
02/09/2010 16:43:44 (Std)    CEGUI::AnimationManager singleton created (00944E18)
02/09/2010 16:43:44 (Std)    CEGUI::WidgetLookManager singleton created. (0029E3C0)
02/09/2010 16:43:44 (Std)    CEGUI::WindowRendererManager singleton created (00948600)
02/09/2010 16:43:44 (Std)    CEGUI::RenderEffectManager singleton created (00297988)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'DefaultWindow' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'DefaultWindow' windows added. (00948290)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'DragContainer' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'DragContainer' windows added. (00950830)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'ScrolledContainer' windows added. (00954B10)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'ClippedContainer' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'ClippedContainer' windows added. (00954BB8)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Checkbox' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Checkbox' windows added. (00956C60)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (00956D08)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (00956DB0)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (00956E58)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (00956F00)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (00956FA8)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (00957050)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (009570F8)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (009571A0)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (00957248)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (00958378)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (00958420)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (009584C8)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (00958570)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (00958618)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (009586C0)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (00958768)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (00958810)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (009588B8)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (00958960)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (00958A08)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (00958AB0)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (00958B58)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (00958C00)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (00958CA8)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (00958D50)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (00958DF8)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (00958EA0)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (00958F48)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (00958FF0)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (00959098)
02/09/2010 16:43:44 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
02/09/2010 16:43:44 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (00959140)
02/09/2010 16:43:44 (Std)    Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
02/09/2010 16:43:44 (Std)    CEGUI::System singleton created. (0094EEE8)
02/09/2010 16:43:44 (Std)    ---- CEGUI System initialisation completed ----
02/09/2010 16:43:44 (Std)    
02/09/2010 16:43:44 (Std)    Started creation of Scheme from XML specification:
02/09/2010 16:43:44 (Std)    ---- CEGUI GUIScheme name: TaharezLook
02/09/2010 16:43:44 (Std)    Started creation of Imageset from XML specification:
02/09/2010 16:43:44 (Std)    ---- CEGUI Imageset name: TaharezLook
02/09/2010 16:43:44 (Std)    ---- Source texture file: TaharezLook.tga in resource group: (Default)


I'm using: CeGUI 0.7.2 (prebuilt MSVC++ 2010 & dependencies), Leadwerks 2.4, Windows 7 64bit and nVidia 258.96 drivers (latest).

The only thing left is to reinstall Windows 7 as wild_r did and see if that fixes the problem also (it would have to be during the weekend), in the meantime do you have any idea of why it could be crashing?

Thank you!

Re: Using CEGUI with Leadwersk: program crashes in atioglxx.dll

Posted: Sun Sep 05, 2010 08:57
by CrazyEddie
I really don't know what to suggest. Reinstalling the OS sounds so extreme to me. Do the CEGUI samples build and run ok? What about a minimal "plain old GL" app based on the beginners tutorials? Or in other words - does the issue only manifest when using the Leadworks engine, or can you reproduce it otherwise?

CE.