Window is transparent when I don't want it to be.

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

Frigorific
Just popping in
Just popping in
Posts: 2
Joined: Sat Nov 06, 2010 04:26

Window is transparent when I don't want it to be.

Postby Frigorific » Sat Nov 06, 2010 04:47

Having some weird problems with transparency. Essentially regardless whatever scheme or alpha setting of the window I am trying to show It keeps being transparent.

Relevant code:
Initializing all the windows settings. The windows are loaded from a .layout file. But there isn't anything too strange in it and nothing is transparent.

Code: Select all

int MyApp::ceguiInit ( )
{
/// CEGUI Stuff Taken DIRECTLY from it's tutorials
   CEGUI::WindowManager& wmgr = CEGUI::WindowManager::getSingleton();

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

   rp->setResourceGroupDirectory("schemes",     ceGuiDataRoot + "/datafiles/schemes/");
   rp->setResourceGroupDirectory("imagesets",   ceGuiDataRoot + "/datafiles/imagesets/");
   rp->setResourceGroupDirectory("fonts",       ceGuiDataRoot + "/datafiles/fonts/");
   rp->setResourceGroupDirectory("layouts",     ceGuiDataRoot + "/datafiles/layouts/");
   rp->setResourceGroupDirectory("looknfeels",  ceGuiDataRoot + "/datafiles/looknfeel/");
   rp->setResourceGroupDirectory("lua_scripts", ceGuiDataRoot + "/datafiles/lua_scripts/");

   // This is only really needed if you are using Xerces and need to
   // specify the schemas location
   rp->setResourceGroupDirectory("schemas", ceGuiDataRoot + "/datafiles/xml_schemas/");
   

   //// set the default resource groups to be used
   CEGUI::Imageset::setDefaultResourceGroup("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");

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


   CEGUI::System::getSingleton().setDefaultFont( "DejaVuSans-10" );
   //CEGUI::System::getSingleton().setDefaultMouseCursor( "WindowsLook", "MouseArrow" );
   //System::getSingleton().setDefaultToolTip( "TaharezLook/Tooltip" );

   CEGUI::Window* myRoot;

   //loads the layout
   try
   {
      myRoot = CEGUI::WindowManager::getSingleton().loadWindowLayout("start3.layout");
   }
   catch(...)
   {
      return 0;
   }

   CEGUI::System::getSingleton().setGUISheet( myRoot );

   CEGUI::WindowManager::getSingleton().getWindow("fWnd")->hide();

   return 1;
}


rendering the gui at the end of the scene.

Code: Select all

      dxSprite->End();

#ifdef _USE_CEGUI_LIBS
      // draw GUI
      CEGUI::System::getSingleton().renderGUI();
#endif

      //stop rendering
      dxDev()->EndScene();

      //display the back buffer on _the screen
      dxDev()->Present(NULL, NULL, NULL, NULL);


Hiding and showing the window.

Code: Select all

   else if (Utils::keyIsPressed(VK_F3))
   {
      static bool showTestWindow = false;
      //fWnd->setVisible( (showTestWindow = !showTestWindow) );
     //CEGUI::WindowManager::getSingleton().getWindow("fWnd")->setVisible( (showTestWindow = !showTestWindow) );
     if(showTestWindow = !showTestWindow)
     {
      
      CEGUI::WindowManager::getSingleton().getWindow("fWnd")->show();
      CEGUI::WindowManager::getSingleton().getWindow("fWnd")->activate();   
      CEGUI::WindowManager::getSingleton().getWindow("fWnd")->invalidate();
     }
     else
      CEGUI::WindowManager::getSingleton().getWindow("fWnd")->hide();

   }


The first time I show the window
Image

The second time
Image


It does the exact same thing with the WindowsLook scheme. Does anyone know what could be causing this?

VitaliBR
Not too shy to talk
Not too shy to talk
Posts: 25
Joined: Mon Oct 18, 2010 02:28

Re: Window is transparent when I don't want it to be.

Postby VitaliBR » Sat Nov 06, 2010 20:03

What is your video card? Is updated with the latest driver?

Try running on another computer with a different video card :)

Jamarr
CEGUI MVP
CEGUI MVP
Posts: 812
Joined: Tue Jun 03, 2008 23:59
Location: USA

Re: Window is transparent when I don't want it to be.

Postby Jamarr » Mon Nov 08, 2010 17:20

You should also post your CEGUI.log file, so that we can determine the version, module, and environment you are using. Posting the xml for the layout may also be helpful; it is better to have all relevant information than to simply assume it is correct without verifying that statement.

