Debug Assertion Failure

For help with general CEGUI usage:
- Questions about the usage of CEGUI and its features, if not explained in the documentation.
- Problems with the CMAKE configuration or problems occuring during the build process/compilation.
- Errors or unexpected behaviour.

Moderators: CEGUI MVP, CEGUI Team

nledev
Just popping in
Just popping in
Posts: 5
Joined: Tue Dec 22, 2015 09:37

Debug Assertion Failure

Postby nledev » Tue Dec 22, 2015 10:12

Hi, I am trying to follow the beginners guide to setup CEGUI but keep getting this debug assertion failure when creating a font from file:

Image

I am developing on Windows 10 using Visual Studio 2015.
I am using a 64 bit build of CEGUI which I built from the default branch because it no longer incurs d3dx11 dependency.

The failure occurs only in debug mode on the line
fontMngr.createFromFile("DejaVuSans-10.font");

Here is the code:

Code: Select all

UiManager::UiManager(ID3D11Device* device, ID3D11DeviceContext* deviceContext)
      {
         _guiRenderer = &CEGUI::Direct3D11Renderer::bootstrapSystem(device, deviceContext);

         CEGUI::Logger::getSingleton().setLogFilename("CEGUI_Log");

         // initialise the required dirs for the DefaultResourceProvider
         CEGUI::DefaultResourceProvider* rp = static_cast<CEGUI::DefaultResourceProvider*>
            (CEGUI::System::getSingleton().getResourceProvider());

         std::string basePath("D:/Repositories/CEGUI/datafiles/");
         rp->setResourceGroupDirectory("schemes", basePath + "schemes/");
         rp->setResourceGroupDirectory("imagesets", basePath + "imagesets/");
         rp->setResourceGroupDirectory("fonts", basePath + "fonts/");
         rp->setResourceGroupDirectory("layouts", basePath + "layouts/");
         rp->setResourceGroupDirectory("looknfeels", basePath + "looknfeel/");
         rp->setResourceGroupDirectory("lua_scripts", basePath + "lua_scripts/");
         // This is only really needed if you are using Xerces and need to
         // specify the schemas location
         rp->setResourceGroupDirectory("schemas", basePath + "xml_schemas/");

         // set the default resource groups to be used
         CEGUI::ImageManager::setImagesetDefaultResourceGroup("imagesets");
         CEGUI::Font::setDefaultResourceGroup("fonts");
         CEGUI::Scheme::setDefaultResourceGroup("schemes");
         CEGUI::WidgetLookManager::setDefaultResourceGroup("looknfeels");
         CEGUI::WindowManager::setDefaultResourceGroup("layouts");
         CEGUI::ScriptModule::setDefaultResourceGroup("lua_scripts");
         // setup default group for validation schemas
         CEGUI::XMLParser* parser = CEGUI::System::getSingleton().getXMLParser();
         if (parser->isPropertyPresent("SchemaDefaultResourceGroup"))
            parser->setProperty("SchemaDefaultResourceGroup", "schemas");


         _guiContext = &CEGUI::System::getSingleton().createGUIContext(_guiRenderer->getDefaultRenderTarget());

         CEGUI::SchemeManager::getSingleton().createFromFile("TaharezLook.scheme");
         auto& fontMngr = CEGUI::FontManager::getSingleton();
         fontMngr.createFromFile("DejaVuSans-10.font");
         CEGUI::System::getSingleton().getDefaultGUIContext().setDefaultFont("DejaVuSans-10");
         //CEGUI::System::getSingleton().getDefaultGUIContext().getMouseCursor().setDefaultImage("TaharezLook/MouseArrow");
         CEGUI::System::getSingleton().getDefaultGUIContext().setDefaultTooltipType("TaharezLook/Tooltip");   

         _root = CEGUI::WindowManager::getSingleton().createWindow("DefaultWindow", "root");         
         _guiContext->setRootWindow(_root);
         

         CEGUI::WindowManager& windowManager = CEGUI::WindowManager::getSingleton();
         CEGUI::FrameWindow* fWnd = static_cast<CEGUI::FrameWindow*>(
            windowManager.createWindow("TaharezLook/FrameWindow", "testWindow")
            );
         fWnd->setPosition(CEGUI::UVector2(CEGUI::UDim(0.25f, 0.0f), CEGUI::UDim(0.25f, 0.0f)));
         fWnd->setSize(CEGUI::USize(CEGUI::UDim(0.5f, 0.0f), CEGUI::UDim(0.5f, 0.0f)));
         fWnd->setText("Hello World!");
         _root->addChild(fWnd);
      }


