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
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sat Aug 08, 2015 20:42
i'm new with CEGUI. i'm trying to have a button on window and when i click on, it close all. but it doesn't work.
here is my code.
Code: Select all
....createsense() { .....
m_ConsoleWindow = CEGUI::WindowManager::getSingleton().createWindow("DefaultWindow", "_MasterRoot");
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(m_ConsoleWindow);
CEGUI::Window *quit = CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/Button", "CEGUIDemo/QuitButton");
quit->setText("Quit");
m_ConsoleWindow->addChild(quit);
quit->subscribeEvent(CEGUI::PushButton::EventClicked,
CEGUI::Event::Subscriber(&TutorialApplication::quit, this));
quit->setSize(CEGUI::USize(CEGUI::UDim(0.15, 0), CEGUI::UDim(0.05, 0)));
}
bool TutorialApplication::quit(const CEGUI::EventArgs & e)
{
mShutDown=true;
return true;
}
i don't know how to fix it.
i know my English is bad so excuse me.
please help me!
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sun Aug 09, 2015 06:22
Hi. thanks.
lucebac wrote:First, the name of your button should not contain slashes.
I did it but it does not work till.
lucebac wrote:Second, please post your CEGUI log.
what is CEGUI log?
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sun Aug 09, 2015 06:44
i have another solution too with same code (partly) but it works.
maybe it's a fundamental problem.

-
lucebac
- Just can't stay away

- Posts: 193
- Joined: Sat May 24, 2014 21:55
Postby lucebac » Sun Aug 09, 2015 08:15
loklak wrote:what is CEGUI log?
When you run CEGUI there will be some CEGUI.log file in the folder you ran CEGUI from.
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sun Aug 09, 2015 09:12
the solution doesn't write the log file in my current directory.
i don't know how to fix it!.
-
Ident
- CEGUI Team
- Posts: 1998
- Joined: Sat Oct 31, 2009 13:57
- Location: Austria
Postby Ident » Sun Aug 09, 2015 12:17
Please, don't post beginner questions under "ADVANCED HELP"
The forum descriptions are pretty clear on this.
EDIT: Moved.
CrazyEddie: "I don't like GUIs"
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sun Aug 09, 2015 12:30
Hi Ident.
thanks.
can you help me?
-
lucebac
- Just can't stay away