Also, you did not post the renderer/system initialization code, but it appears you are using DirectX. If you are changing some DX state, are you restoring that state before rendering the GUI? And have you built/ran the samples (CEGUI\Samples) provided with the SDK? Do these sample programs demonstrate the same issue?
If somebody helps you by replying to your thread, upvote him/her as a thanks! Make sure to include your CEGUI.log and everything you tried when posting! And remember that we are not magicians!

Frigorific
Just popping in
Just popping in
Posts: 2
Joined: Sat Nov 06, 2010 04:26

Re: Window is transparent when I don't want it to be.

Postby Frigorific » Fri Nov 12, 2010 18:25

Code: Select all

12/11/2010 12:04:57 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
12/11/2010 12:04:57 (Std)    +                     Crazy Eddie's GUI System - Event log                    +
12/11/2010 12:04:57 (Std)    +                          (http://www.cegui.org.uk/)                         +
12/11/2010 12:04:57 (Std)    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

12/11/2010 12:04:57 (Std)    CEGUI::Logger singleton created. (00E41840)
12/11/2010 12:04:57 (Std)    
12/11/2010 12:04:57 (Std)    ********************************************************************************
12/11/2010 12:04:57 (Std)    * Important:                                                                   *
12/11/2010 12:04:57 (Std)    *     To get support at the CEGUI forums, you must post _at least_ the section *
12/11/2010 12:04:57 (Std)    *     of this log file indicated below.  Failure to do this will result in no  *
12/11/2010 12:04:57 (Std)    *     support being given; please do not waste our time.                       *
12/11/2010 12:04:57 (Std)    ********************************************************************************
12/11/2010 12:04:57 (Std)    ********************************************************************************
12/11/2010 12:04:57 (Std)    * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM       -------- *
12/11/2010 12:04:57 (Std)    ********************************************************************************
12/11/2010 12:04:57 (Std)    ---- Version 0.7.4 (Build: Nov 11 2010 Static Debug Microsoft Windows MSVC++ 9.0 32 bit) ----
12/11/2010 12:04:57 (Std)    ---- Renderer module is: CEGUI::Direct3D9Renderer - Official Direct3D 9 based 2nd generation renderer module. ----
12/11/2010 12:04:57 (Std)    ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
12/11/2010 12:04:57 (Std)    ---- Image Codec module is: TGAImageCodec - Official TGA image codec ----
12/11/2010 12:04:57 (Std)    ---- Scripting module is: None ----
12/11/2010 12:04:57 (Std)    ********************************************************************************
12/11/2010 12:04:57 (Std)    * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM         -------- *
12/11/2010 12:04:57 (Std)    ********************************************************************************
12/11/2010 12:04:57 (Std)    
12/11/2010 12:04:57 (Std)    ---- Begining CEGUI System initialisation ----
12/11/2010 12:04:57 (Std)    CEGUI::ImagesetManager singleton created (00E41728)
12/11/2010 12:04:57 (Std)    CEGUI::FontManager singleton created. (00E42188)
12/11/2010 12:04:57 (Std)    CEGUI::WindowFactoryManager singleton created
12/11/2010 12:04:57 (Std)    CEGUI::WindowManager singleton created (0029FF58)
12/11/2010 12:04:57 (Std)    CEGUI::SchemeManager singleton created. (00E433A8)
12/11/2010 12:04:57 (Std)    CEGUI::MouseCursor singleton created. (0029FAD0)
12/11/2010 12:04:57 (Std)    CEGUI::GlobalEventSet singleton created. (00E3E550)
12/11/2010 12:04:57 (Std)    CEGUI::AnimationManager singleton created (00E37520)
12/11/2010 12:04:57 (Std)    CEGUI::WidgetLookManager singleton created. (00E36888)
12/11/2010 12:04:57 (Std)    CEGUI::WindowRendererManager singleton created (0029ED40)
12/11/2010 12:04:57 (Std)    CEGUI::RenderEffectManager singleton created (0029DEB0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'DefaultWindow' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'DefaultWindow' windows added. (00E340E8)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'DragContainer' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'DragContainer' windows added. (00E45E30)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'ScrolledContainer' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'ScrolledContainer' windows added. (00E45FF0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'ClippedContainer' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'ClippedContainer' windows added. (00E461B0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Checkbox' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Checkbox' windows added. (00E46370)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/PushButton' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/PushButton' windows added. (00E46530)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/RadioButton' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/RadioButton' windows added. (00E466F0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Combobox' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Combobox' windows added. (00E468B0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/ComboDropList' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/ComboDropList' windows added. (00E46A70)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Editbox' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Editbox' windows added. (00E46C30)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/FrameWindow' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/FrameWindow' windows added. (00E46DF0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/ItemEntry' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/ItemEntry' windows added. (00E46FB0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Listbox' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Listbox' windows added. (00E47170)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/ListHeader' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/ListHeader' windows added. (00E47330)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (00E474F0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Menubar' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Menubar' windows added. (00E47780)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/PopupMenu' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/PopupMenu' windows added. (00E47940)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/MenuItem' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/MenuItem' windows added. (00E47B00)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/MultiColumnList' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/MultiColumnList' windows added. (00E47CC0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (00E47E80)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/ProgressBar' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/ProgressBar' windows added. (00E48040)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/ScrollablePane' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/ScrollablePane' windows added. (00E48200)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Scrollbar' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Scrollbar' windows added. (00E483C0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Slider' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Slider' windows added. (00E48580)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Spinner' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Spinner' windows added. (00E48740)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/TabButton' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/TabButton' windows added. (00E48900)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/TabControl' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/TabControl' windows added. (00E48AC0)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Thumb' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Thumb' windows added. (00E48C80)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Titlebar' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Titlebar' windows added. (00E48E40)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Tooltip' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Tooltip' windows added. (00E490E8)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/ItemListbox' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/ItemListbox' windows added. (00E492A8)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/GroupBox' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/GroupBox' windows added. (00E49468)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'CEGUI/Tree' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'CEGUI/Tree' windows added. (00E49628)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'HorizontalLayoutContainer' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'HorizontalLayoutContainer' windows added. (00E497E8)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'VerticalLayoutContainer' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'VerticalLayoutContainer' windows added. (00E499A8)
12/11/2010 12:04:57 (Std)    Created WindowFactory for 'GridLayoutContainer' windows.
12/11/2010 12:04:57 (Std)    WindowFactory for 'GridLayoutContainer' windows added. (00E49B68)
12/11/2010 12:04:57 (Std)    Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
12/11/2010 12:04:57 (Std)    CEGUI::System singleton created. (00E41388)
12/11/2010 12:04:57 (Std)    ---- CEGUI System initialisation completed ----
12/11/2010 12:04:57 (Std)    
12/11/2010 12:04:57 (Std)    Started creation of Scheme from XML specification:
12/11/2010 12:04:57 (Std)    ---- CEGUI GUIScheme name: WindowsLookSkin
12/11/2010 12:04:57 (Std)    Started creation of Imageset from XML specification:
12/11/2010 12:04:57 (Std)    ---- CEGUI Imageset name: WindowsLook
12/11/2010 12:04:57 (Std)    ---- Source texture file: WindowsLook.tga in resource group: (Default)
12/11/2010 12:04:57 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
12/11/2010 12:04:58 (Std)    ===== Look and feel parsing completed =====
12/11/2010 12:04:58 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Button' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Button' added. (05678ED0)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Default' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Default' added. (00E65E20)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Editbox' added. (00E53B00)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/FrameWindow' added. (00E4C6C8)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/ItemEntry' added. (00E4CCC8)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/ListHeader' added. (00E4D808)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/ListHeaderSegment' added. (00E66AA8)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Listbox' added. (05659910)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Menubar' added. (05686E48)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/MenuItem' added. (00E50458)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/MultiColumnList' added. (00E50F28)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/MultiLineEditbox' added. (05652530)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/PopupMenu' added. (00E4DCC0)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/ProgressBar' added. (0567B0D0)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/ScrollablePane' added. (0567B290)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Scrollbar' added. (00E5A608)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Slider' added. (05661420)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Static' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Static' added. (056615E0)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/StaticImage' added. (00E53820)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/StaticText' added. (00E51CA8)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/SystemButton' added. (00E51E68)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/TabButton' added. (00E51710)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/TabControl' added. (00E518D0)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Titlebar' added. (00E4C0D8)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/ToggleButton' added. (00E4C298)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Tooltip' added. (056807B0)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/ItemListbox' added. (05680970)
12/11/2010 12:04:58 (Std)    Created WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
12/11/2010 12:04:58 (Std)    WindowRendererFactory 'Falagard/Tree' added. (05680B30)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/Button' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WindowsLook/Checkbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/IconButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/IconButton' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WindowsLook/RadioButton' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'WindowsLook/FrameWindow' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'WindowsLook/Titlebar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/SystemButton' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'WindowsLook/Editbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'WindowsLook/MultiLineEditbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'WindowsLook/Menubar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'WindowsLook/PopupMenu' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'WindowsLook/MenuItem' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'WindowsLook/ProgressBar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'WindowsLook/VerticalScrollbar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'WindowsLook/HorizontalScrollbar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/VerticalScrollbarThumb' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/HorizontalScrollbarThumb' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'WindowsLook/TabButton' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'WindowsLook/TabControl' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/TabContentPane' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/TabButtonPane' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'WindowsLook/ComboDropList' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/Combobox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'WindowsLook/Listbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'WindowsLook/ListHeader' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'WindowsLook/ListHeaderSegment' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'WindowsLook/MultiColumnList' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WindowsLook/Slider' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WindowsLook/SliderThumb' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'WindowsLook/ScrollablePane' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/Spinner' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'WindowsLook/Tooltip' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/Static' using base type 'DefaultWindow', window renderer 'Falagard/Static' Look'N'Feel 'WindowsLook/Static' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'WindowsLook/StaticImage' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'WindowsLook/StaticText' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' Look'N'Feel 'WindowsLook/ItemListbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' Look'N'Feel 'WindowsLook/ListboxItem' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Creating falagard mapping for type 'WindowsLook/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' Look'N'Feel 'WindowsLook/GroupBox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:58 (Std)    Started creation of Scheme from XML specification:
12/11/2010 12:04:58 (Std)    ---- CEGUI GUIScheme name: TaharezLook
12/11/2010 12:04:58 (Std)    Started creation of Imageset from XML specification:
12/11/2010 12:04:58 (Std)    ---- CEGUI Imageset name: TaharezLook
12/11/2010 12:04:58 (Std)    ---- Source texture file: TaharezLook.tga in resource group: (Default)
12/11/2010 12:04:58 (Std)    Started creation of Font from XML specification:
12/11/2010 12:04:58 (Std)    ---- CEGUI font name: DejaVuSans-10
12/11/2010 12:04:58 (Std)    ----       Font type: FreeType
12/11/2010 12:04:58 (Std)    ----     Source file: DejaVuSans.ttf in resource group: (Default)
12/11/2010 12:04:58 (Std)    ---- Real point size: 10
12/11/2010 12:04:59 (Std)    ===== Falagard 'root' element: look and feel parsing begins =====
12/11/2010 12:04:59 (Std)    ===== Look and feel parsing completed =====
12/11/2010 12:04:59 (Std)    No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' Look'N'Feel 'TaharezLook/ItemListbox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'CEGUI/GroupBox', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Creating falagard mapping for type 'TaharezLook/Tree' using base type 'CEGUI/Tree', window renderer 'Falagard/Tree' Look'N'Feel 'TaharezLook/Tree' and RenderEffect ''. (0026B658)
12/11/2010 12:04:59 (Std)    Started creation of Font from XML specification:
12/11/2010 12:04:59 (Std)    ---- CEGUI font name: DejaVuSans-10
12/11/2010 12:04:59 (Std)    ----       Font type: FreeType
12/11/2010 12:04:59 (Std)    ----     Source file: DejaVuSans.ttf in resource group: (Default)
12/11/2010 12:04:59 (Std)    ---- Real point size: 10
12/11/2010 12:05:00 (Std)    ---- Returning existing instance of Font named 'DejaVuSans-10'.
12/11/2010 12:05:00 (Std)    ---- Successfully completed loading of GUI layout from 'start3.layout' ----
12/11/2010 12:11:37 (Std)    Attempting to create Imageset 'DejaVuSans-10_auto_glyph_images_ ' with texture only.


The same thing does happen when I run the samples. It runs fine on other computers, it is just my laptop that seems to be affected. It uses an intel GMA x3100 and I have the most recent driver. I am pretty certain it is the GMA now.

Here is the renderer initialization code.

Code: Select all

   CEGUI::Direct3D9Renderer& myRenderer =
       CEGUI::Direct3D9Renderer::bootstrapSystem( d3ddev );

Jamarr
CEGUI MVP
CEGUI MVP
Posts: 812
Joined: Tue Jun 03, 2008 23:59
Location: USA

Re: Window is transparent when I don't want it to be.

Postby Jamarr » Mon Nov 15, 2010 21:01

Frigorific wrote:The same thing does happen when I run the samples. It runs fine on other computers, it is just my laptop that seems to be affected. It uses an intel GMA x3100 and I have the most recent driver. I am pretty certain it is the GMA now.


That certainly sounds like a driver issue. Where you able to make any progress since your last post? Are you able to install older drivers to see if the issue is still present there? And let us know if you find a solution to this.
If somebody helps you by replying to your thread, upvote him/her as a thanks! Make sure to include your CEGUI.log and everything you tried when posting! And remember that we are not magicians!


Return to “Help”

Who is online

Users browsing this forum: No registered users and 9 guests