Code: Select all

22/12/2015 01:47:42 (Std)    Started creation of Scheme from XML specification:
22/12/2015 01:47:42 (Std)    ---- CEGUI GUIScheme name: TaharezLook
22/12/2015 01:47:42 (Std)    [ImageManager] Started creation of Imageset from XML specification:
22/12/2015 01:47:42 (Std)    [ImageManager] ---- CEGUI Imageset name: TaharezLook
22/12/2015 01:47:42 (Std)    [ImageManager] ---- Source image file: TaharezLook.png
22/12/2015 01:47:42 (Std)    [ImageManager] ---- Source resource group: (Default)
22/12/2015 01:47:42 (Std)    [Direct3D11Renderer] Created texture: TaharezLook
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ClientBrush' (0000025B547DB950) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/GenericBrush' (0000025B547F58D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/WindowLeftEdge' (0000025B547F3E10) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/WindowRightEdge' (0000025B547829B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopEdge' (0000025B54782710) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomEdge' (0000025B54782C50) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopLeft' (0000025B54782DA0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/WindowTopRight' (0000025B54782470) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomLeft' (0000025B54782B00) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/WindowBottomRight' (0000025B54782EF0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftNormal' (0000025B54782860) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleNormal' (0000025B54783040) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightNormal' (0000025B54783190) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftPushed' (0000025B547825C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddlePushed' (0000025B54784D70) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightPushed' (0000025B54784EC0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftHighlight' (0000025B547842F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleHighlight' (0000025B547852B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightHighlight' (0000025B54784C20) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxNormal' (0000025B54784980) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxHover' (0000025B547841A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxMark' (0000025B54783870) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonNormal' (0000025B54784590) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonHover' (0000025B54785010) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/RadioButtonMark' (0000025B54784440) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarLeft' (0000025B54783480) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarMiddle' (0000025B547835D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TitlebarRight' (0000025B54784AD0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarLeft' (0000025B54784050) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarMiddle' (0000025B54785160) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/NewTitlebarRight' (0000025B547846E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaMiddle' (0000025B54784830) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/SysAreaRight' (0000025B54783720) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticLeft' (0000025B54783C60) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticRight' (0000025B547839C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTop' (0000025B54783B10) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottom' (0000025B54783DB0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopLeft' (0000025B54783F00) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticTopRight' (0000025B54796A10) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomLeft' (0000025B54796230) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBottomRight' (0000025B54795BA0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/StaticBackdrop' (0000025B547979D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLeft' (0000025B54796B60) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarMiddle' (0000025B54796380) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarRight' (0000025B54795E40) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarDimSegment' (0000025B54797880) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ProgressBarLitSegment' (0000025B54795F90) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxLeft' (0000025B54796620) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxMiddle' (0000025B54795CF0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxRight' (0000025B547960E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/EditBoxCaret' (0000025B547970A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpNormal' (0000025B54797490) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownNormal' (0000025B547975E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerUpHover' (0000025B547964D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/SpinnerDownHover' (0000025B54796E00) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TextSelectionBrush' (0000025B54796770) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollTop' (0000025B54796CB0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollMiddle' (0000025B54796F50) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBottom' (0000025B547968C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollBarSegment' (0000025B54797730) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbNormal' (0000025B547971F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollThumbHover' (0000025B54797340) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpNormal' (0000025B5479BFC0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownNormal' (0000025B5479D0D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollUpHover' (0000025B5479C8F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertScrollDownHover' (0000025B5479CB90) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollBarSegment' (0000025B5479C500) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbNormal' (0000025B5479C650) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopNormal' (0000025B5479C3B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleNormal' (0000025B5479C260) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomNormal' (0000025B5479D220) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopHover' (0000025B5479D370) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleHover' (0000025B5479C7A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomHover' (0000025B5479D760) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbHover' (0000025B5479BBD0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpNormal' (0000025B5479CF80) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownNormal' (0000025B5479BD20) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpHover' (0000025B5479CE30) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownHover' (0000025B5479BE70) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderBody' (0000025B5479D4C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbNormal' (0000025B5479D610) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/VertSliderThumbHover' (0000025B5479D8B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollBarSegment' (0000025B5479DA00) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbNormal' (0000025B5479C110) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftNormal' (0000025B5479CCE0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleNormal' (0000025B5479CA40) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightNormal' (0000025B547A76C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbHover' (0000025B547A6070) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftHover' (0000025B547A61C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleHover' (0000025B547A7810) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightHover' (0000025B547A7030) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftNormal' (0000025B547A5F20) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightNormal' (0000025B547A6850) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftHover' (0000025B547A7AB0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightHover' (0000025B547A69A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxLeft' (0000025B547A6AF0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxRight' (0000025B547A5C80) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTop' (0000025B547A6310) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottom' (0000025B547A6C40) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopLeft' (0000025B547A5DD0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxTopRight' (0000025B547A6460) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomLeft' (0000025B547A7180) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBottomRight' (0000025B547A72D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxBackdrop' (0000025B547A65B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ListboxSelectionBrush' (0000025B547A6700) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditLeft' (0000025B547A6D90) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxEditMiddle' (0000025B547A7570) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonNormal' (0000025B547A7420) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListButtonHover' (0000025B547A6EE0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListLeft' (0000025B547A7960) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListRight' (0000025B547AB050) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTop' (0000025B547AB590) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottom' (0000025B547AA090) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopLeft' (0000025B547A9F40) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListTopRight' (0000025B547AB1A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomLeft' (0000025B547AB2F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBottomRight' (0000025B547A9CA0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxListBackdrop' (0000025B547AB980) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxSelectionBrush' (0000025B547AA5D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerLeft' (0000025B547AAC60) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerMiddle' (0000025B547AAB10) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ComboboxDividerRight' (0000025B547ABAD0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropNormal' (0000025B547AA720) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropHover' (0000025B547AA9C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterNormal' (0000025B547AAF00) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterHover' (0000025B547AB440) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortUp' (0000025B547AADB0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/HeaderBarSortDown' (0000025B547AB6E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListLeft' (0000025B547AB830) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListRight' (0000025B547A9DF0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTop' (0000025B547AA330) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottom' (0000025B547AA1E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopLeft' (0000025B547AA480) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListTopRight' (0000025B547AA870) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomLeft' (0000025B547FB840) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBottomRight' (0000025B547FB060) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListBackdrop' (0000025B547FB990) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiListSelectionBrush' (0000025B547FB300) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLeft' (0000025B547FB450) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressMiddle' (0000025B547FA5E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressRight' (0000025B547FADC0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressQuarter' (0000025B547FAF10) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressHalf' (0000025B547FB1B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight1' (0000025B547FA9D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight2' (0000025B547FA730) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight3' (0000025B547F9F50) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight4' (0000025B547FB5A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight5' (0000025B547FB6F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight6' (0000025B547FBAE0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight7' (0000025B547FBC30) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight8' (0000025B547FA0A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight9' (0000025B547FA490) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/AltProgressLight10' (0000025B547FA880) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonNormal' (0000025B547FAC70) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonHover' (0000025B547FBD80) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/CloseButtonPressed' (0000025B547FA1F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonNormal' (0000025B547FA340) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonHover' (0000025B547FAB20) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/NewCloseButtonPressed' (0000025B54798B70) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxLeft' (0000025B54798F60) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxRight' (0000025B54798240) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTop' (0000025B54798630) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottom' (0000025B54799350) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopLeft' (0000025B547990B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopRight' (0000025B547994A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomLeft' (0000025B54798390) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomRight' (0000025B547999E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBackdrop' (0000025B547995F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MultiLineEditboxSelectionBrush' (0000025B54798CC0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTarget' (0000025B54799200) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MouseArrow' (0000025B54797FA0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MouseMoveCursor' (0000025B54799740) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNoSoCursor' (0000025B54798A20) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MouseEsWeCursor' (0000025B547984E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNeSwCursor' (0000025B54798E10) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MouseNwSeCursor' (0000025B54798780) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MouseTextBar' (0000025B54799890) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabHorizontalFiller' (0000025B54797BB0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperLeft' (0000025B54797D00) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpper' (0000025B547988D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperRight' (0000025B54797E50) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLeft' (0000025B547980F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneRight' (0000025B54806750) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLower' (0000025B54805100) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerLeft' (0000025B54805640) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerRight' (0000025B54805790) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabContentPaneMiddle' (0000025B54806C90) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftNormal' (0000025B548053A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightNormal' (0000025B548068A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftHover' (0000025B54806B40) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightHover' (0000025B54806360) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftNormal' (0000025B54806DE0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightNormal' (0000025B54805A30) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperNormal' (0000025B54806600) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerNormal' (0000025B548054F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftNormal' (0000025B54805250) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeft2Normal' (0000025B54805F70) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightNormal' (0000025B548058E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftNormal' (0000025B54805B80) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightNormal' (0000025B548064B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRight2Normal' (0000025B54804FB0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleNormal' (0000025B548069F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLeftSelected' (0000025B54805E20) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonRightSelected' (0000025B54805CD0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperSelected' (0000025B548060C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerSelected' (0000025B54806210) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftSelected' (0000025B5480D3D0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightSelected' (0000025B5480E390) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftSelected' (0000025B54810C40) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightSelected' (0000025B5480D910) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TabButtonMiddleSelected' (0000025B5480DA60) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopLeft' (0000025B5480EF60) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopRight' (0000025B548101C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomLeft' (0000025B54810700) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomRight' (0000025B54810310) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipLeftEdge' (0000025B5480D520) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipRightEdge' (0000025B5480CFE0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipTopEdge' (0000025B5480DD00) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipBottomEdge' (0000025B5480D130) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TooltipMiddle' (0000025B54810D90) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopLeft' (0000025B5480D280) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTopRight' (0000025B548105B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomLeft' (0000025B5480F200) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottomRight' (0000025B54810850) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuLeft' (0000025B5480F350) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuRight' (0000025B5480FDD0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuTop' (0000025B54810460) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuBottom' (0000025B5480D670) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/MenuMiddle' (0000025B5480EB70) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopLeft' (0000025B5480F4A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopRight' (0000025B548109A0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomLeft' (0000025B5480D7C0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomRight' (0000025B5480F890) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameLeft' (0000025B5480F9E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameRight' (0000025B5480F5F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTop' (0000025B54810070) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottom' (0000025B5480FF20) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuMiddle' (0000025B5480F0B0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowRight' (0000025B5480E4E0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/PopupMenuArrowLeft' (0000025B5480EE10) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListClosed' (0000025B5480E240) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/TreeListOpened' (0000025B5480FB30) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonLeftFocused' (0000025B5480DE50) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/UpArrow' (0000025B5480ECC0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonMiddleFocused' (0000025B5480DBB0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/ButtonRightFocused' (0000025B5480DFA0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    [ImageManager] Created image: 'TaharezLook/CheckboxFocused' (0000025B5480E0F0) of type: BitmapImage
22/12/2015 01:47:42 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
22/12/2015 01:47:42 (Warn)   Type 'uint' wasn't recognized in property definition (name: 'EnableTop').
22/12/2015 01:47:42 (Warn)   Type 'uint' wasn't recognized in property definition (name: 'EnableBottom').
22/12/2015 01:47:42 (Warn)   Type 'uint' wasn't recognized in property definition (name: 'EnableTop').
22/12/2015 01:47:42 (Warn)   Type 'uint' wasn't recognized in property definition (name: 'EnableBottom').
22/12/2015 01:47:42 (Warn)   Type 'uint' wasn't recognized in property definition (name: 'BorderWidth').
22/12/2015 01:47:42 (Warn)   Type 'uint' wasn't recognized in property definition (name: 'BorderWidth').
22/12/2015 01:47:42 (Std)    ===== Look and feel parsing completed =====
22/12/2015 01:47:42 (Std)    No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Button' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Button' added. (0000025B54C22200)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Default' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Default' added. (0000025B54C23100)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Editbox' added. (0000025B54C23200)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/FrameWindow' added. (0000025B54C20D00)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/ItemEntry' added. (0000025B54C22300)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/ListHeader' added. (0000025B54C21900)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/ListHeaderSegment' added. (0000025B54C21E00)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/ListView' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/ListView' added. (0000025B54C20600)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Menubar' added. (0000025B54C20F00)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/MenuItem' added. (0000025B54C21500)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/MultiColumnList' added. (0000025B54C20500)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/MultiLineEditbox' added. (0000025B54C21000)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/PopupMenu' added. (0000025B54C21600)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/ProgressBar' added. (0000025B54C23300)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/ScrollablePane' added. (0000025B54C21B00)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Scrollbar' added. (0000025B54C23400)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Slider' added. (0000025B54C23B00)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Static' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Static' added. (0000025B54C21700)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/StaticImage' added. (0000025B54BB90B0)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/StaticText' added. (0000025B54BBA6B0)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/TabButton' added. (0000025B54BB92B0)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/TabControl' added. (0000025B54BB93B0)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Titlebar' added. (0000025B54BB99B0)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/ToggleButton' added. (0000025B54BBA7B0)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/Tooltip' added. (0000025B54BB9AB0)
22/12/2015 01:47:42 (Std)    Created WindowRendererFactory for 'Core/TreeView' WindowRenderers.
22/12/2015 01:47:42 (Std)    WindowRendererFactory 'Core/TreeView' added. (0000025B54BB9DB0)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Label' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Core/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Core/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Core/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Core/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Core/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Core/ListView' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Core/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Core/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Core/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Core/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Core/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Core/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Core/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Core/ItemEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ListView' using base type 'CEGUI/ListView', window renderer 'Core/ListView' Look'N'Feel 'TaharezLook/ListView' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/ListWidget' using base type 'CEGUI/ListWidget', window renderer 'Core/ListView' Look'N'Feel 'TaharezLook/ListView' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/TreeView' using base type 'CEGUI/TreeView', window renderer 'Core/TreeView' Look'N'Feel 'TaharezLook/TreeView' and RenderEffect ''. (000000F80AAFA270)
22/12/2015 01:47:42 (Std)    Creating falagard mapping for type 'TaharezLook/TreeWidget' using base type 'CEGUI/TreeWidget', window renderer 'Core/TreeView' Look'N'Feel 'TaharezLook/TreeView' and RenderEffect ''. (000000F80AAFA270)


What am I doing wrong?

Thanks in advance

lucebac
Just can't stay away
Just can't stay away
Posts: 193
Joined: Sat May 24, 2014 21:55

Re: Debug Assertion Failure

Postby lucebac » Tue Dec 22, 2015 10:28

You most probably did not set the working directory to the correct folder. I'm not sure if Ident fixed that already, but I always had to set it to "..\bin" since all files get referenced by relative paths. If that doesn't work, I can't help you further at the moment.

nledev
Just popping in
Just popping in
Posts: 5
Joined: Tue Dec 22, 2015 09:37

Re: Debug Assertion Failure

Postby nledev » Tue Dec 22, 2015 20:14

Thanks for such a fast reply!

By working directory do you mean the resource group directory? Or is it another path that I have to set?

lucebac
Just can't stay away
Just can't stay away
Posts: 193
Joined: Sat May 24, 2014 21:55

Re: Debug Assertion Failure

Postby lucebac » Tue Dec 22, 2015 20:27

Go to your project's properties (in Visual Studio), select "Debugging" and set the working directory to something that fits your environment (in my case "..\bin", since this is the output folder for the binaries). Make sure, you copy the datafiles folder from the cegui sources into that folder first.

nledev
Just popping in
Just popping in
Posts: 5
Joined: Tue Dec 22, 2015 09:37

Re: Debug Assertion Failure

Postby nledev » Tue Dec 22, 2015 20:50

Tried it, still having the same problem
It does seem to find the resource file though since it throws a FileIOException when it cant

I am going to debug it some more and post if I find a solution

nledev
Just popping in
Just popping in
Posts: 5
Joined: Tue Dec 22, 2015 09:37

Re: Debug Assertion Failure

Postby nledev » Tue Dec 22, 2015 22:52

So the failure occurs when the FontList is being cleaned up which is returned from fontMngr.createFromFile("DejaVuSans-10.font").
Through some experimentation I found out that storing FontList into a local variable or its reference fixes the issue:

So this works:
CEGUI::FontManager::FontList& fonts = fontMngr.createFromFile("DejaVuSans-10.font")

and this causes a crash in debug mode only:
fontMngr.createFromFile("DejaVuSans-10.font")

And I have no idea why
But at least I can move past this now

lucebac
Just can't stay away
Just can't stay away
Posts: 193
Joined: Sat May 24, 2014 21:55

Re: Debug Assertion Failure

Postby lucebac » Wed Dec 23, 2015 00:37

Have you created and configured CEGUI::System and CEGUI::*Renderer properly before? If not, CEGUI::FontManager::getSingelton().createFromFile("foobar.font") will presumably write to unallocated memory - and the CRT might throw an exception.

nledev
Just popping in
Just popping in
Posts: 5
Joined: Tue Dec 22, 2015 09:37

Re: Debug Assertion Failure

Postby nledev » Wed Dec 23, 2015 01:20

I used the CEGUI::Direct3D11Renderer::bootstrapSystem which looking at the code configures both of them

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: Debug Assertion Failure

Postby Ident » Sat Dec 26, 2015 17:56

Are you mixing debug and release builds anywhere?
CrazyEddie: "I don't like GUIs"


Return to “Help”

Who is online

Users browsing this forum: No registered users and 36 guests