- Posts: 193
- Joined: Sat May 24, 2014 21:55
Postby lucebac » Sun Aug 09, 2015 13:53
Please provide us with the CEGUI.log file! We cannot and won't help on questions showing a bit of code and asking why this is not working properly or at all.
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sun Aug 09, 2015 14:04
Ok. it's all of my code!
Code: Select all
//==================================================cpp file
#include "TutorialApplication.h"
using namespace std;
TutorialApplication::TutorialApplication()
: mShutDown(false),
mRoot(0),
mCamera(0),
mSceneMgr(0),
mWindow(0),
mResourcesCfg(Ogre::StringUtil::BLANK),
mPluginsCfg(Ogre::StringUtil::BLANK),
mMouse(0),
mKeyboard(0),
mInputMgr(0),
mMove(15),
mCamNode(0),
mDirection(Ogre::Vector3::ZERO),
{
}
TutorialApplication::~TutorialApplication(void)
{
if (mCameraMan) delete mCameraMan;
Ogre::WindowEventUtilities::removeWindowEventListener(mWindow, this);
windowClosed(mWindow);
CEGUI::OgreRenderer::destroySystem();
delete mRoot;
}
void TutorialApplication::createScene(void)
{
mSceneMgr->setAmbientLight(Ogre::ColourValue(0.2, 0.5, 0.7));
ogreEntity = mSceneMgr->createEntity("Sphere001.mesh");
ogreEntity->setMaterialName("01-Default");
ogreNode=mSceneMgr->getRootSceneNode()->createChildSceneNode();
ogreNode->attachObject(ogreEntity);
Ogre::Light* light = mSceneMgr->createLight("MainLight");
light->setPosition(20.0, 80.0, 50.0);
//========================= mCamNode and mCamera object =========================
mCamNode=mSceneMgr->getRootSceneNode()->createChildSceneNode(Ogre::Vector3(0, 0, 0));
mCamNode->setPosition(Ogre::Vector3(0,0,-80));
mCamNode->attachObject(mCamera);
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
mRenderer = &CEGUI::OgreRenderer::bootstrapSystem();
CEGUI::ImageManager::setImagesetDefaultResourceGroup("Imagesets");
CEGUI::Font::setDefaultResourceGroup("Fonts");
CEGUI::Scheme::setDefaultResourceGroup("Schemes");
CEGUI::WidgetLookManager::setDefaultResourceGroup("LookNFeel");
CEGUI::WindowManager::setDefaultResourceGroup("Layouts");
CEGUI::SchemeManager::getSingleton().createFromFile("TaharezLook.scheme");
CEGUI::System::getSingleton().getDefaultGUIContext().getMouseCursor().setDefaultImage("TaharezLook/MouseArrow");
/*CEGUI::WindowManager &wmgr = CEGUI::WindowManager::getSingleton();
m_ConsoleWindow = wmgr.createWindow("DefaultWindow", "_MasterRoot");
//m_ConsoleWindow=CEGUI::WindowManager::getSingleton().loadLayoutFromFile("test.layout");
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(m_ConsoleWindow);
m_ConsoleWindow->setVisible(false);*/
//-----------
//mGUISystem = new CEGUI::System(mRenderer);
CEGUI::Logger::getSingleton().setLoggingLevel(CEGUI::Informative);
m_ConsoleWindow = CEGUI::WindowManager::getSingleton().createWindow("DefaultWindow", "_MasterRoot");
CEGUI::System::getSingleton().getDefaultGUIContext().setRootWindow(m_ConsoleWindow);
CEGUI::Window *quit = CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/Button", "CEGUIDemo/QuitButton");
quit->setText("Quit");
m_ConsoleWindow->addChild(quit);
quit->subscribeEvent(CEGUI::PushButton::EventClicked,
CEGUI::Event::Subscriber(&TutorialApplication::quit, this));
quit->setSize(CEGUI::USize(CEGUI::UDim(0.15, 0), CEGUI::UDim(0.05, 0)));
/*m_ConsoleWindow->getChild("Console/SendButton")->subscribeEvent(CEGUI::PushButton::EventClicked,
CEGUI::Event::Subscriber(&TutorialApplication::quit,this)); */
//<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
}
bool TutorialApplication::quit(const CEGUI::EventArgs & e)
{
mShutDown=true;
return true;
}
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
CEGUI::MouseButton convertButton(OIS::MouseButtonID buttonID)
{
switch (buttonID)
{
case OIS::MB_Left:
return CEGUI::LeftButton;
break;
case OIS::MB_Right:
return CEGUI::RightButton;
break;
case OIS::MB_Middle:
return CEGUI::MiddleButton;
break;
default:
return CEGUI::LeftButton;
break;
}
}
//<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
bool TutorialApplication::mousePressed(const OIS::MouseEvent& me, OIS::MouseButtonID id)
{
if(CEGUI::System::getSingleton().getDefaultGUIContext().injectMouseButtonDown(convertButton(id))) return true;
mCameraMan->injectMouseDown(me, id);
return true;
}
bool TutorialApplication::mouseReleased(const OIS::MouseEvent& me, OIS::MouseButtonID id)
{
if(CEGUI::System::getSingleton().getDefaultGUIContext().injectMouseButtonDown(convertButton(id))) return true;
mCameraMan->injectMouseUp(me, id);
return true;
}
void TutorialApplication::createCamera()
{
mCamera = mSceneMgr->createCamera("PlayerCam");
mCamera->setPosition(Ogre::Vector3(0, 0, 80));
mCamera->lookAt(Ogre::Vector3(0, 0, -300));
mCamera->setNearClipDistance(5);
mCameraMan = new OgreBites::SdkCameraMan(mCamera);
}
bool TutorialApplication::mouseMoved(const OIS::MouseEvent& me)
{
if(CEGUI::System::getSingleton().getDefaultGUIContext().injectMouseMove(me.state.X.rel, me.state.Y.rel)) return true;
mCameraMan->injectMouseMove(me);
return true;
}
bool TutorialApplication::keyPressed(const OIS::KeyEvent& ke)
{
return true;
}
bool TutorialApplication::keyReleased(const OIS::KeyEvent& ke)
{
mCameraMan->injectKeyUp(ke);
return true;
}
//---------------------------------------------------------------------------
void TutorialApplication::createViewports()
{
Ogre::Viewport* vp = mWindow->addViewport(mCamera);
vp->setBackgroundColour(Ogre::ColourValue(0, 0, 0));
mCamera->setAspectRatio(
Ogre::Real(vp->getActualWidth()) /
Ogre::Real(vp->getActualHeight()));
}
bool TutorialApplication::frameRenderingQueued(const Ogre::FrameEvent& evt)
{
//---------------------
if (mKeyboard->isKeyDown(OIS::KC_ESCAPE))
mShutDown = true;
if (mShutDown)
return false;
if (mWindow->isClosed())
return false;
mKeyboard->capture();
mMouse->capture();
mCameraMan->frameRenderingQueued(evt);
return true;
}
void TutorialApplication::go()
{
#ifdef _DEBUG
mResourcesCfg = "resources_d.cfg";
mPluginsCfg = "plugins_d.cfg";
#else
mResourcesCfg = "resources.cfg";
mPluginsCfg = "plugins.cfg";
#endif
if (!setup())
return;
mRoot->startRendering();
destroyScene();
}
void TutorialApplication::loadResources()
{
Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
}
void TutorialApplication::destroyScene()
{
}
void TutorialApplication::setupResources()
{
Ogre::ConfigFile cf;
cf.load(mResourcesCfg);
Ogre::String secName, typeName, archName;
Ogre::ConfigFile::SectionIterator secIt = cf.getSectionIterator();
while (secIt.hasMoreElements())
{
secName = secIt.peekNextKey();
Ogre::ConfigFile::SettingsMultiMap* settings = secIt.getNext();
Ogre::ConfigFile::SettingsMultiMap::iterator setIt;
for (setIt = settings->begin(); setIt != settings->end(); ++setIt)
{
typeName = setIt->first;
archName = setIt->second;
Ogre::ResourceGroupManager::getSingleton().addResourceLocation(
archName, typeName, secName);
}
}
}
void TutorialApplication::createResourceListener()
{
}
bool TutorialApplication::configure()
{
if (!(mRoot->restoreConfig() || mRoot->showConfigDialog()))
{
return false;
}
mWindow = mRoot->initialise(true, "ITutorial");
return true;
}
void TutorialApplication::chooseSceneManager()
{
mSceneMgr = mRoot->createSceneManager(Ogre::ST_EXTERIOR_CLOSE);
}
bool TutorialApplication::setup()
{
mRoot = new Ogre::Root(mPluginsCfg);
setupResources();
if (!configure())
return false;
chooseSceneManager();
createCamera();
createViewports();
Ogre::TextureManager::getSingleton().setDefaultNumMipmaps(5);
createResourceListener();
loadResources();
createScene();
createFrameListener();
return true;
}
void TutorialApplication::createFrameListener()
{
//return BaseApplication::createFrameListener();
Ogre::LogManager::getSingletonPtr()->logMessage("*** Initializing OIS ***");
OIS::ParamList pl;
size_t windowHnd = 0;
std::ostringstream windowHndStr;
mWindow->getCustomAttribute("WINDOW", &windowHnd);
windowHndStr << windowHnd;
pl.insert(std::make_pair(std::string("WINDOW"), windowHndStr.str()));
mInputMgr = OIS::InputManager::createInputSystem(pl);
mKeyboard = static_cast<OIS::Keyboard*>(
mInputMgr->createInputObject(OIS::OISKeyboard, true));
mMouse = static_cast<OIS::Mouse*>(
mInputMgr->createInputObject(OIS::OISMouse, true));
mKeyboard->setEventCallback(this);
mMouse->setEventCallback(this);
windowResized(mWindow);
Ogre::WindowEventUtilities::addWindowEventListener(mWindow, this);
mRoot->addFrameListener(this);
Ogre::LogManager::getSingletonPtr()->logMessage("Finished");
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
}
#if OGRE_PLATFORM == OGRE_PLATFORM_WIN32
#define WIN32_LEAN_AND_MEAN
#include "windows.h"
#endif
#ifdef __cplusplus
extern "C" {
#endif
int main(int argc, char *argv[])
{
//=======Create application object
TutorialApplication app;
try {
app.go();
} catch(Ogre::Exception& e) {
#if OGRE_PLATFORM == OGRE_PLATFORM_WIN32
MessageBox(NULL, e.getFullDescription().c_str(), "An exception has occurred!", MB_OK | MB_ICONERROR | MB_TASKMODAL);
#else
std::cerr << "An exception has occurred: " <<
e.getFullDescription().c_str() << std::endl;
#endif
}
return 0;
}
#ifdef __cplusplus
}
#endif
//==================================================header file
#ifndef __TutorialApplication_h_
#define __TutorialApplication_h_
#include <math.h>
#include <OgreRoot.h>
#include <OgreCamera.h>
#include <OgreViewport.h>
#include <OgreSceneManager.h>
#include <OgreRenderWindow.h>
#include <OgreConfigFile.h>
#include <OgreException.h>
#include <OgreEntity.h>
#include <OgreFrameListener.h>
#include <OgreWindowEventUtilities.h>
#include <OISEvents.h>
#include <OISInputManager.h>
#include <OISKeyboard.h>
#include <OISMouse.h>
#include <CEGUI/CEGUI.h>
#include <CEGUI/RendererModules/Ogre/Renderer.h>
#include <SdkCameraMan.h>
class TutorialApplication
: public Ogre::WindowEventListener,
public Ogre::FrameListener,
public OIS::KeyListener,
public OIS::MouseListener
{
public:
TutorialApplication();
virtual ~TutorialApplication();
void go();
private:
//=============== Specific Variables
Ogre::Real mMove;
Ogre::SceneNode* mCamNode;
Ogre::Vector3 mDirection;
Ogre::Entity* ogreEntity;
Ogre::SceneNode* ogreNode;
//=============== Specific Methods
virtual bool mousePressed(const OIS::MouseEvent& me, OIS::MouseButtonID id);
virtual bool mouseReleased(const OIS::MouseEvent& me, OIS::MouseButtonID id);
virtual bool mouseMoved(const OIS::MouseEvent& me);
virtual bool keyPressed(const OIS::KeyEvent& ke);
virtual bool keyReleased(const OIS::KeyEvent& ke);
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
CEGUI::OgreRenderer* mRenderer;
CEGUI::Window *m_ConsoleWindow;
bool quit(const CEGUI::EventArgs &e);
////////////////////////////////////////////////////////////////////////////////////////////////
//####################################################################################//////////
//========================================== Please Do Not Change The Following Sections
//=============== Required Base Variables
Ogre::Root* mRoot;
Ogre::Camera* mCamera;
Ogre::SceneManager* mSceneMgr;
Ogre::RenderWindow* mWindow;
Ogre::String mResourcesCfg;
Ogre::String mPluginsCfg;
OIS::InputManager* mInputMgr;
bool mShutDown;
OgreBites::SdkCameraMan* mCameraMan;
//=============== Required Base Methods
bool setup();
bool configure();
void chooseSceneManager();
void createCamera();
void createScene();
void destroyScene();
void createFrameListener();
void createViewports();
void setupResources();
void createResourceListener();
void loadResources();
bool frameRenderingQueued(const Ogre::FrameEvent& evt);
//=============== OIS
OIS::Mouse* mMouse;
OIS::Keyboard* mKeyboard;
};
#endif // #ifndef __TutorialApplication_h_
thanks for reply. this code makes me crazy !!!
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sun Aug 09, 2015 14:27
the output of code is here. maybe it can to help!
Code: Select all
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\ConsoleApplication3.exe'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\boost_system-vc110-mt-1_54.dll'. Module was built without symbols.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp110.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcr110.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\CEGUIBase-0_d.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\freetype_d.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcr110d.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\pcre_d.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winmm.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcrt.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\user32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\lpk.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\usp10.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\advapi32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sechost.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rpcrt4.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sspicli.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptbase.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dbghelp.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp110d.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\CEGUIOgreRenderer-0_d.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\OgreMain_d.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shell32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shlwapi.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ws2_32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\nsi.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\OIS_d.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dinput8.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\imm32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msctf.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\nvinit.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\version.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\_etoured.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\nvd3d9wrap.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\setupapi.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cfgmgr32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\oleaut32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ole32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\devobj.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Program Files (x86)\NVIDIA Corporation\coprocmanager\nvdxgiwrap.dll'. Cannot find or open the PDB file.
Creating resource group General
Creating resource group Internal
Creating resource group Autodetect
SceneManagerFactory for type 'DefaultSceneManager' registered.
Registering ResourceManager for type Material
Registering ResourceManager for type Mesh
Registering ResourceManager for type Skeleton
MovableObjectFactory for type 'ParticleSystem' registered.
ArchiveFactory for archive type FileSystem registered.
ArchiveFactory for archive type Zip registered.
ArchiveFactory for archive type EmbeddedZip registered.
DDS codec registering
FreeImage version: 3.15.3
This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
Supported formats: bmp,ico,jpg,jif,jpeg,jpe,jng,koa,iff,lbm,mng,pbm,pbm,pcd,pcx,pgm,pgm,png,ppm,ppm,ras,tga,targa,tif,tiff,wap,wbmp,wbm,psd,cut,xbm,xpm,gif,hdr,g3,sgi,exr,j2k,j2c,jp2,pfm,pct,pict,pic,3fr,arw,bay,bmq,cap,cine,cr2,crw,cs1,dc2,dcr,drf,dsc,dng,erf,fff,ia,iiq,k25,kc2,kdc,mdc,mef,mos,mrw,nef,nrw,orf,pef,ptx,pxn,qtk,raf,raw,rdc,rw2,rwl,rwz,sr2,srf,srw,sti
Registering ResourceManager for type HighLevelGpuProgram
Registering ResourceManager for type Compositor
MovableObjectFactory for type 'Entity' registered.
MovableObjectFactory for type 'Light' registered.
MovableObjectFactory for type 'BillboardSet' registered.
MovableObjectFactory for type 'ManualObject' registered.
MovableObjectFactory for type 'BillboardChain' registered.
MovableObjectFactory for type 'RibbonTrail' registered.
Loading library .\RenderSystem_Direct3D9_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\RenderSystem_Direct3D9_d.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\d3d9.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\d3d8thk.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dwmapi.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\D3DX9_43.dll'. Cannot find or open the PDB file.
Installing plugin: D3D9 RenderSystem
D3D9 : Direct3D9 Rendering Subsystem created.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wintrust.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\crypt32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msasn1.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\uxtheme.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\nvumdshim.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\igdumd32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\gdi32.dll'
The thread 0x1470 has exited with code 0 (0x0).
D3D9: Driver Detection Starts
D3D9: Driver Detection Ends
Plugin successfully installed
Loading library .\RenderSystem_Direct3D11_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\RenderSystem_Direct3D11_d.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\d3d11.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dxgi.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\D3DCompiler_43.dll'. Cannot find or open the PDB file.
Installing plugin: D3D11 RenderSystem
D3D11 : Direct3D11 Rendering Subsystem created.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\igd10umd32.dll'. Cannot find or open the PDB file.
D3D11: Driver Detection Starts
D3D11: Driver Detection Ends
Plugin successfully installed
Loading library .\RenderSystem_GL_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\RenderSystem_GL_d.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\glu32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\opengl32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ddraw.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dciman32.dll'. Cannot find or open the PDB file.
Installing plugin: GL RenderSystem
OpenGL Rendering Subsystem created.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Program Files (x86)\Babylon\Babylon-Pro\captlib.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\oleacc.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\psapi.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wininet.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\urlmon.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\xmllite.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\iertutil.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ig4icd32.dll'. Cannot find or open the PDB file.
Plugin successfully installed
Loading library .\Plugin_ParticleFX_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_ParticleFX_d.dll'. Cannot find or open the PDB file.
Installing plugin: ParticleFX
Particle Emitter Type 'Point' registered
Particle Emitter Type 'Box' registered
Particle Emitter Type 'Ellipsoid' registered
Particle Emitter Type 'Cylinder' registered
Particle Emitter Type 'Ring' registered
Particle Emitter Type 'HollowEllipsoid' registered
Particle Affector Type 'LinearForce' registered
Particle Affector Type 'ColourFader' registered
Particle Affector Type 'ColourFader2' registered
Particle Affector Type 'ColourImage' registered
Particle Affector Type 'ColourInterpolator' registered
Particle Affector Type 'Scaler' registered
Particle Affector Type 'Rotator' registered
Particle Affector Type 'DirectionRandomiser' registered
Particle Affector Type 'DeflectorPlane' registered
Plugin successfully installed
Loading library .\Plugin_BSPSceneManager_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_BSPSceneManager_d.dll'. Cannot find or open the PDB file.
Installing plugin: BSP Scene Manager
Plugin successfully installed
Loading library .\Plugin_CgProgramManager_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_CgProgramManager_d.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\cg.dll'. Cannot find or open the PDB file.
Installing plugin: Cg Program Manager
Plugin successfully installed
Loading library .\Plugin_PCZSceneManager_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_PCZSceneManager_d.dll'. Cannot find or open the PDB file.
Installing plugin: Portal Connected Zone Scene Manager
PCZone Factory Type 'ZoneType_Default' registered
Plugin successfully installed
Loading library .\Plugin_OctreeZone_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_OctreeZone_d.dll'. Cannot find or open the PDB file.
Installing plugin: Octree Zone Factory
Plugin successfully installed
Loading library .\Plugin_OctreeSceneManager_d
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_OctreeSceneManager_d.dll'. Cannot find or open the PDB file.
Installing plugin: Octree Scene Manager
Plugin successfully installed
*-*-* OGRE Initialising
*-*-* Version 1.9.0 (Ghadamon)
Creating resource group Essential
Added resource location '../../Media/thumbnails' of type 'FileSystem' to resource group 'Essential'
Added resource location '../../Media/packs/SdkTrays.zip' of type 'Zip' to resource group 'Essential'
Added resource location '../../Media/packs/profiler.zip' of type 'Zip' to resource group 'Essential'
Creating resource group Fonts
Added resource location 'E:/CEGUI/cegui-0.8.2/datafiles/fonts' of type 'FileSystem' to resource group 'Fonts'
Added resource location '../../Media' of type 'FileSystem' to resource group 'General'
Creating resource group Imagesets
Added resource location 'E:/CEGUI/cegui-0.8.2/datafiles/imagesets' of type 'FileSystem' to resource group 'Imagesets'
Creating resource group Layouts
Added resource location 'E:/CEGUI/cegui-0.8.2/datafiles/layouts' of type 'FileSystem' to resource group 'Layouts'
Added resource location 'E:/CEGUI/cegui-0.8.2/datafiles/My layouts' of type 'FileSystem' to resource group 'Layouts'
Creating resource group LookNFeel
Added resource location 'E:/CEGUI/cegui-0.8.2/datafiles/looknfeel' of type 'FileSystem' to resource group 'LookNFeel'
Creating resource group Popular
Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/materials/textures/nvidia' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/models' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/DeferredShadingMedia' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/PCZAppMedia' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/RTShaderLib' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/RTShaderLib/materials' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/materials/scripts/SSAO' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/materials/textures/SSAO' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/volumeTerrain' of type 'FileSystem' to resource group 'Popular'
Added resource location '../../Media/packs/cubemap.zip' of type 'Zip' to resource group 'Popular'
Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'Popular'
Added resource location '../../Media/packs/dragon.zip' of type 'Zip' to resource group 'Popular'
Added resource location '../../Media/packs/fresneldemo.zip' of type 'Zip' to resource group 'Popular'
Added resource location '../../Media/packs/ogretestmap.zip' of type 'Zip' to resource group 'Popular'
Added resource location '../../Media/packs/ogredance.zip' of type 'Zip' to resource group 'Popular'
Added resource location '../../Media/packs/Sinbad.zip' of type 'Zip' to resource group 'Popular'
Added resource location '../../Media/packs/skybox.zip' of type 'Zip' to resource group 'Popular'
Added resource location '../../Media/volumeTerrain/volumeTerrainBig.zip' of type 'Zip' to resource group 'Popular'
Creating resource group Schemes
Added resource location 'E:/CEGUI/cegui-0.8.2/datafiles/schemes' of type 'FileSystem' to resource group 'Schemes'
Creating resource group Tests
Added resource location '../../Tests/Media' of type 'FileSystem' to resource group 'Tests'
D3D11 : RenderSystem Option: Allow NVPerfHUD = No
D3D11 : RenderSystem Option: Driver type = Hardware
D3D11 : RenderSystem Option: FSAA = 0
D3D11 : RenderSystem Option: Floating-point mode = Fastest
D3D11 : RenderSystem Option: Full Screen = Yes
D3D11 : RenderSystem Option: Information Queue Exceptions Bottom Level = Info (exception on any message)
D3D11 : RenderSystem Option: Max Requested Feature Levels = 11.0
D3D11 : RenderSystem Option: Min Requested Feature Levels = 9.1
D3D11 : RenderSystem Option: Rendering Device = Intel(R) HD Graphics Family
D3D11 : RenderSystem Option: VSync = No
D3D11 : RenderSystem Option: VSync Interval = 1
D3D11 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour
D3D11 : RenderSystem Option: sRGB Gamma Conversion = No
D3D9 : RenderSystem Option: Allow DirectX9Ex = No
D3D9 : RenderSystem Option: Allow NVPerfHUD = No
D3D9 : RenderSystem Option: FSAA = 0
D3D9 : RenderSystem Option: Fixed Pipeline Enabled = Yes
D3D9 : RenderSystem Option: Floating-point mode = Fastest
D3D9 : RenderSystem Option: Full Screen = No
D3D9 : RenderSystem Option: Multi device memory hint = Use minimum system memory
D3D9 : RenderSystem Option: Rendering Device = Monitor-1-Intel(R) HD Graphics 3000
D3D9 : RenderSystem Option: Resource Creation Policy = Create on all devices
D3D9 : RenderSystem Option: Use Multihead = Auto
D3D9 : RenderSystem Option: VSync = No
D3D9 : RenderSystem Option: VSync Interval = 1
D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour
D3D9 : RenderSystem Option: sRGB Gamma Conversion = No
CPU Identifier & Features
-------------------------
* CPU ID: GenuineIntel: Intel(R) Core(TM) i5-2450M CPU @ 2.50GHz
* SSE: yes
* SSE2: yes
* SSE3: yes
* MMX: yes
* MMXEXT: yes
* 3DNOW: no
* 3DNOWEXT: no
* CMOV: yes
* TSC: yes
* FPU: yes
* PRO: yes
* HT: no
-------------------------
D3D9 : Subsystem Initialising
Registering ResourceManager for type Texture
Registering ResourceManager for type GpuProgram
D3D9RenderSystem::_createRenderWindow "ITutorial", 800x600 windowed miscParams: FSAA=0 FSAAHint= colourDepth=32 gamma=false monitorIndex=0 useNVPerfHUD=false vsync=false vsyncInterval=1
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ole32.dll'. Cannot find or open the PDB file.
'ConsoleApplication3.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\ole32.dll'
D3D9 : Created D3D9 Rendering Window 'ITutorial' : 800x600, 32bpp
D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.
D3D9: Vertex texture format supported - PF_L8
D3D9: Vertex texture format supported - PF_L16
D3D9: Vertex texture format supported - PF_A8
D3D9: Vertex texture format supported - PF_A4L4
D3D9: Vertex texture format supported - PF_BYTE_LA
D3D9: Vertex texture format supported - PF_R5G6B5
D3D9: Vertex texture format supported - PF_B5G6R5
D3D9: Vertex texture format supported - PF_A4R4G4B4
D3D9: Vertex texture format supported - PF_A1R5G5B5
D3D9: Vertex texture format supported - PF_A8R8G8B8
D3D9: Vertex texture format supported - PF_B8G8R8A8
D3D9: Vertex texture format supported - PF_A2R10G10B10
D3D9: Vertex texture format supported - PF_A2B10G10R10
D3D9: Vertex texture format supported - PF_DXT1
D3D9: Vertex texture format supported - PF_DXT2
D3D9: Vertex texture format supported - PF_DXT3
D3D9: Vertex texture format supported - PF_DXT4
D3D9: Vertex texture format supported - PF_DXT5
D3D9: Vertex texture format supported - PF_FLOAT16_RGB
D3D9: Vertex texture format supported - PF_FLOAT16_RGBA
D3D9: Vertex texture format supported - PF_FLOAT32_RGB
D3D9: Vertex texture format supported - PF_FLOAT32_RGBA
D3D9: Vertex texture format supported - PF_X8R8G8B8
D3D9: Vertex texture format supported - PF_R8G8B8A8
D3D9: Vertex texture format supported - PF_DEPTH
D3D9: Vertex texture format supported - PF_SHORT_RGBA
D3D9: Vertex texture format supported - PF_FLOAT16_R
D3D9: Vertex texture format supported - PF_FLOAT32_R
D3D9: Vertex texture format supported - PF_SHORT_GR
D3D9: Vertex texture format supported - PF_FLOAT16_GR
D3D9: Vertex texture format supported - PF_FLOAT32_GR
D3D9: Vertex texture format supported - PF_SHORT_RGB
D3D9: Vertex texture format supported - PF_PVRTC_RGB2
D3D9: Vertex texture format supported - PF_PVRTC_RGBA2
D3D9: Vertex texture format supported - PF_PVRTC_RGB4
D3D9: Vertex texture format supported - PF_PVRTC_RGBA4
D3D9: Vertex texture format supported - PF_PVRTC2_2BPP
D3D9: Vertex texture format supported - PF_PVRTC2_4BPP
D3D9: Vertex texture format supported - PF_R11G11B10_FLOAT
D3D9: Vertex texture format supported - PF_R8_UINT
D3D9: Vertex texture format supported - PF_R8G8_UINT
D3D9: Vertex texture format supported - PF_R8G8B8_UINT
D3D9: Vertex texture format supported - PF_R8G8B8A8_UINT
D3D9: Vertex texture format supported - PF_R16_UINT
D3D9: Vertex texture format supported - PF_R16G16_UINT
D3D9: Vertex texture format supported - PF_R16G16B16_UINT
D3D9: Vertex texture format supported - PF_R16G16B16A16_UINT
D3D9: Vertex texture format supported - PF_R32_UINT
D3D9: Vertex texture format supported - PF_R32G32_UINT
D3D9: Vertex texture format supported - PF_R32G32B32_UINT
D3D9: Vertex texture format supported - PF_R32G32B32A32_UINT
D3D9: Vertex texture format supported - PF_R8_SINT
D3D9: Vertex texture format supported - PF_R8G8_SINT
D3D9: Vertex texture format supported - PF_R8G8B8_SINT
D3D9: Vertex texture format supported - PF_R8G8B8A8_SINT
D3D9: Vertex texture format supported - PF_R16_SINT
D3D9: Vertex texture format supported - PF_R16G16_SINT
D3D9: Vertex texture format supported - PF_R16G16B16_SINT
D3D9: Vertex texture format supported - PF_R16G16B16A16_SINT
D3D9: Vertex texture format supported - PF_R32_SINT
D3D9: Vertex texture format supported - PF_R32G32_SINT
D3D9: Vertex texture format supported - PF_R32G32B32_SINT
D3D9: Vertex texture format supported - PF_R32G32B32A32_SINT
D3D9: Vertex texture format supported - PF_R9G9B9E5_SHAREDEXP
D3D9: Vertex texture format supported - PF_BC4_UNORM
D3D9: Vertex texture format supported - PF_BC4_SNORM
D3D9: Vertex texture format supported - PF_BC5_UNORM
D3D9: Vertex texture format supported - PF_BC5_SNORM
D3D9: Vertex texture format supported - PF_BC6H_UF16
D3D9: Vertex texture format supported - PF_BC6H_SF16
D3D9: Vertex texture format supported - PF_BC7_UNORM
D3D9: Vertex texture format supported - PF_BC7_UNORM_SRGB
D3D9: Vertex texture format supported - PF_R8
D3D9: Vertex texture format supported - PF_RG8
D3D9: Vertex texture format supported - PF_R8_SNORM
D3D9: Vertex texture format supported - PF_R8G8_SNORM
D3D9: Vertex texture format supported - PF_R8G8B8_SNORM
D3D9: Vertex texture format supported - PF_R8G8B8A8_SNORM
D3D9: Vertex texture format supported - PF_R16_SNORM
D3D9: Vertex texture format supported - PF_R16G16_SNORM
D3D9: Vertex texture format supported - PF_R16G16B16_SNORM
D3D9: Vertex texture format supported - PF_R16G16B16A16_SNORM
D3D9: Vertex texture format supported - PF_ETC1_RGB8
D3D9: Vertex texture format supported - PF_ETC2_RGB8
D3D9: Vertex texture format supported - PF_ETC2_RGBA8
D3D9: Vertex texture format supported - PF_ETC2_RGB8A1
D3D9: Vertex texture format supported - PF_ATC_RGB
D3D9: Vertex texture format supported - PF_ATC_RGBA_EXPLICIT_ALPHA
D3D9: Vertex texture format supported - PF_ATC_RGBA_INTERPOLATED_ALPHA
RenderSystem capabilities
-------------------------
RenderSystem Name: Direct3D9 Rendering Subsystem
GPU Vendor: intel
Device Name: Monitor-1-Intel(R) HD Graphics 3000
Driver Version: 10.18.13.5330
* Fixed function pipeline: yes
* Hardware generation of mipmaps: yes
* Texture blending: yes
* Anisotropic texture filtering: yes
* Dot product texture operation: yes
* Cube mapping: yes
* Hardware stencil buffer: yes
- Stencil depth: 8
- Two sided stencil support: yes
- Wrap stencil values: yes
* Hardware vertex / index buffers: yes
* Vertex programs: yes
* Number of floating-point constants for vertex programs: 256
* Number of integer constants for vertex programs: 16
* Number of boolean constants for vertex programs: 16
* Fragment programs: yes
* Number of floating-point constants for fragment programs: 224
* Number of integer constants for fragment programs: 16
* Number of boolean constants for fragment programs: 16
* Geometry programs: no
* Number of floating-point constants for geometry programs: 0
* Number of integer constants for geometry programs: 0
* Number of boolean constants for geometry programs: 0
* Tesselation Hull programs: no
* Number of floating-point constants for tesselation hull programs: 0
* Number of integer constants for tesselation hull programs: 0
* Number of boolean constants for tesselation hull programs: 0
* Tesselation Domain programs: no
* Number of floating-point constants for tesselation domain programs: 0
* Number of integer constants for tesselation domain programs: 0
* Number of boolean constants for tesselation domain programs: 0
* Compute programs: no
* Number of floating-point constants for compute programs: 0
* Number of integer constants for compute programs: 0
* Number of boolean constants for compute programs: 0
* Supported Shader Profiles: hlsl ps_1_1 ps_1_2 ps_1_3 ps_1_4 ps_2_0 ps_2_a ps_2_b ps_2_x ps_3_0 vs_1_1 vs_2_0 vs_2_a vs_2_x vs_3_0
* Texture Compression: yes
- DXT: yes
- VTC: no
- PVRTC: no
- ATC: no
- ETC1: no
- ETC2: no
- BC4/BC5: no
- BC6H/BC7: no
* Scissor Rectangle: yes
* Hardware Occlusion Query: yes
* User clip planes: yes
* VET_UBYTE4 vertex element type: yes
* Infinite far plane projection: yes
* Hardware render-to-texture: yes
* Floating point textures: yes
* Non-power-of-two textures: yes
* 1d textures: yes
* Volume textures: yes
* Multiple Render Targets: 4
- With different bit depths: yes
* Point Sprites: yes
* Extended point parameters: yes
* Max Point Size: 256
* Vertex texture fetch: yes
* Number of world matrices: 0
* Number of texture units: 8
* Stencil buffer depth: 8
* Number of vertex blend matrices: 0
- Max vertex textures: 4
- Vertex textures shared: no
* Render to Vertex Buffer : no
* Hardware Atomic Counters: no
* DirectX per stage constants: yes
***************************************
*** D3D9 : Subsystem Initialised OK ***
***************************************
DefaultWorkQueue('Root') initialising on thread 11b4.
DefaultWorkQueue('Root')::WorkerFunc - thread 464 starting.
DefaultWorkQueue('Root')::WorkerFunc - thread 14a8 starting.
DefaultWorkQueue('Root')::WorkerFunc - thread ef4 starting.
DefaultWorkQueue('Root')::WorkerFunc - thread 420 starting.
Particle Renderer Type 'billboard' registered
SceneManagerFactory for type 'BspSceneManager' registered.
Registering ResourceManager for type BspLevel
SceneManagerFactory for type 'PCZSceneManager' registered.
MovableObjectFactory for type 'PCZLight' registered.
MovableObjectFactory for type 'Portal' registered.
MovableObjectFactory for type 'AntiPortal' registered.
PCZone Factory Type 'ZoneType_Octree' registered
SceneManagerFactory for type 'OctreeSceneManager' registered.
Parsing scripts for resource group Autodetect
Finished parsing scripts for resource group Autodetect
Creating resources for group Autodetect
All done
Parsing scripts for resource group Essential
Parsing script SdkTrays.material
Parsing script OgreProfiler.material
Finished parsing scripts for resource group Essential
Creating resources for group Essential
All done
Parsing scripts for resource group Fonts
Finished parsing scripts for resource group Fonts
Creating resources for group Fonts
All done
Parsing scripts for resource group General
Finished parsing scripts for resource group General
Creating resources for group General
All done
Parsing scripts for resource group Imagesets
Finished parsing scripts for resource group Imagesets
Creating resources for group Imagesets
All done
Parsing scripts for resource group Internal
Finished parsing scripts for resource group Internal
Creating resources for group Internal
All done
Parsing scripts for resource group Layouts
Finished parsing scripts for resource group Layouts
Creating resources for group Layouts
All done
Parsing scripts for resource group LookNFeel
Finished parsing scripts for resource group LookNFeel
Creating resources for group LookNFeel
All done
Parsing scripts for resource group Popular
Parsing script DualQuaternion.program
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/DualQuaternionHardwareSkinningTwoWeightsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternion.program(14): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/DualQuaternionHardwareSkinningTwoWeightsTwoPhaseCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternion.program(28): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/DualQuaternionHardwareSkinningTwoWeightsShadowCasterCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DualQuaternion.program(123): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DualQuaternion.program(124): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DualQuaternion.program(125): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/DualQuaternionHardwareSkinningTwoWeightsTwoPhaseShadowCasterCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternion.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DualQuaternion.program(154): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DualQuaternion.program(155): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DualQuaternion.program(156): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DualQuaternion.program(157): setting of constant failed
Parsing script Examples.program
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/BasicVertexPrograms/AmbientOneTextureCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(16): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(17): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/HardwareSkinningTwoWeightsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.program(293): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.program(294): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.program(295): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.program(296): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.program(297): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.program(298): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.program(299): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.program(300): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/HardwareSkinningFourWeights encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(314): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(315): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(316): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(317): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(318): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(319): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(320): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/HardwareMorphAnimationCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(334): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(335): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/HardwarePoseAnimationCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(383): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(384): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/HardwareMorphAnimationWithNormalsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(431): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(432): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(433): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(434): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/HardwarePoseAnimationWithNormalsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(484): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(485): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(486): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.program(487): setting of constant failed
Parsing script Instancing.program
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Instancing/shadow_caster_cg_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource depthshadowobject.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing_cg_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Instancing_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Instancing.program(125): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Instancing.program(126): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Instancing.program(127): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Instancing.program(128): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Instancing.program(129): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Instancing.program(130): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Instancing.program(132): setting of constant failed
Parsing script StdQuad_vp.program
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/StdQuad_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in StdQuad_vp.program(9): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/StdQuad_Tex2_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in StdQuad_vp.program(21): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/StdQuad_Tex2a_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in StdQuad_vp.program(33): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/StdQuad_Tex3_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in StdQuad_vp.program(45): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/StdQuad_Tex4_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource StdQuad_vp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in StdQuad_vp.program(57): setting of constant failed
Parsing script deferred_post.program
Parsing script ShadowCaster.program
Parsing script GBuffer.program
Parsing script triplanarReference.program
Parsing script AdaptivePNTrianglesTessellation.material
Parsing script ASCII.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/ASCIIFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ASCIIFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ASCII.material(9): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ASCII.material(10): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ASCII.material(11): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ASCII.material(12): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ASCII.material(13): setting of constant failed
Parsing script ASMSwizzle.material
Compiler error: object unsupported by render system in ASMSwizzle.material(1): , Shader name: Ogre/GPTest/Swizzle_GP_ASM
Parsing script BlackAndWhite.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/B&W_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GrayScale.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script Bloom.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B880.
High-level program Blur0_ps20 encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur0_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B880.
High-level program Blur0_vs11 encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur0_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B880.
High-level program Blur1_ps20 encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur1_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B880.
High-level program Blur1_vs11 encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur1_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script Bloom2.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program BlurH_ps20_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BlurH_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program Blur_vs11_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Blur_vs11.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program BlurV_ps20_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BlurV_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program Bloom2_ps20_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Bloom2_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Bloom2.material(323): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Bloom2.material(324): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program BrightBloom2_ps20_hlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource BrightBloom2_ps20.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script CGSwizzle.material
Parsing script CompositorDemo.material
Parsing script DepthShadowmap.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program Ogre/DepthShadowmap/CasterVP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(12): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(13): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program Ogre/DepthShadowmap/CasterFP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program Ogre/DepthShadowmap/ReceiverVP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(38): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(39): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(40): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(41): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(42): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(43): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program Ogre/DepthShadowmap/ReceiverFP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(58): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(59): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(60): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(61): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program Ogre/DepthShadowmap/ReceiverFPPCF_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(75): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(76): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(77): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program Ogre/DepthShadowmap/NormalMapReceiverVP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(88): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(89): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(90): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(91): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program Ogre/DepthShadowmap/NormalMapReceiverFP_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(105): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(106): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(107): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(108): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(109): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program Ogre/DepthShadowmap/NormalMapReceiverFPPCF_HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DepthShadowmap.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DepthShadowmap.material(122): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(123): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(124): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(125): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in DepthShadowmap.material(126): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/BasicFragmentPrograms/PassthroughFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource PassthroughFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script Dither.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/Dither_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DitherFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script DOF.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program DOF_Blur_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DOF_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program DOF_Blend_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DOF_ps.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script DualQuaternion.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B89C.
High-level program Ogre/HardwareSkinningTwoWeightsShadowCasterCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in DualQuaternion.material(43): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in DualQuaternion.material(44): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in DualQuaternion.material(45): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in DualQuaternion.material(69): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in DualQuaternion.material(70): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in DualQuaternion.material(71): setting of constant failed
Parsing script Embossed.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/Embossed_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GrayScale.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script Example-Water.material
Parsing script Examples-Advanced.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/CelShadingVPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_CelShading.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples-Advanced.material(12): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples-Advanced.material(13): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples-Advanced.material(14): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples-Advanced.material(15): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/CelShadingFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_CelShading.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(102): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(104): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/BumpMapVPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/BumpMapFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B89C.
High-level program Examples/BumpMapVPShadowRcvCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B89C.
High-level program Examples/BumpMapFPShadowRcvCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/BumpMapVPSpecularCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(492): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(493): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(494): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/BumpMapFPSpecularCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(500): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(501): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/BumpMapVPTangentParityCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_BumpMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(530): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(531): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Examples/TexProjectionVP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Projection.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Examples/TexProjectionFP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Projection.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/FresnelRefractReflectVPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Fresnel.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(691): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(692): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(693): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Examples-Advanced.material(694): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Examples-Advanced.material(695): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Examples-Advanced.material(696): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/FresnelRefractReflectFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Fresnel.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Examples-Advanced.material(701): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Examples-Advanced.material(702): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Examples-Advanced.material(703): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Examples-Advanced.material(704): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Examples-Advanced.material(705): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(411): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(412): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(418): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(424): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(425): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(426): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(427): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(432): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(492): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(493): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(494): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(500): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples-Advanced.material(501): setting of constant failed
Compiler error: object unsupported by render system in Examples-Advanced.material(938): , Shader name: Examples/TextureArrayPSasm
Parsing script Examples-DynTex.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Dyn_Text_VS_CG encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Dyn-Text.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples-DynTex.material(9): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Dyn_Text_PS_CG encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Dyn-Text.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script Examples-Water.material
Parsing script Examples.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/MorningSkyBoxHDRfpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Examples/MorningCubeMapHDRfp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Ogre/HardwareSkinningOneWeight encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8DC.
High-level program Ogre/HardwareSkinningOneWeightShadowCaster encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(844): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(848): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(849): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(850): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(852): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverTexVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(864): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(865): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverAmbientVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(876): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(877): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(878): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverAmbientFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverCasterVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(908): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(909): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(910): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverCasterFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverReceiverVpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(931): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(932): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(933): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(935): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(937): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(938): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(940): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/GrassWaverReceiverFpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Grass.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.material(954): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.material(955): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Examples.material(956): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/BasicFragmentPrograms/DiffuseOneTextureCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples.material(1968): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples.material(1969): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in Examples.material(1970): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/ShowTangents_vCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(2094): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Examples/ShowNormals_vCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Examples.material(2144): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/ShowUV_pCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/ShowUVdir3D_pCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Example_Basic.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script facial.material
Parsing script Glass.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/GlassFP_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GlassFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script GLSLSwizzle.material
Parsing script Halftone.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/HalftoneFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HalftoneFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Halftone.material(9): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Halftone.material(10): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Halftone.material(11): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Halftone.material(12): setting of constant failed
Parsing script hdr.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA4C.
High-level program Ogre/Compositor/HDR/downscale2x2LuminenceHLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in hdr.material(40): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA4C.
High-level program Ogre/Compositor/HDR/downscale3x3HLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in hdr.material(109): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA4C.
High-level program Ogre/Compositor/HDR/downscale3x3brightpassHLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in hdr.material(188): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program Ogre/Compositor/HDR/bloomHLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program Ogre/Compositor/HDR/finaltonemappingHLSL_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource hdr.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script HeatVision.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Fury/HeatVision/HeatCaster_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in HeatVision.material(81): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in HeatVision.material(82): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Fury/HeatVision/HeatCaster_Cg_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Fury/HeatVision/ColdCaster_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in HeatVision.material(172): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in HeatVision.material(173): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Fury/HeatVision/ColdCaster_Cg_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Fury/HeatVision/LightToHeat_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HeatVision.material(196): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Fury/HeatVision/LightToHeat_Cg_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in HeatVision.material(305): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in HeatVision.material(307): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in HeatVision.material(310): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Fury/HeatVision/Blur_Cg_vp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HeatVision.material(354): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Fury/HeatVision/Blur_Cg_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HeatVision.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in HeatVision.material(458): setting of constant failed
Parsing script Hurt.material
Parsing script HWInstancing.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/HWBasic_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HWBasicInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HWInstancing.material(72): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HWInstancing.material(74): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HWInstancing.material(75): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/HWBasic/shadow_caster_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HWBasicInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HWInstancing.material(87): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HWInstancing.material(88): setting of constant failed
Parsing script HW_VTFInstancing.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/HW_VTF_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(260): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(262): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(263): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/HW/shadow_caster_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(275): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(276): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/HW_VTF_dq_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(288): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(290): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(291): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/HW/shadow_caster_dq_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(303): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(304): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/HW_VTF_dq_two_weights_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(316): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(318): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(319): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/HW/shadow_caster_dq_two_weights_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(331): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTFInstancing.material(332): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in HW_VTFInstancing.material(388): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in HW_VTFInstancing.material(389): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in HW_VTFInstancing.material(504): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in HW_VTFInstancing.material(505): setting of constant failed
Parsing script HW_VTF_LUTInstancing.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/HW_VTF_LUT_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(260): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(262): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(263): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/HW/LUT/shadow_caster_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(275): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(276): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/HW_VTF_LUT_dq_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(288): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(290): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(291): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/HW/LUT/shadow_caster_dq_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(303): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(304): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/HW_VTF_LUT_dq_two_weights_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(316): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(318): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(319): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/HW/LUT/shadow_caster_dq_two_weights_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HW_VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(331): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in HW_VTF_LUTInstancing.material(332): setting of constant failed
Parsing script instancing.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program InstancingCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource instancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(9): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(10): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(11): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(12): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(13): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program InstancingShadowCasterCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource instancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(23): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(24): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(25): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program CrowdCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource instancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(35): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(36): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(37): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(38): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(39): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(40): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program CrowdShadowCasterCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource instancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(50): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(51): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(52): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in instancing.material(53): setting of constant failed
Parsing script InstancingMisc.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/Misc_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource InstancingMisc.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in InstancingMisc.material(52): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in InstancingMisc.material(53): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in InstancingMisc.material(54): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in InstancingMisc.material(55): setting of constant failed
Parsing script Invert.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/Invert_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource InvertFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script IsoSurf.material
Parsing script Laplace.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/Laplace_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource LaplaceFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Laplace.material(44): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Laplace.material(45): setting of constant failed
Parsing script MotionBlur.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/Combine_Cg_fp encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Combine_fp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in MotionBlur.material(9): setting of constant failed
Parsing script MRTtest.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program Ogre/MRTtest/scenefp/HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource mrttestfp.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program Ogre/MRTtest/quadfp/HLSL encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource mrttestfp.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script NightVision.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/Compositor/NightVisionFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource NightVisionFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in NightVision.material(9): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in NightVision.material(10): setting of constant failed
Parsing script Ocean.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program HLSL/OceanVS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource oceanHLSL_Cg.vert in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(10): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(11): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Ocean.material(12): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(13): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B880.
High-level program HLSL/OceanFS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource oceanHLSL_Cg.frag in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Cg/OceanVS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource oceanHLSL_Cg.vert in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(192): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(193): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in Ocean.material(194): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(195): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Cg/OceanFS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource oceanHLSL_Cg.frag in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Cg/Ocean2VS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Ocean2HLSL_Cg.vert in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(255): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(256): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Cg/Ocean2FS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Ocean2HLSL_Cg.frag in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA6C.
High-level program HLSL/Ocean2VS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Ocean2HLSL_Cg.vert in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(327): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in Ocean.material(328): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B880.
High-level program HLSL/Ocean2FS encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Ocean2HLSL_Cg.frag in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script OffsetMapping.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/OffsetMappingVPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource OffsetMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(215): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(216): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(217): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Examples/OffsetMappingFPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource OffsetMapping.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(223): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(224): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OffsetMapping.material(226): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(266): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(267): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(268): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(274): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(275): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OffsetMapping.material(277): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(307): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(308): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(309): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program Examples/OffsetMappingIntegratedShadowsVPhlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource OffsetMapping.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(437): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(438): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(439): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(440): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(442): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(443): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(445): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(446): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(447): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B840.
High-level program Examples/OffsetMappingIntegratedShadowsFPhlsl encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource OffsetMapping.hlsl in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(453): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(454): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(456): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OffsetMapping.material(457): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OffsetMapping.material(459): setting of constant failed
Parsing script Ogre.material
Parsing script OldMovie.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/OldMovie_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource OldMovieFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OldMovie.material(66): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldMovie.material(67): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldMovie.material(68): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldMovie.material(69): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldMovie.material(70): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldMovie.material(71): setting of constant failed
Parsing script OldTV.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/OldTV_FPCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource OldTV.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldTV.material(63): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldTV.material(64): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldTV.material(65): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldTV.material(66): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldTV.material(67): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldTV.material(68): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in OldTV.material(69): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OldTV.material(71): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in OldTV.material(72): setting of constant failed
Parsing script ParticleGS.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Ogre/ParticleGS/GenerateVScg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ParticleGS.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Ogre/ParticleGS/DisplayVScg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ParticleGS.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B8C4.
High-level program Ogre/ParticleGS/DisplayPScg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ParticleGS.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script Penguin.material
Parsing script Posterize.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/Posterize_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource PosterizeFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script project9.SCENE - Copy.material
Parsing script project9.SCENE.material
Parsing script pssm.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program PSSM/shadow_caster_vsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource pssm.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(13): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program PSSM/shadow_caster_psCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource pssm.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program PSSM/shadow_receiver_vsCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource pssm.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(135): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(136): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(137): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(138): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(139): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(140): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program PSSM/shadow_receiver_psCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource pssm.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(155): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(156): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(157): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(158): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(159): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in pssm.material(160): setting of constant failed
Parsing script RadialBlur.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Radial_Blur_Cg_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource Radial_Blur_FP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in RadialBlur.material(42): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in RadialBlur.material(43): setting of constant failed
Parsing script RasterizationOrder.material
Parsing script RZR-002.material
Parsing script ShaderInstancing.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/ShaderBased_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ShaderInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(202): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(203): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(205): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(206): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/shadow_caster_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ShaderInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(218): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(219): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(220): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/ShaderBased_dq_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ShaderInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(232): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(233): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(234): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(235): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/shadow_caster_dq_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ShaderInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(247): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(248): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(249): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/ShaderBased_dq_two_weights_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ShaderInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(261): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(262): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(263): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(264): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/shadow_caster_dq_two_weights_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource ShaderInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(276): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(277): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in ShaderInstancing.material(278): setting of constant failed
Parsing script ShaderSystem.material
Parsing script shadows.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/shadow/caster/depth/vpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource depthshadowobject.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(12): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(13): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/shadow/caster/depth/fpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource depthshadowobject.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/shadow/receiver/depth/pssm3/vpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource depthshadowobject.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(38): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(39): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(40): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(41): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(42): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(43): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(45): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(46): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(47): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/shadow/receiver/depth/pssm3/fpCg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource depthshadowobject.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(60): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(62): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(63): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in shadows.material(64): setting of constant failed
Parsing script SharpenEdges.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EA4C.
High-level program Ogre/Compositor/SharpenEdgesFP_ps_2_a encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource SharpenEdgesFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in SharpenEdges.material(35): setting of constant failed
Parsing script sibenik.material
Parsing script smoke.material
Parsing script Tesselation.material
Parsing script Tiling.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039B884.
High-level program Ogre/Compositor/Tiling_Cg_FP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource TilingFP.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Tiling.material(45): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in Tiling.material(46): setting of constant failed
Parsing script VarianceShadowmap.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program VarianceShadowMapping/ShadowCasterVP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource varianceshadowcastervp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in VarianceShadowmap.material(13): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program VarianceShadowMapping/ShadowCasterFP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource varianceshadowcasterfp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VarianceShadowmap.material(25): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in VarianceShadowmap.material(26): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program VarianceShadowMapping/ShadowReceiverVP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource varianceshadowreceivervp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in VarianceShadowmap.material(61): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in VarianceShadowmap.material(62): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in VarianceShadowmap.material(63): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in VarianceShadowmap.material(64): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program VarianceShadowMapping/ShadowReceiverFP encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource varianceshadowreceiverfp.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VarianceShadowmap.material(76): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VarianceShadowmap.material(77): setting of constant failed
Parsing script VTFInstancing.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(260): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(262): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(263): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/shadow_caster_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(275): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(276): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF_dq_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(288): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(290): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(291): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/shadow_caster_dq_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(303): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(304): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF_dq_two_weights_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(316): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(318): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(319): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAC8.
High-level program Ogre/Instancing/VTF/shadow_caster_dq_two_weights_cg_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource VTFInstancing.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(331): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E778.
Compiler error: invalid parameters in VTFInstancing.material(332): setting of constant failed
Parsing script deferreddemo.material
Parsing script deferred_post.material
Parsing script deferred_post_minilight.material
Parsing script ShadowCaster.material
Parsing script ssao.material
Parsing script ROOM.material
Parsing script DualQuaternionSkinning_Shadow.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_dq_ps_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternionSkinning_Shadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_dq_skinning_1weight_vs_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternionSkinning_Shadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(149): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(150): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(151): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_dq_skinning_2weight_vs_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternionSkinning_Shadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(165): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(166): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(167): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_dq_skinning_3weight_vs_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternionSkinning_Shadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(180): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(181): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(182): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_dq_skinning_4weight_vs_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternionSkinning_Shadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(196): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(197): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(198): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_dq_skinning_1weight_twophase_vs_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternionSkinning_Shadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(211): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(212): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(213): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(214): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_dq_skinning_2weight_twophase_vs_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource DualQuaternionSkinning_Shadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(228): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(229): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(230): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in DualQuaternionSkinning_Shadow.material(231): setting of constant failed
Parsing script HardwareSkinningShadow.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_ps_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HardwareSkinningShadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_skinning_1weight_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HardwareSkinningShadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(29): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(30): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_skinning_2weight_vs_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HardwareSkinningShadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(43): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(44): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_skinning_3weight_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HardwareSkinningShadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(57): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(58): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_caster_skinning_4weight_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HardwareSkinningShadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(72): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(73): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_receiver_vs encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HardwareSkinningShadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039E77C.
Compiler error: invalid parameters in HardwareSkinningShadow.material(206): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::FileNotFoundException at memory location 0x0039EAE8.
High-level program Ogre/RTShader/shadow_receiver_ps encountered an error during loading and is thus not supported.
OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource HardwareSkinningShadow.cg in resource group Popular or any other group. in ResourceGroupManager::openResource at ..\..\..\..\OgreMain\src\OgreResourceGroupManager.cpp (line 756)
Parsing script RTShaderSystem.material
Compiler error: unknown error in RTShaderSystem.material(23): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(52): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(81): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(110): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(146): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(81): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(162): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(81): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(110): token "rtshader_system" is not recognized
Compiler error: unknown error in RTShaderSystem.material(211): token "rtshader_system" is not recognized
Parsing script TriplanarTexturing.material
Compiler error: unknown error in TriplanarTexturing.material(9): token "rtshader_system" is not recognized
Parsing script CreaseShading.material
Parsing script Crytek.material
Parsing script GBuffer.material
Parsing script HemisphereMC.material
Parsing script HorizonBased.material
Parsing script Modulate.material
Parsing script ShowDepth.material
Parsing script ShowNormals.material
Parsing script ShowViewPos.material
Parsing script SSAOPost.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InternalErrorException at memory location 0x0039B688.
High-level program SSAO/Post/BoxFilter_fp_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program SSAO/Post/BoxFilter_fp_cg: The compile returned an error.
(0) : error C7002: Loop counter intial value -2 out of profile's supported range [0,255]
in CgProgram::compileMicrocode at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in SSAOPost.material(193): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InternalErrorException at memory location 0x0039B688.
High-level program SSAO/Post/SmartBoxFilter_fp_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program SSAO/Post/SmartBoxFilter_fp_cg: The compile returned an error.
(0) : error C7002: Loop counter intial value -2 out of profile's supported range [0,255]
(0) : error C7002: Loop counter intial value -2 out of profile's supported range [0,255]
in CgProgram::compileMicrocode at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in SSAOPost.material(217): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in SSAOPost.material(218): setting of constant failed
Parsing script UnsharpMask.material
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InternalErrorException at memory location 0x0039B688.
High-level program SSAO/UnsharpMask/GaussianBlurX_fp_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program SSAO/UnsharpMask/GaussianBlurX_fp_cg: The compile returned an error.
(0) : error C6001: Temporary register limit of 12 exceeded; 18 registers needed to compile program
in CgProgram::compileMicrocode at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in UnsharpMask.material(106): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in UnsharpMask.material(107): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InternalErrorException at memory location 0x0039B688.
High-level program SSAO/UnsharpMask/GaussianBlurY_fp_cg encountered an error during loading and is thus not supported.
OGRE EXCEPTION(7:InternalErrorException): Unable to compile Cg program SSAO/UnsharpMask/GaussianBlurY_fp_cg: The compile returned an error.
(0) : error C6001: Temporary register limit of 12 exceeded; 18 registers needed to compile program
in CgProgram::compileMicrocode at ..\..\..\..\..\PlugIns\CgProgramManager\src\OgreCgProgramManagerDll.cpp (line 67)
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7B0.
Compiler error: invalid parameters in UnsharpMask.material(131): setting of constant failed
First-chance exception at 0x7674C41F in ConsoleApplication3.exe: Microsoft C++ exception: Ogre::InvalidParametersException at memory location 0x0039B7AC.
Compiler error: invalid parameters in UnsharpMask.material(132): setting of constant failed
Parsing script Volumetric.material
Parsing script triplanarReference.material
Parsing script RomanBath.material
Parsing script Sinbad.material
Parsing script emitted_emitter.particle
Parsing script Examples-Water.particle
Parsing script Examples.particle
Parsing script smoke.particle
Parsing script Examples.compositor
Parsing script deferred.compositor
Parsing script ssao.compositor
Parsing script SSAO.compositor
Parsing script SSAOPost.compositor
Finished parsing scripts for resource group Popular
Creating resources for group Popular
All done
Parsing scripts for resource group Schemes
Finished parsing scripts for resource group Schemes
Creating resources for group Schemes
All done
Parsing scripts for resource group Tests
Finished parsing scripts for resource group Tests
Creating resources for group Tests
All done
Mesh: Loading Sphere001.mesh.
Texture: image1.jpg: Loading 1 faces(PF_R8G8B8,5807x2875x1) with 5 generated mipmaps from Image. Internal format is PF_X8R8G8B8,5807x2875x1.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\CEGUIExpatParser_d.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\expat_d.dll'. Symbols loaded.
'ConsoleApplication3.exe' (Win32): Loaded 'E:\CEGUI\cegui-0.8.2\build\bin\CEGUICoreWindowRendererSet_d.dll'. Symbols loaded.
*** Initializing OIS ***
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Windows\SysWOW64\hid.dll'. Cannot find or open the PDB file.
Finished
'ConsoleApplication3.exe' (Win32): Loaded 'C:\Program Files (x86)\Internet Download Manager\idmmkb.dll'. Module was built without symbols.
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\CEGUIExpatParser_d.dll'
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\expat_d.dll'
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\CEGUI\cegui-0.8.2\build\bin\CEGUICoreWindowRendererSet_d.dll'
DefaultWorkQueue('Root') shutting down on thread 11b4.
DefaultWorkQueue('Root')::WorkerFunc - thread ef4 stopped.
DefaultWorkQueue('Root')::WorkerFunc - thread 14a8 stopped.
DefaultWorkQueue('Root')::WorkerFunc - thread 420 stopped.
The thread 0xef4 has exited with code 0 (0x0).
DefaultWorkQueue('Root')::WorkerFunc - thread 464 stopped.
The thread 0x464 has exited with code 0 (0x0).
The thread 0x14a8 has exited with code 0 (0x0).
The thread 0x420 has exited with code 0 (0x0).
PCZone Factory Type 'ZoneType_Octree' unregistered
Unregistering ResourceManager for type BspLevel
*-*-* OGRE Shutdown
Unregistering ResourceManager for type Compositor
Unregistering ResourceManager for type Skeleton
Unregistering ResourceManager for type Mesh
Unregistering ResourceManager for type HighLevelGpuProgram
Uninstalling plugin: Octree Scene Manager
Plugin successfully uninstalled
Unloading library .\Plugin_OctreeSceneManager_d
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_OctreeSceneManager_d.dll'
Uninstalling plugin: Octree Zone Factory
Plugin successfully uninstalled
Unloading library .\Plugin_OctreeZone_d
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_OctreeZone_d.dll'
Uninstalling plugin: Portal Connected Zone Scene Manager
Plugin successfully uninstalled
Unloading library .\Plugin_PCZSceneManager_d
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_PCZSceneManager_d.dll'
Uninstalling plugin: Cg Program Manager
Plugin successfully uninstalled
Unloading library .\Plugin_CgProgramManager_d
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_CgProgramManager_d.dll'
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\cg.dll'
Uninstalling plugin: BSP Scene Manager
Plugin successfully uninstalled
Unloading library .\Plugin_BSPSceneManager_d
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_BSPSceneManager_d.dll'
Uninstalling plugin: ParticleFX
Plugin successfully uninstalled
Unloading library .\Plugin_ParticleFX_d
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\Plugin_ParticleFX_d.dll'
Uninstalling plugin: GL RenderSystem
*** Stopping Win32GL Subsystem ***
Plugin successfully uninstalled
Unloading library .\RenderSystem_GL_d
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\RenderSystem_GL_d.dll'
Uninstalling plugin: D3D11 RenderSystem
D3D11 : Shutting down cleanly.
D3D11 : Direct3D11 Rendering Subsystem destroyed.
Plugin successfully uninstalled
Unloading library .\RenderSystem_Direct3D11_d
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\RenderSystem_Direct3D11_d.dll'
'ConsoleApplication3.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\D3DCompiler_43.dll'
'ConsoleApplication3.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\d3d11.dll'
'ConsoleApplication3.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\dxgi.dll'
Uninstalling plugin: D3D9 RenderSystem
D3D9 : Shutting down cleanly.
The thread 0x58c has exited with code 0 (0x0).
Unregistering ResourceManager for type Texture
Unregistering ResourceManager for type GpuProgram
D3D9 : Direct3D9 Rendering Subsystem destroyed.
Plugin successfully uninstalled
Unloading library .\RenderSystem_Direct3D9_d
Unregistering ResourceManager for type Material
'ConsoleApplication3.exe' (Win32): Unloaded 'E:\OgreSDK_vc11_v1-9-0\bin\debug\RenderSystem_Direct3D9_d.dll'
'ConsoleApplication3.exe' (Win32): Unloaded 'C:\Windows\SysWOW64\D3DX9_43.dll'
The thread 0x17b8 has exited with code 0 (0x0).
The program '[4184] ConsoleApplication3.exe' has exited with code 0 (0x0).
-
lucebac
- Just can't stay away

- Posts: 193
- Joined: Sat May 24, 2014 21:55
Postby lucebac » Sun Aug 09, 2015 14:40
This is still not the CEGUI log, but from the information I can get from it I should now be able to guide you to the correct folder where the CEGUI log should be.
1) open explorer
2) goto "E:\OgreSDK_vc11_v1-9-0\bin\debug\"
3) open CEGUI.log in notepad (or whatever editor you are using)
4) post the contents of the file here (in between [code] tags)
Also, there are tons of "file not found" and "invalid parameter" exceptions thrown by OGRE. Are you sure you set up OGRE and the paths to the resources properly?
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sun Aug 09, 2015 14:52
lucebac wrote:Also, there are tons of "file not found" and "invalid parameter" exceptions thrown by OGRE. Are you sure you set up OGRE and the paths to the resources properly?
yes i do it properly because it works in another solution well.
here is cegui.log
Code: Select all
09/08/2015 19:15:50 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
09/08/2015 19:15:50 (Std) + Crazy Eddie's GUI System - Event log +
09/08/2015 19:15:50 (Std) + (http://www.cegui.org.uk/) +
09/08/2015 19:15:50 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
09/08/2015 19:15:50 (Std) CEGUI::Logger singleton created. (054D4700)
09/08/2015 19:15:50 (Std)
09/08/2015 19:15:50 (Std) ********************************************************************************
09/08/2015 19:15:50 (Std) * Important: *
09/08/2015 19:15:50 (Std) * To get support at the CEGUI forums, you must post _at least_ the section *
09/08/2015 19:15:50 (Std) * of this log file indicated below. Failure to do this will result in no *
09/08/2015 19:15:50 (Std) * support being given; please do not waste our time. *
09/08/2015 19:15:50 (Std) ********************************************************************************
09/08/2015 19:15:50 (Std) ********************************************************************************
09/08/2015 19:15:50 (Std) * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
09/08/2015 19:15:50 (Std) ********************************************************************************
09/08/2015 19:15:50 (Std) ---- Version: 0.8.2 (Build: Aug 4 2015 Debug Microsoft Windows MSVC++ 11.0 32 bit) ----
09/08/2015 19:15:50 (Std) ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
09/08/2015 19:15:50 (Std) ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
09/08/2015 19:15:50 (Std) ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
09/08/2015 19:15:50 (Std) ---- Scripting module is: None ----
09/08/2015 19:15:50 (Std) ********************************************************************************
09/08/2015 19:15:50 (Std) * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
09/08/2015 19:15:50 (Std) ********************************************************************************
09/08/2015 19:15:50 (Std)
09/08/2015 19:15:50 (Std) ---- Begining CEGUI System initialisation ----
09/08/2015 19:15:50 (Std) [CEGUI::ImageManager] Singleton created (056A1C18)
09/08/2015 19:15:50 (Std) [CEGUI::ImageManager] Registered Image type: BasicImage
09/08/2015 19:15:50 (Std) CEGUI::FontManager singleton created. (0571C820)
09/08/2015 19:15:50 (Std) CEGUI::WindowFactoryManager singleton created
09/08/2015 19:15:50 (Std) CEGUI::WindowManager singleton created (0571C918)
09/08/2015 19:15:50 (Std) CEGUI::SchemeManager singleton created. (0571BD10)
09/08/2015 19:15:50 (Std) CEGUI::GlobalEventSet singleton created. (055CE3D8)
09/08/2015 19:15:50 (Std) CEGUI::AnimationManager singleton created (05611348)
09/08/2015 19:15:50 (Std) CEGUI::WidgetLookManager singleton created. (05644C88)
09/08/2015 19:15:50 (Std) CEGUI::WindowRendererManager singleton created (05660470)
09/08/2015 19:15:50 (Std) CEGUI::RenderEffectManager singleton created (056922E0)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'DefaultWindow' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'DefaultWindow' windows added. (054DA500)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'DragContainer' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'DragContainer' windows added. (054DA6C0)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'ScrolledContainer' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'ScrolledContainer' windows added. (054DA880)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'ClippedContainer' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'ClippedContainer' windows added. (054DAAE0)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/PushButton' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/PushButton' windows added. (054DACA0)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/RadioButton' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/RadioButton' windows added. (054DAE60)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Combobox' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Combobox' windows added. (054DB020)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/ComboDropList' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/ComboDropList' windows added. (054DB1E0)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Editbox' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Editbox' windows added. (054DB3A0)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/FrameWindow' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/FrameWindow' windows added. (05675EE8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/ItemEntry' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/ItemEntry' windows added. (056760A8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Listbox' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Listbox' windows added. (05676268)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/ListHeader' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/ListHeader' windows added. (05676428)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (056765E8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Menubar' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Menubar' windows added. (05676878)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/PopupMenu' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/PopupMenu' windows added. (05676A38)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/MenuItem' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/MenuItem' windows added. (05676BF8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/MultiColumnList' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/MultiColumnList' windows added. (05676DB8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (05676F78)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/ProgressBar' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/ProgressBar' windows added. (05677138)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/ScrollablePane' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/ScrollablePane' windows added. (056772F8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Scrollbar' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Scrollbar' windows added. (056774B8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Slider' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Slider' windows added. (05677678)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Spinner' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Spinner' windows added. (05677838)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/TabButton' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/TabButton' windows added. (056779F8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/TabControl' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/TabControl' windows added. (054D49A0)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Thumb' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Thumb' windows added. (054D4B60)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Titlebar' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Titlebar' windows added. (054D4D20)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/ToggleButton' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/ToggleButton' windows added. (054D4EE0)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Tooltip' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Tooltip' windows added. (054D5188)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/ItemListbox' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/ItemListbox' windows added. (054D5348)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/GroupBox' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/GroupBox' windows added. (054D5508)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'CEGUI/Tree' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'CEGUI/Tree' windows added. (054D56C8)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'LayoutCell' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'LayoutCell' windows added. (054D5888)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'HorizontalLayoutContainer' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'HorizontalLayoutContainer' windows added. (054D5A48)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'VerticalLayoutContainer' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'VerticalLayoutContainer' windows added. (054D5C08)
09/08/2015 19:15:50 (Std) Created WindowFactory for 'GridLayoutContainer' windows.
09/08/2015 19:15:50 (Std) WindowFactory for 'GridLayoutContainer' windows added. (054D5DC8)
09/08/2015 19:15:50 (Std) CEGUI::System singleton created. (054E6C00)
09/08/2015 19:15:50 (Std) ---- CEGUI System initialisation completed ----
09/08/2015 19:15:50 (Std)
09/08/2015 19:15:50 (Std) Started creation of Scheme from XML specification:
09/08/2015 19:15:50 (Std) ---- CEGUI GUIScheme name: TaharezLook
09/08/2015 19:15:50 (Std) [ImageManager] Started creation of Imageset from XML specification:
09/08/2015 19:15:50 (Std) [ImageManager] ---- CEGUI Imageset name: TaharezLook
09/08/2015 19:15:50 (Std) [ImageManager] ---- Source texture file: TaharezLook.png
09/08/2015 19:15:50 (Std) [ImageManager] ---- Source texture resource group: (Default)
09/08/2015 19:15:50 (Std) [OgreRenderer] Created texture: TaharezLook
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ClientBrush' (054D6408) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/GenericBrush' (054D66E8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/WindowLeftEdge' (054D6EF8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/WindowRightEdge' (054D7108) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/WindowTopEdge' (05702350) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/WindowBottomEdge' (05703050) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/WindowTopLeft' (05702ED0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/WindowTopRight' (054D7408) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/WindowBottomLeft' (054D7618) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/WindowBottomRight' (054D7828) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonLeftNormal' (054D7EB8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonMiddleNormal' (054D7BB8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonRightNormal' (05726828) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonLeftPushed' (05726948) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonMiddlePushed' (05726B58) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonRightPushed' (05726D68) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonLeftHighlight' (05726F78) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonMiddleHighlight' (05727308) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ButtonRightHighlight' (054D6DA8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/CheckboxNormal' (05727AA0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/CheckboxHover' (05727CB0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/CheckboxMark' (05727EC0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/RadioButtonNormal' (057280D0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/RadioButtonHover' (057282E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/RadioButtonMark' (057284F0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TitlebarLeft' (05702D50) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TitlebarMiddle' (05734818) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TitlebarRight' (05734A28) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/NewTitlebarLeft' (05734C38) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/NewTitlebarMiddle' (05734E48) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/NewTitlebarRight' (05735058) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/SysAreaMiddle' (05735268) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/SysAreaRight' (05735478) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticLeft' (05735688) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticRight' (05735898) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticTop' (05735AA8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticBottom' (05735CB8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticTopLeft' (05735EC8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticTopRight' (057360D8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticBottomLeft' (057362E8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticBottomRight' (057364F8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/StaticBackdrop' (05736708) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarLeft' (05736918) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarMiddle' (05736B28) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarRight' (05736D38) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarDimSegment' (057370C8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ProgressBarLitSegment' (057021D0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/EditBoxLeft' (05737878) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/EditBoxMiddle' (05737A88) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/EditBoxRight' (05737C98) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/EditBoxCaret' (05737EA8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/SpinnerUpNormal' (057380B8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/SpinnerDownNormal' (057382C8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/SpinnerUpHover' (057384D8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/SpinnerDownHover' (057386E8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TextSelectionBrush' (057388F8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollTop' (05738B08) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollMiddle' (05738D18) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollBottom' (05738F28) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollBarSegment' (05739138) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollThumbNormal' (05739348) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollThumbHover' (057397B0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollUpNormal' (05739A80) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollDownNormal' (05739C90) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollUpHover' (0573A020) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertScrollDownHover' (0573A230) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollBarSegment' (0573A5C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbNormal' (0573AA40) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopNormal' (0573AED8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleNormal' (0573B388) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomNormal' (0573B868) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbTopHover' (0573BC58) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbMiddleHover' (0573BF48) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbBottomHover' (0573C410) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollThumbHover' (0573C7F0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpNormal' (0573C910) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownNormal' (0573CBE8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollUpHover' (0573D068) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniVertScrollDownHover' (0573D340) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertSliderBody' (0573D7C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertSliderThumbNormal' (0573D9D0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/VertSliderThumbHover' (0573DCA8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollBarSegment' (054D6C38) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbNormal' (0573E698) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftNormal' (0573EB30) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleNormal' (0573EFF8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightNormal' (054D6108) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbHover' (0573F6B0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbLeftHover' (0573F950) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbMiddleHover' (0573FE00) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollThumbRightHover' (0573E518) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftNormal' (05740670) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightNormal' (05740790) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollLeftHover' (05740C28) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MiniHorzScrollRightHover' (05740E38) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxLeft' (057411E8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxRight' (057413F8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxTop' (05741608) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxBottom' (05741818) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxTopLeft' (05741A28) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxTopRight' (05741C38) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxBottomLeft' (05741E48) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxBottomRight' (05742058) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxBackdrop' (05742268) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ListboxSelectionBrush' (05742478) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxEditLeft' (05742750) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxEditMiddle' (05742960) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListButtonNormal' (05742B70) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListButtonHover' (0574ED98) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListLeft' (0574F148) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListRight' (0574F358) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListTop' (0574F568) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListBottom' (0574F778) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListTopLeft' (0574F988) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListTopRight' (0574FB98) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListBottomLeft' (0574FE68) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListBottomRight' (05750388) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxListBackdrop' (05702050) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxSelectionBrush' (057509B8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxDividerLeft' (05750D58) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxDividerMiddle' (05750F68) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/ComboboxDividerRight' (05751308) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropNormal' (05751998) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarBackdropHover' (05751698) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterNormal' (057521E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarSplitterHover' (05751EE0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarSortUp' (05752660) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/HeaderBarSortDown' (05752870) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListLeft' (05752A80) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListRight' (05752C90) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListTop' (05752EA0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListBottom' (057530B0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListTopLeft' (057532C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListTopRight' (057534D0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListBottomLeft' (057536E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListBottomRight' (057538F0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListBackdrop' (05753BC0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiListSelectionBrush' (05753F50) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLeft' (057026E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressMiddle' (057544C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressRight' (057546D0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressQuarter' (057548E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressHalf' (05754AF0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight1' (05754D00) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight2' (05754F10) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight3' (05755120) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight4' (05755330) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight5' (05755540) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight6' (05755750) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight7' (05755960) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight8' (05755B70) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight9' (05755D80) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/AltProgressLight10' (05755F90) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/CloseButtonNormal' (057561A0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/CloseButtonHover' (057563B0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/CloseButtonPressed' (057565C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/NewCloseButtonNormal' (057567D0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/NewCloseButtonHover' (05756AA0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/NewCloseButtonPressed' (05756CB0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxLeft' (05757118) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxRight' (057573E8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTop' (05757850) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottom' (05757A60) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopLeft' (05758100) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxTopRight' (05757F80) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomLeft' (05758A60) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBottomRight' (05758EF8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxBackdrop' (05702A50) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MultiLineEditboxSelectionBrush' (057596A8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MouseTarget' (05759E70) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MouseArrow' (057593A8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MouseMoveCursor' (0575A380) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MouseNoSoCursor' (0575A4A0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MouseEsWeCursor' (0575A6B0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MouseNeSwCursor' (0575A8C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MouseNwSeCursor' (0575AAD0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MouseTextBar' (0575ACE0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabHorizontalFiller' (05759B70) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperLeft' (0575A080) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneUpper' (0575AEF0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneUpperRight' (0575B010) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneLeft' (0575B3C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneRight' (0575B5D0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneLower' (0575B7E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerLeft' (0575B9F0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneLowerRight' (0575BDA0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabContentPaneMiddle' (0575C150) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftNormal' (0575C660) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightNormal' (0575C4E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonScrollLeftHover' (0575C360) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonScrollRightHover' (0575D1B0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLeftNormal' (0575D030) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonRightNormal' (0575D738) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperNormal' (0575D948) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerNormal' (0575DB58) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftNormal' (0575E1E8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeft2Normal' (0575E668) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightNormal' (0575E068) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftNormal' (0575DEE8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightNormal' (0575F288) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerRight2Normal' (0575F108) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonMiddleNormal' (0575FA98) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLeftSelected' (0575FCA8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonRightSelected' (0575FF80) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperSelected' (05760320) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerSelected' (057606C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperLeftSelected' (05760D60) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonUpperRightSelected' (057611F8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerLeftSelected' (05760A60) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonLowerRightSelected' (05761870) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TabButtonMiddleSelected' (05761D20) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipTopLeft' (05762000) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipTopRight' (05762120) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipBottomLeft' (05762330) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipBottomRight' (05762540) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipLeftEdge' (05762750) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipRightEdge' (05762960) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipTopEdge' (05762B70) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipBottomEdge' (05762D80) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TooltipMiddle' (05762F90) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuTopLeft' (057631A0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuTopRight' (057633B0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuBottomLeft' (057635C0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuBottomRight' (057637D0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuLeft' (057639E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuRight' (05763BF0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuTop' (05763E00) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuBottom' (05764010) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/MenuMiddle' (05764220) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopLeft' (05764430) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTopRight' (05764640) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomLeft' (05764CE0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottomRight' (05765160) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameLeft' (057649E0) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameRight' (057655F8) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameTop' (05765718) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuFrameBottom' (05765928) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuMiddle' (05765B38) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuArrowRight' (05765D48) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/PopupMenuArrowLeft' (05765F58) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TreeListClosed' (05766168) of type: BasicImage
09/08/2015 19:15:50 (Std) [ImageManager] Created image: 'TaharezLook/TreeListOpened' (05766378) of type: BasicImage
09/08/2015 19:15:50 (Std) ===== Falagard 'root' element: look and feel parsing begins =====
09/08/2015 19:15:50 (Std) ===== Look and feel parsing completed =====
09/08/2015 19:15:50 (Std) No window renderer factories specified for module 'CEGUICoreWindowRendererSet' - adding all available factories...
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Button' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Button' added. (05B71C50)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Default' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Default' added. (05708570)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Editbox' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Editbox' added. (05B75FE8)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/FrameWindow' added. (05B22B70)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/ItemEntry' added. (05ADD990)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/ListHeader' added. (059F5280)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/ListHeaderSegment' added. (05A08CF8)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Listbox' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Listbox' added. (05A08EB8)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Menubar' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Menubar' added. (05B5CD08)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/MenuItem' added. (05B00908)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/MultiColumnList' added. (05B00AC8)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/MultiLineEditbox' added. (05B75AB0)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/PopupMenu' added. (05BA05E8)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/ProgressBar' added. (05BA07A8)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/ScrollablePane' added. (05B7B890)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Scrollbar' added. (05B7F210)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Slider' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Slider' added. (05B7F3D0)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Static' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Static' added. (0592A808)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/StaticImage' added. (0592A9C8)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/StaticText' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/StaticText' added. (05BADFD0)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/TabButton' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/TabButton' added. (05BAE190)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/TabControl' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/TabControl' added. (05B9F660)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Titlebar' added. (05B9F820)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/ToggleButton' added. (05A97318)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Tooltip' added. (05A974D8)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/ItemListbox' added. (05A97698)
09/08/2015 19:15:50 (Std) Created WindowRendererFactory for 'Core/Tree' WindowRenderers.
09/08/2015 19:15:50 (Std) WindowRendererFactory 'Core/Tree' added. (05BA2AE0)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Label' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Label' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/ToggleButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Core/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Core/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Core/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Core/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Core/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Core/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Core/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Core/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Core/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Core/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Core/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Core/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Core/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Core/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Core/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Core/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Core/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Core/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Core/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Core/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Core/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Core/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Core/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Core/ItemListbox' Look'N'Feel 'TaharezLook/ItemListbox' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Core/ItemEntry' Look'N'Feel 'TaharezLook/ListboxItem' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/GroupBox' using base type 'DefaultWindow', window renderer 'Core/Default' Look'N'Feel 'TaharezLook/GroupBox' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Std) Creating falagard mapping for type 'TaharezLook/Tree' using base type 'CEGUI/Tree', window renderer 'Core/Tree' Look'N'Feel 'TaharezLook/Tree' and RenderEffect ''. (0038CC08)
09/08/2015 19:15:50 (Info) Window '_MasterRoot' of type 'DefaultWindow' has been created. (05A2C350)
09/08/2015 19:15:51 (Info) Window 'CEGUIDemo/QuitButton' of type 'TaharezLook/Button' has been created. (05A360E0)
09/08/2015 19:15:51 (Info) Assigning the window renderer 'Core/Button' to the window 'CEGUIDemo/QuitButton'
09/08/2015 19:15:51 (Info) Assigning LookNFeel 'TaharezLook/Button' to window 'CEGUIDemo/QuitButton'.
09/08/2015 19:15:51 (Std) [OgreRenderer] Created texture: DejaVuSans-12_auto_glyph_images_32
09/08/2015 19:15:55 (Std) ---- Begining CEGUI System destruction ----
09/08/2015 19:15:55 (Info) Window at '_MasterRoot' will be added to dead pool. (0038F188)
09/08/2015 19:15:55 (Info) Window at 'CEGUIDemo/QuitButton' will be added to dead pool. (0038EC14)
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Tree' windows removed. (054D56C8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Tree' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'LayoutCell' windows removed. (054D5888)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'LayoutCell' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Thumb' windows removed. (054D4B60)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Thumb' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Slider' windows removed. (05677678)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Slider' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Editbox' windows removed. (054DB3A0)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Editbox' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Listbox' windows removed. (05676268)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Listbox' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Menubar' windows removed. (05676878)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Menubar' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Spinner' windows removed. (05677838)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Spinner' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Tooltip' windows removed. (054D5188)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Tooltip' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'DefaultWindow' windows removed. (054DA500)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'DefaultWindow' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'DragContainer' windows removed. (054DA6C0)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'DragContainer' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Combobox' windows removed. (054DB020)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Combobox' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/GroupBox' windows removed. (054D5508)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/GroupBox' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/MenuItem' windows removed. (05676BF8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/MenuItem' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Titlebar' windows removed. (054D4D20)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Titlebar' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/ItemEntry' windows removed. (056760A8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/ItemEntry' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/PopupMenu' windows removed. (05676A38)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/PopupMenu' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/Scrollbar' windows removed. (056774B8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/Scrollbar' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/TabButton' windows removed. (056779F8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/TabButton' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/ListHeader' windows removed. (05676428)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/ListHeader' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/PushButton' windows removed. (054DACA0)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/PushButton' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/TabControl' windows removed. (054D49A0)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/TabControl' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'ClippedContainer' windows removed. (054DAAE0)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'ClippedContainer' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/FrameWindow' windows removed. (05675EE8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/FrameWindow' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/ItemListbox' windows removed. (054D5348)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/ItemListbox' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/ProgressBar' windows removed. (05677138)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/ProgressBar' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/RadioButton' windows removed. (054DAE60)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/RadioButton' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'ScrolledContainer' windows removed. (054DA880)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'ScrolledContainer' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/ToggleButton' windows removed. (054D4EE0)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/ToggleButton' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/ComboDropList' windows removed. (054DB1E0)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/ComboDropList' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'GridLayoutContainer' windows removed. (054D5DC8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'GridLayoutContainer' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/ScrollablePane' windows removed. (056772F8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/ScrollablePane' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/MultiColumnList' windows removed. (05676DB8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/MultiColumnList' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/MultiLineEditbox' windows removed. (05676F78)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/MultiLineEditbox' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'CEGUI/ListHeaderSegment' windows removed. (056765E8)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'CEGUI/ListHeaderSegment' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'VerticalLayoutContainer' windows removed. (054D5C08)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'VerticalLayoutContainer' windows.
09/08/2015 19:15:55 (Std) WindowFactory for 'HorizontalLayoutContainer' windows removed. (054D5A48)
09/08/2015 19:15:55 (Std) Deleted WindowFactory for 'HorizontalLayoutContainer' windows.
09/08/2015 19:15:55 (Std) ---- Begining cleanup of GUI Scheme system ----
09/08/2015 19:15:55 (Info) Object of type 'Scheme' named 'TaharezLook' has been destroyed. (05703548)
09/08/2015 19:15:55 (Info) ---- Begining resource cleanup for GUI scheme 'TaharezLook' ----
09/08/2015 19:15:55 (Info) Object of type 'Font' named 'DejaVuSans-12' has been destroyed. (0592AC50)
09/08/2015 19:15:55 (Std) [OgreRenderer] Destroyed texture: DejaVuSans-12_auto_glyph_images_32
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Button' WindowRenderers removed. (05B71C50)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Button' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Default' WindowRenderers removed. (05708570)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Default' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Editbox' WindowRenderers removed. (05B75FE8)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Editbox' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/FrameWindow' WindowRenderers removed. (05B22B70)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/FrameWindow' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/ItemEntry' WindowRenderers removed. (05ADD990)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/ItemEntry' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/ListHeader' WindowRenderers removed. (059F5280)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/ListHeader' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers removed. (05A08CF8)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/ListHeaderSegment' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Listbox' WindowRenderers removed. (05A08EB8)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Listbox' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Menubar' WindowRenderers removed. (05B5CD08)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Menubar' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/MenuItem' WindowRenderers removed. (05B00908)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/MenuItem' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers removed. (05B00AC8)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/MultiColumnList' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers removed. (05B75AB0)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/MultiLineEditbox' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/PopupMenu' WindowRenderers removed. (05BA05E8)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/PopupMenu' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/ProgressBar' WindowRenderers removed. (05BA07A8)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/ProgressBar' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers removed. (05B7B890)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/ScrollablePane' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Scrollbar' WindowRenderers removed. (05B7F210)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Scrollbar' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Slider' WindowRenderers removed. (05B7F3D0)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Slider' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Static' WindowRenderers removed. (0592A808)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Static' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/StaticImage' WindowRenderers removed. (0592A9C8)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/StaticImage' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/StaticText' WindowRenderers removed. (05BADFD0)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/StaticText' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/TabButton' WindowRenderers removed. (05BAE190)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/TabButton' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/TabControl' WindowRenderers removed. (05B9F660)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/TabControl' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Titlebar' WindowRenderers removed. (05B9F820)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Titlebar' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/ToggleButton' WindowRenderers removed. (05A97318)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/ToggleButton' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Tooltip' WindowRenderers removed. (05A974D8)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Tooltip' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/ItemListbox' WindowRenderers removed. (05A97698)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/ItemListbox' WindowRenderers.
09/08/2015 19:15:55 (Std) WindowRendererFactory for 'Core/Tree' WindowRenderers removed. (05BA2AE0)
09/08/2015 19:15:55 (Std) Deleted WindowRendererFactory for 'Core/Tree' WindowRenderers.
09/08/2015 19:15:55 (Info) ---- Resource cleanup for GUI scheme 'TaharezLook' completed ----
09/08/2015 19:15:55 (Info) GUI scheme 'TaharezLook' has been unloaded (object destructor). (05703548)
09/08/2015 19:15:55 (Std) CEGUI::SchemeManager singleton destroyed. (0571BD10)
09/08/2015 19:15:55 (Std) CEGUI::WindowManager singleton destroyed (0571C918)
09/08/2015 19:15:55 (Std) CEGUI::WindowFactoryManager singleton destroyed
09/08/2015 19:15:55 (Std) CEGUI::WidgetLookManager singleton destroyed. (05644C88)
09/08/2015 19:15:55 (Std) CEGUI::WindowRendererManager singleton destroyed (05660470)
09/08/2015 19:15:55 (Std) CEGUI::AnimationManager singleton destroyed (05611348)
09/08/2015 19:15:55 (Std) CEGUI::RenderEffectManager singleton destroyed (056922E0)
09/08/2015 19:15:55 (Std) ---- Begining cleanup of Font system ----
09/08/2015 19:15:55 (Std) CEGUI::FontManager singleton destroyed. (0571C820)
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuTop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticTop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxTop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuBottom
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MouseArrow
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ClientBrush
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/EditBoxLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MouseTarget
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/CheckboxMark
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/EditBoxCaret
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/EditBoxRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/GenericBrush
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MouseTextBar
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListTop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticBottom
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/SysAreaRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TitlebarLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/CheckboxHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/EditBoxMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxBottom
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/SysAreaMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TitlebarRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollTop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/WindowTopEdge
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/WindowTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/CheckboxNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/SpinnerUpHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticBackdrop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TitlebarMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipTopEdge
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TreeListClosed
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TreeListOpened
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertSliderBody
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/WindowLeftEdge
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/WindowTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressHalf
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListTop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/HeaderBarSortUp
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxBackdrop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MenuBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MouseEsWeCursor
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MouseMoveCursor
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MouseNeSwCursor
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MouseNoSoCursor
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MouseNwSeCursor
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListBottom
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/NewTitlebarLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ProgressBarLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/RadioButtonMark
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/SpinnerUpNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipLeftEdge
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/WindowRightEdge
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonLeftNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonLeftPushed
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/CloseButtonHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxEditLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/NewTitlebarRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ProgressBarRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/RadioButtonHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/SpinnerDownHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipRightEdge
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollBottom
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/WindowBottomEdge
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/WindowBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight1
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight2
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight3
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight4
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight5
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight6
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight7
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight8
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight9
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonRightNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonRightPushed
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/CloseButtonNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/HeaderBarSortDown
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListBackdrop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/NewTitlebarMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuFrameTop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ProgressBarMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/RadioButtonNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/SpinnerDownNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/StaticBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipBottomEdge
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollUpHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/WindowBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressLight10
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/AltProgressQuarter
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonMiddleNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonMiddlePushed
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/CloseButtonPressed
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxEditMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListBottom
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuArrowLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuFrameLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TextSelectionBrush
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TooltipBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollUpNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonLeftHighlight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxDividerLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxTop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/NewCloseButtonHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuArrowRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuFrameRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLeftNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneLower
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneUpper
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabHorizontalFiller
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollDownHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonRightHighlight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxDividerRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListBackdrop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/NewCloseButtonNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuFrameBottom
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLowerNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonRightNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonUpperNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollBarSegment
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollDownNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollThumbHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertSliderThumbHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ButtonMiddleHighlight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxDividerMiddle
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ListboxSelectionBrush
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollUpHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/NewCloseButtonPressed
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuFrameTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ProgressBarDimSegment
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ProgressBarLitSegment
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLeftSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonMiddleNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertScrollThumbNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/VertSliderThumbNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxSelectionBrush
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/HeaderBarBackdropHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/HeaderBarSplitterHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollUpNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxBottom
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuFrameTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLowerSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonRightSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonUpperSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListButtonHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/HeaderBarBackdropNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/HeaderBarSplitterNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollLeftHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollDownHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxTopLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiListSelectionBrush
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonMiddleSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneLowerLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneUpperLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/ComboboxListButtonNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollBarSegment
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollLeftNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollRightHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollThumbHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollBarSegment
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollDownNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollThumbHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxBackdrop
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxTopRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuFrameBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLowerLeftNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonScrollLeftHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonUpperLeftNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneLowerRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabContentPaneUpperRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollRightNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollThumbNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollThumbNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/PopupMenuFrameBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLowerRightNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonScrollLeftNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonScrollRightHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonUpperLeft2Normal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonUpperRightNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxBottomLeft
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLowerLeftSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLowerRight2Normal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonScrollRightNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonUpperLeftSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollThumbTopHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxBottomRight
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonLowerRightSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/TabButtonUpperRightSelected
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollThumbLeftHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollThumbTopNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollThumbLeftNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollThumbRightHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollThumbMiddleHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollThumbRightNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollThumbBottomHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollThumbMiddleHover
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MultiLineEditboxSelectionBrush
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniHorzScrollThumbMiddleNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollThumbBottomNormal
09/08/2015 19:15:55 (Std) [ImageManager] Deleted image: TaharezLook/MiniVertScrollThumbMiddleNormal
09/08/2015 19:15:55 (Std) [CEGUI::ImageManager] Unregistered Image type: BasicImage
09/08/2015 19:15:55 (Std) [CEGUI::ImageManager] Singleton destroyed (056A1C18)
09/08/2015 19:15:55 (Std) CEGUI::GlobalEventSet singleton destroyed. (055CE3D8)
09/08/2015 19:15:55 (Std) CEGUI::System singleton destroyed. (054E6C00)
09/08/2015 19:15:55 (Std) ---- CEGUI System destruction completed ----
09/08/2015 19:15:55 (Std) CEGUI::Logger singleton destroyed. (054D4700)
-
Ident
- CEGUI Team
- Posts: 1998
- Joined: Sat Oct 31, 2009 13:57
- Location: Austria
Postby Ident » Sun Aug 09, 2015 15:10
Window names must not contain slashes. If it does not work without it then you made mistake elsewhere. The slashes are marking parent/child hierarchies between the names and this is well documented.
You have still not named the exact error you get, also missing a callstack. Please look at the forum guideliens, all of this is really not that difficult to understand and especially as a beginner you should follow these rules if you do not know what we need from you to find a solution for you:
viewtopic.php?f=10&t=3351
CrazyEddie: "I don't like GUIs"
-
loklak
- Just popping in

- Posts: 11
- Joined: Sat Aug 08, 2015 20:27
Postby loklak » Sun Aug 09, 2015 15:31
Ident wrote:Window names must not contain slashes
it does not work without it.
there is no error, the program can run and animate working of "quit" button but it doesn't work!!
Return to “Help”
Who is online
Users browsing this forum: No registered users and 3 guests