Changeset 1831


Ignore:
Timestamp:
11/30/06 14:48:15 (17 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum/Ogre
Files:
7 added
12 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/MetalTeapot.hlsl

    r1735 r1831  
    1515 
    1616 
    17 #define LIN_ITERATIONCOUNT 20 
    18 #define SECANT_ITERATIONCOUNT 2 
     17#define MAX_LIN_ITERATIONCOUNT 20 
     18#define MIN_LIN_ITERATIONCOUNT 6 
     19#define SECANT_ITERATIONCOUNT 1 
    1920 
    2021float Hit(float3 x, float3 R, samplerCUBE mp, out float3 newDir) 
     
    3132     
    3233   
    33     float dt =  length(x / xm - R / Rm) * 256.0 / 2.0; 
    34     dt = max(dt, 4); 
     34    float dt =  length(x / xm - R / Rm) * MAX_LIN_ITERATIONCOUNT; 
     35    dt = max(dt, MIN_LIN_ITERATIONCOUNT); 
    3536    dt = 1.0 / dt; 
    3637     
     
    4142        //float3 p = R; 
    4243        float3 p = 0; 
    43          
    44          
    45         //float dt = 1.0 / LIN_ITERATIONCOUNT; 
    46          
     44                 
    4745        //linear iteration       
    48          
    49         float t = 0.9999999999999; 
     46        float t; 
     47        float dist = 0; 
     48        /* 
     49        t = 0.9999999999999; 
    5050        dp = a * t / (1 - t); 
    5151        p = x + R * dp; 
    52         float dist = readDistanceCubeMap(mp, p); 
     52        dist = readDistanceCubeMap(mp, p); 
    5353        ppp = length(p) / dist; 
    54          
     54        */ 
    5555        t = 0;   
    5656                 
     
    241241        //return; 
    242242         
     243 
    243244        float3 newDir1; 
    244245        float d1 = Hit(mPos, R, NormDistMap1, newDir1); 
     
    285286                //Color = float4(1,0,0,1);       
    286287        } 
    287           
     288         
     289        /* 
     290        float3 newDir2; 
     291        float d2 = Hit(mPos, R, NormDistMap2, newDir2); 
     292        float3 normal2 = readCubeMap(NormDistMap2, newDir2); 
     293        bool valid2 = dot(normal2, R) < 0 && dot(newDir2,newDir2) != 0; 
     294        if(valid2) 
     295                newDir2 = 0; 
     296        if(valid2) 
     297        { 
     298                float d; 
     299                float3 newN;             
     300                d = d2; 
     301                newN = normal2; 
     302                float3 newV = R; 
     303                float3 newX = mPos + R * d; 
     304                float3 newR = normalize(reflect( newV, newN)); 
     305                 
     306                Hit(newX, newR, DistanceMap, newTexCoord);       
     307                Color = readCubeMap(CubeMap, newTexCoord ); 
     308        } 
     309        else 
     310        { 
     311                Hit(mPos, R, DistanceMap, newTexCoord);  
     312                Color = readCubeMap(CubeMap, newTexCoord ); 
     313        } 
     314        */       
    288315        return; 
    289316         
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log

    r1735 r1831  
    1 15:43:33: Creating resource group General 
    2 15:43:33: Creating resource group Internal 
    3 15:43:33: Creating resource group Autodetect 
    4 15:43:33: Registering ResourceManager for type Material 
    5 15:43:33: Registering ResourceManager for type Mesh 
    6 15:43:33: Registering ResourceManager for type Skeleton 
    7 15:43:33: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 15:43:33: Loading library OgrePlatform_d.dll 
    9 15:43:33: OverlayElementFactory for type Panel registered. 
    10 15:43:33: OverlayElementFactory for type BorderPanel registered. 
    11 15:43:33: OverlayElementFactory for type TextArea registered. 
    12 15:43:33: Registering ResourceManager for type Font 
    13 15:43:33: ArchiveFactory for archive type FileSystem registered. 
    14 15:43:33: ArchiveFactory for archive type Zip registered. 
    15 15:43:33: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 15:43:33: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
    17 15:43:33: Registering ResourceManager for type HighLevelGpuProgram 
    18 15:43:33: Registering ResourceManager for type Compositor 
    19 15:43:33: MovableObjectFactory for type 'Entity' registered. 
    20 15:43:33: MovableObjectFactory for type 'Light' registered. 
    21 15:43:33: MovableObjectFactory for type 'BillboardSet' registered. 
    22 15:43:33: MovableObjectFactory for type 'ManualObject' registered. 
    23 15:43:33: MovableObjectFactory for type 'BillboardChain' registered. 
    24 15:43:33: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 15:43:33: Loading library .\RenderSystem_Direct3D9 
    26 15:43:33: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 15:43:33: D3D9: Driver Detection Starts 
    28 15:43:33: D3D9: Driver Detection Ends 
    29 15:43:33: Loading library .\Plugin_ParticleFX 
    30 15:43:33: Particle Emitter Type 'Point' registered 
    31 15:43:33: Particle Emitter Type 'Box' registered 
    32 15:43:33: Particle Emitter Type 'Ellipsoid' registered 
    33 15:43:33: Particle Emitter Type 'Cylinder' registered 
    34 15:43:33: Particle Emitter Type 'Ring' registered 
    35 15:43:33: Particle Emitter Type 'HollowEllipsoid' registered 
    36 15:43:33: Particle Affector Type 'LinearForce' registered 
    37 15:43:33: Particle Affector Type 'ColourFader' registered 
    38 15:43:33: Particle Affector Type 'ColourFader2' registered 
    39 15:43:33: Particle Affector Type 'ColourImage' registered 
    40 15:43:33: Particle Affector Type 'ColourInterpolator' registered 
    41 15:43:33: Particle Affector Type 'Scaler' registered 
    42 15:43:33: Particle Affector Type 'Rotator' registered 
    43 15:43:33: Particle Affector Type 'DirectionRandomiser' registered 
    44 15:43:33: Particle Affector Type 'DeflectorPlane' registered 
    45 15:43:33: Loading library .\Plugin_BSPSceneManager 
    46 15:43:33: Registering ResourceManager for type BspLevel 
    47 15:43:33: Loading library .\Plugin_OctreeSceneManager 
    48 15:43:33: Loading library .\Plugin_CgProgramManager 
    49 15:43:33: *-*-* OGRE Initialising 
    50 15:43:33: *-*-* Version 1.2.0 (Dagon) 
    51 15:43:33: Creating resource group Bootstrap 
    52 15:43:33: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 15:43:33: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 15:43:33: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 15:43:33: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 15:43:33: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 15:43:33: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 15:43:33: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 15:43:33: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 15:43:33: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 15:43:33: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 15:43:33: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 15:43:33: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 15:43:33: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 15:43:33: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 15:43:33: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 15:43:33: D3D9 : RenderSystem Option: Full Screen = No 
    68 15:43:33: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    69 15:43:33: D3D9 : RenderSystem Option: VSync = No 
    70 15:43:33: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 15:43:34: D3D9 : Subsystem Initialising 
    72 15:43:34: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 15:43:34: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 15:43:34: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 15:43:34: Registering ResourceManager for type Texture 
    76 15:43:34: Registering ResourceManager for type GpuProgram 
    77 15:43:34: RenderSystem capabilities 
    78 15:43:34: ------------------------- 
    79 15:43:34:  * Hardware generation of mipmaps: yes 
    80 15:43:34:  * Texture blending: yes 
    81 15:43:34:  * Anisotropic texture filtering: yes 
    82 15:43:34:  * Dot product texture operation: yes 
    83 15:43:34:  * Cube mapping: yes 
    84 15:43:34:  * Hardware stencil buffer: yes 
    85 15:43:34:    - Stencil depth: 8 
    86 15:43:34:    - Two sided stencil support: yes 
    87 15:43:34:    - Wrap stencil values: yes 
    88 15:43:34:  * Hardware vertex / index buffers: yes 
    89 15:43:34:  * Vertex programs: yes 
    90 15:43:34:    - Max vertex program version: vs_3_0 
    91 15:43:34:  * Fragment programs: yes 
    92 15:43:34:    - Max fragment program version: ps_3_0 
    93 15:43:34:  * Texture Compression: yes 
    94 15:43:34:    - DXT: yes 
    95 15:43:34:    - VTC: no 
    96 15:43:34:  * Scissor Rectangle: yes 
    97 15:43:34:  * Hardware Occlusion Query: yes 
    98 15:43:34:  * User clip planes: yes 
    99 15:43:34:  * VET_UBYTE4 vertex element type: yes 
    100 15:43:34:  * Infinite far plane projection: yes 
    101 15:43:34:  * Hardware render-to-texture: yes 
    102 15:43:34:  * Floating point textures: yes 
    103 15:43:34:  * Non-power-of-two textures: yes 
    104 15:43:34:  * Volume textures: yes 
    105 15:43:34:  * Multiple Render Targets: 4 
    106 15:43:34:  * Max Point Size: 8192 
    107 15:43:34: *************************************** 
    108 15:43:34: *** D3D9 : Subsystem Initialised OK *** 
    109 15:43:34: *************************************** 
    110 15:43:34: ResourceBackgroundQueue - threading disabled 
    111 15:43:34: Particle Renderer Type 'billboard' registered 
    112 15:43:34: Particle Renderer Type 'sprite' registered 
    113 15:43:34: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    114 15:43:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 15:43:34: Parsing scripts for resource group Autodetect 
    116 15:43:34: Finished parsing scripts for resource group Autodetect 
    117 15:43:34: Parsing scripts for resource group Bootstrap 
    118 15:43:34: Parsing script OgreCore.material 
    119 15:43:34: Parsing script OgreProfiler.material 
    120 15:43:34: Parsing script Ogre.fontdef 
    121 15:43:34: Parsing script OgreDebugPanel.overlay 
    122 15:43:34: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    123 15:43:34: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    124 15:43:34: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    125 15:43:34: Font TrebuchetMSBoldusing texture size 512x512 
    126 15:43:34: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 15:43:34: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 15:43:34: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 15:43:34: Parsing script OgreLoadingPanel.overlay 
    130 15:43:34: Finished parsing scripts for resource group Bootstrap 
    131 15:43:34: Parsing scripts for resource group General 
    132 15:43:34: Parsing script GameTools.program 
    133 15:43:34: Parsing script atlascube.material 
    134 15:43:34: Parsing script difflab.material 
    135 15:43:34: An exception has been thrown! 
     114:30:22: Creating resource group General 
     214:30:22: Creating resource group Internal 
     314:30:22: Creating resource group Autodetect 
     414:30:22: Registering ResourceManager for type Material 
     514:30:22: Registering ResourceManager for type Mesh 
     614:30:22: Registering ResourceManager for type Skeleton 
     714:30:22: MovableObjectFactory for type 'ParticleSystem' registered. 
     814:30:22: Loading library OgrePlatform_d.dll 
     914:30:22: OverlayElementFactory for type Panel registered. 
     1014:30:22: OverlayElementFactory for type BorderPanel registered. 
     1114:30:22: OverlayElementFactory for type TextArea registered. 
     1214:30:22: Registering ResourceManager for type Font 
     1314:30:22: ArchiveFactory for archive type FileSystem registered. 
     1414:30:22: ArchiveFactory for archive type Zip registered. 
     1514:30:22: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1614:30:22: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
     1714:30:22: Registering ResourceManager for type HighLevelGpuProgram 
     1814:30:22: Registering ResourceManager for type Compositor 
     1914:30:22: MovableObjectFactory for type 'Entity' registered. 
     2014:30:22: MovableObjectFactory for type 'Light' registered. 
     2114:30:22: MovableObjectFactory for type 'BillboardSet' registered. 
     2214:30:22: MovableObjectFactory for type 'ManualObject' registered. 
     2314:30:22: MovableObjectFactory for type 'BillboardChain' registered. 
     2414:30:22: MovableObjectFactory for type 'RibbonTrail' registered. 
     2514:30:22: Loading library .\RenderSystem_Direct3D9 
     2614:30:22: D3D9 : Direct3D9 Rendering Subsystem created. 
     2714:30:22: D3D9: Driver Detection Starts 
     2814:30:22: D3D9: Driver Detection Ends 
     2914:30:22: Loading library .\Plugin_ParticleFX 
     3014:30:22: Particle Emitter Type 'Point' registered 
     3114:30:22: Particle Emitter Type 'Box' registered 
     3214:30:22: Particle Emitter Type 'Ellipsoid' registered 
     3314:30:22: Particle Emitter Type 'Cylinder' registered 
     3414:30:22: Particle Emitter Type 'Ring' registered 
     3514:30:22: Particle Emitter Type 'HollowEllipsoid' registered 
     3614:30:22: Particle Affector Type 'LinearForce' registered 
     3714:30:22: Particle Affector Type 'ColourFader' registered 
     3814:30:22: Particle Affector Type 'ColourFader2' registered 
     3914:30:22: Particle Affector Type 'ColourImage' registered 
     4014:30:22: Particle Affector Type 'ColourInterpolator' registered 
     4114:30:22: Particle Affector Type 'Scaler' registered 
     4214:30:22: Particle Affector Type 'Rotator' registered 
     4314:30:22: Particle Affector Type 'DirectionRandomiser' registered 
     4414:30:22: Particle Affector Type 'DeflectorPlane' registered 
     4514:30:22: Loading library .\Plugin_BSPSceneManager 
     4614:30:22: Registering ResourceManager for type BspLevel 
     4714:30:22: Loading library .\Plugin_OctreeSceneManager 
     4814:30:23: Loading library .\Plugin_CgProgramManager 
     4914:30:23: *-*-* OGRE Initialising 
     5014:30:23: *-*-* Version 1.2.0 (Dagon) 
     5114:30:23: Creating resource group Bootstrap 
     5214:30:23: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5314:30:23: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5414:30:23: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5514:30:23: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5614:30:23: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5714:30:23: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5814:30:23: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5914:30:23: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6014:30:23: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6114:30:23: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6214:30:23: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6314:30:23: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6414:30:23: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6514:30:23: D3D9 : RenderSystem Option: Anti aliasing = None 
     6614:30:23: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6714:30:23: D3D9 : RenderSystem Option: Full Screen = No 
     6814:30:23: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     6914:30:23: D3D9 : RenderSystem Option: VSync = No 
     7014:30:23: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7114:30:26: D3D9 : Subsystem Initialising 
     7214:30:26: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7314:30:26: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7414:30:26: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7514:30:26: Registering ResourceManager for type Texture 
     7614:30:26: Registering ResourceManager for type GpuProgram 
     7714:30:26: RenderSystem capabilities 
     7814:30:26: ------------------------- 
     7914:30:26:  * Hardware generation of mipmaps: yes 
     8014:30:26:  * Texture blending: yes 
     8114:30:26:  * Anisotropic texture filtering: yes 
     8214:30:26:  * Dot product texture operation: yes 
     8314:30:26:  * Cube mapping: yes 
     8414:30:26:  * Hardware stencil buffer: yes 
     8514:30:26:    - Stencil depth: 8 
     8614:30:26:    - Two sided stencil support: yes 
     8714:30:26:    - Wrap stencil values: yes 
     8814:30:26:  * Hardware vertex / index buffers: yes 
     8914:30:26:  * Vertex programs: yes 
     9014:30:26:    - Max vertex program version: vs_3_0 
     9114:30:26:  * Fragment programs: yes 
     9214:30:26:    - Max fragment program version: ps_3_0 
     9314:30:26:  * Texture Compression: yes 
     9414:30:26:    - DXT: yes 
     9514:30:26:    - VTC: no 
     9614:30:26:  * Scissor Rectangle: yes 
     9714:30:26:  * Hardware Occlusion Query: yes 
     9814:30:26:  * User clip planes: yes 
     9914:30:26:  * VET_UBYTE4 vertex element type: yes 
     10014:30:26:  * Infinite far plane projection: yes 
     10114:30:26:  * Hardware render-to-texture: yes 
     10214:30:26:  * Floating point textures: yes 
     10314:30:26:  * Non-power-of-two textures: yes 
     10414:30:26:  * Volume textures: yes 
     10514:30:26:  * Multiple Render Targets: 4 
     10614:30:26:  * Max Point Size: 8192 
     10714:30:26: *************************************** 
     10814:30:26: *** D3D9 : Subsystem Initialised OK *** 
     10914:30:26: *************************************** 
     11014:30:26: ResourceBackgroundQueue - threading disabled 
     11114:30:26: Particle Renderer Type 'billboard' registered 
     11214:30:26: Particle Renderer Type 'sprite' registered 
     11314:30:26: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     11414:30:26: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11514:30:26: Parsing scripts for resource group Autodetect 
     11614:30:26: Finished parsing scripts for resource group Autodetect 
     11714:30:26: Parsing scripts for resource group Bootstrap 
     11814:30:26: Parsing script OgreCore.material 
     11914:30:26: Parsing script OgreProfiler.material 
     12014:30:26: Parsing script Ogre.fontdef 
     12114:30:26: Parsing script OgreDebugPanel.overlay 
     12214:30:26: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12314:30:26: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12414:30:26: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12514:30:26: Font TrebuchetMSBoldusing texture size 512x512 
     12614:30:26: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12714:30:26: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12814:30:26: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12914:30:26: Parsing script OgreLoadingPanel.overlay 
     13014:30:26: Finished parsing scripts for resource group Bootstrap 
     13114:30:26: Parsing scripts for resource group General 
     13214:30:26: Parsing script GameTools.program 
     13314:30:26: Parsing script atlascube.material 
     13414:30:26: Parsing script difflab.material 
     13514:30:27: An exception has been thrown! 
    136136 
    137137----------------------------------- 
     
    144144Line: 779 
    145145Stack unwinding: <<beginning of stack>> 
    146 15:43:34: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14614:30:27: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    147147 
    148148----------------------------------- 
     
    155155Line: 779 
    156156Stack unwinding: <<beginning of stack>> 
    157 15:43:34: An exception has been thrown! 
     15714:30:27: An exception has been thrown! 
    158158 
    159159----------------------------------- 
     
    166166Line: 779 
    167167Stack unwinding: <<beginning of stack>> 
    168 15:43:34: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16814:30:27: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    169169 
    170170----------------------------------- 
     
    177177Line: 779 
    178178Stack unwinding: <<beginning of stack>> 
    179 15:43:34: An exception has been thrown! 
     17914:30:27: An exception has been thrown! 
    180180 
    181181----------------------------------- 
     
    188188Line: 779 
    189189Stack unwinding: <<beginning of stack>> 
    190 15:43:34: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19014:30:27: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    191191 
    192192----------------------------------- 
     
    199199Line: 779 
    200200Stack unwinding: <<beginning of stack>> 
    201 15:43:34: An exception has been thrown! 
     20114:30:27: An exception has been thrown! 
    202202 
    203203----------------------------------- 
     
    210210Line: 779 
    211211Stack unwinding: <<beginning of stack>> 
    212 15:43:34: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21214:30:27: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    213213 
    214214----------------------------------- 
     
    221221Line: 779 
    222222Stack unwinding: <<beginning of stack>> 
    223 15:43:34: An exception has been thrown! 
     22314:30:27: An exception has been thrown! 
    224224 
    225225----------------------------------- 
     
    232232Line: 779 
    233233Stack unwinding: <<beginning of stack>> 
    234 15:43:34: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23414:30:27: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    235235 
    236236----------------------------------- 
     
    243243Line: 779 
    244244Stack unwinding: <<beginning of stack>> 
    245 15:43:34: An exception has been thrown! 
     24514:30:27: An exception has been thrown! 
    246246 
    247247----------------------------------- 
     
    254254Line: 779 
    255255Stack unwinding: <<beginning of stack>> 
    256 15:43:34: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25614:30:27: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    257257 
    258258----------------------------------- 
     
    265265Line: 779 
    266266Stack unwinding: <<beginning of stack>> 
    267 15:43:34: An exception has been thrown! 
     26714:30:27: An exception has been thrown! 
    268268 
    269269----------------------------------- 
     
    276276Line: 779 
    277277Stack unwinding: <<beginning of stack>> 
    278 15:43:34: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27814:30:27: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    279279 
    280280----------------------------------- 
     
    287287Line: 779 
    288288Stack unwinding: <<beginning of stack>> 
    289 15:43:34: An exception has been thrown! 
     28914:30:27: An exception has been thrown! 
    290290 
    291291----------------------------------- 
     
    298298Line: 779 
    299299Stack unwinding: <<beginning of stack>> 
    300 15:43:34: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30014:30:27: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    301301 
    302302----------------------------------- 
     
    309309Line: 779 
    310310Stack unwinding: <<beginning of stack>> 
    311 15:43:34: An exception has been thrown! 
     31114:30:27: An exception has been thrown! 
    312312 
    313313----------------------------------- 
     
    320320Line: 779 
    321321Stack unwinding: <<beginning of stack>> 
    322 15:43:34: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32214:30:27: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    323323 
    324324----------------------------------- 
     
    331331Line: 779 
    332332Stack unwinding: <<beginning of stack>> 
    333 15:43:34: An exception has been thrown! 
     33314:30:27: An exception has been thrown! 
    334334 
    335335----------------------------------- 
     
    342342Line: 779 
    343343Stack unwinding: <<beginning of stack>> 
    344 15:43:34: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34414:30:27: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    345345 
    346346----------------------------------- 
     
    353353Line: 779 
    354354Stack unwinding: <<beginning of stack>> 
    355 15:43:34: An exception has been thrown! 
     35514:30:27: An exception has been thrown! 
    356356 
    357357----------------------------------- 
     
    364364Line: 779 
    365365Stack unwinding: <<beginning of stack>> 
    366 15:43:34: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     36614:30:27: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    367367 
    368368----------------------------------- 
     
    375375Line: 779 
    376376Stack unwinding: <<beginning of stack>> 
    377 15:43:34: An exception has been thrown! 
     37714:30:27: An exception has been thrown! 
    378378 
    379379----------------------------------- 
     
    386386Line: 779 
    387387Stack unwinding: <<beginning of stack>> 
    388 15:43:34: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     38814:30:27: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    389389 
    390390----------------------------------- 
     
    397397Line: 779 
    398398Stack unwinding: <<beginning of stack>> 
    399 15:43:34: An exception has been thrown! 
     39914:30:27: An exception has been thrown! 
    400400 
    401401----------------------------------- 
     
    408408Line: 779 
    409409Stack unwinding: <<beginning of stack>> 
    410 15:43:34: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41014:30:27: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    411411 
    412412----------------------------------- 
     
    419419Line: 779 
    420420Stack unwinding: <<beginning of stack>> 
    421 15:43:34: An exception has been thrown! 
     42114:30:27: An exception has been thrown! 
    422422 
    423423----------------------------------- 
     
    430430Line: 779 
    431431Stack unwinding: <<beginning of stack>> 
    432 15:43:34: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43214:30:27: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    433433 
    434434----------------------------------- 
     
    441441Line: 779 
    442442Stack unwinding: <<beginning of stack>> 
    443 15:43:34: An exception has been thrown! 
     44314:30:27: An exception has been thrown! 
    444444 
    445445----------------------------------- 
     
    452452Line: 779 
    453453Stack unwinding: <<beginning of stack>> 
    454 15:43:34: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45414:30:27: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    455455 
    456456----------------------------------- 
     
    463463Line: 779 
    464464Stack unwinding: <<beginning of stack>> 
    465 15:43:34: An exception has been thrown! 
     46514:30:27: An exception has been thrown! 
    466466 
    467467----------------------------------- 
     
    474474Line: 779 
    475475Stack unwinding: <<beginning of stack>> 
    476 15:43:34: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     47614:30:27: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    477477 
    478478----------------------------------- 
     
    485485Line: 779 
    486486Stack unwinding: <<beginning of stack>> 
    487 15:43:34: An exception has been thrown! 
     48714:30:27: An exception has been thrown! 
    488488 
    489489----------------------------------- 
     
    496496Line: 779 
    497497Stack unwinding: <<beginning of stack>> 
    498 15:43:34: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     49814:30:27: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    499499 
    500500----------------------------------- 
     
    507507Line: 779 
    508508Stack unwinding: <<beginning of stack>> 
    509 15:43:34: An exception has been thrown! 
     50914:30:27: An exception has been thrown! 
    510510 
    511511----------------------------------- 
     
    518518Line: 779 
    519519Stack unwinding: <<beginning of stack>> 
    520 15:43:34: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52014:30:27: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    521521 
    522522----------------------------------- 
     
    529529Line: 779 
    530530Stack unwinding: <<beginning of stack>> 
    531 15:43:34: An exception has been thrown! 
     53114:30:27: An exception has been thrown! 
    532532 
    533533----------------------------------- 
     
    540540Line: 779 
    541541Stack unwinding: <<beginning of stack>> 
    542 15:43:34: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54214:30:27: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    543543 
    544544----------------------------------- 
     
    551551Line: 779 
    552552Stack unwinding: <<beginning of stack>> 
    553 15:43:34: An exception has been thrown! 
     55314:30:27: An exception has been thrown! 
    554554 
    555555----------------------------------- 
     
    562562Line: 779 
    563563Stack unwinding: <<beginning of stack>> 
    564 15:43:34: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56414:30:27: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    565565 
    566566----------------------------------- 
     
    573573Line: 779 
    574574Stack unwinding: <<beginning of stack>> 
    575 15:43:34: An exception has been thrown! 
     57514:30:27: An exception has been thrown! 
    576576 
    577577----------------------------------- 
     
    584584Line: 779 
    585585Stack unwinding: <<beginning of stack>> 
    586 15:43:34: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     58614:30:27: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    587587 
    588588----------------------------------- 
     
    595595Line: 779 
    596596Stack unwinding: <<beginning of stack>> 
    597 15:43:34: Parsing script diffscene.material 
    598 15:43:34: An exception has been thrown! 
     59714:30:27: Parsing script diffscene.material 
     59814:30:27: An exception has been thrown! 
    599599 
    600600----------------------------------- 
     
    607607Line: 779 
    608608Stack unwinding: <<beginning of stack>> 
    609 15:43:34: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     60914:30:27: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    610610 
    611611----------------------------------- 
     
    618618Line: 779 
    619619Stack unwinding: <<beginning of stack>> 
    620 15:43:34: An exception has been thrown! 
     62014:30:27: An exception has been thrown! 
    621621 
    622622----------------------------------- 
     
    629629Line: 779 
    630630Stack unwinding: <<beginning of stack>> 
    631 15:43:34: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63114:30:27: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    632632 
    633633----------------------------------- 
     
    640640Line: 779 
    641641Stack unwinding: <<beginning of stack>> 
    642 15:43:34: An exception has been thrown! 
     64214:30:27: An exception has been thrown! 
    643643 
    644644----------------------------------- 
     
    651651Line: 779 
    652652Stack unwinding: <<beginning of stack>> 
    653 15:43:34: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65314:30:27: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    654654 
    655655----------------------------------- 
     
    662662Line: 779 
    663663Stack unwinding: <<beginning of stack>> 
    664 15:43:34: An exception has been thrown! 
     66414:30:27: An exception has been thrown! 
    665665 
    666666----------------------------------- 
     
    673673Line: 779 
    674674Stack unwinding: <<beginning of stack>> 
    675 15:43:34: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67514:30:27: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    676676 
    677677----------------------------------- 
     
    684684Line: 779 
    685685Stack unwinding: <<beginning of stack>> 
    686 15:43:34: An exception has been thrown! 
     68614:30:27: An exception has been thrown! 
    687687 
    688688----------------------------------- 
     
    695695Line: 779 
    696696Stack unwinding: <<beginning of stack>> 
    697 15:43:34: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69714:30:27: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    698698 
    699699----------------------------------- 
     
    706706Line: 779 
    707707Stack unwinding: <<beginning of stack>> 
    708 15:43:34: An exception has been thrown! 
     70814:30:27: An exception has been thrown! 
    709709 
    710710----------------------------------- 
     
    717717Line: 779 
    718718Stack unwinding: <<beginning of stack>> 
    719 15:43:34: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     71914:30:27: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    720720 
    721721----------------------------------- 
     
    728728Line: 779 
    729729Stack unwinding: <<beginning of stack>> 
    730 15:43:34: An exception has been thrown! 
     73014:30:27: An exception has been thrown! 
    731731 
    732732----------------------------------- 
     
    739739Line: 779 
    740740Stack unwinding: <<beginning of stack>> 
    741 15:43:34: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74114:30:27: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    742742 
    743743----------------------------------- 
     
    750750Line: 779 
    751751Stack unwinding: <<beginning of stack>> 
    752 15:43:34: An exception has been thrown! 
     75214:30:27: An exception has been thrown! 
    753753 
    754754----------------------------------- 
     
    761761Line: 779 
    762762Stack unwinding: <<beginning of stack>> 
    763 15:43:34: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76314:30:27: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    764764 
    765765----------------------------------- 
     
    772772Line: 779 
    773773Stack unwinding: <<beginning of stack>> 
    774 15:43:34: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    775 15:43:34: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    776 15:43:34: Parsing script Diffuse.material 
    777 15:43:35: An exception has been thrown! 
     77414:30:27: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77514:30:27: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77614:30:27: Parsing script Diffuse.material 
     77714:30:27: An exception has been thrown! 
    778778 
    779779----------------------------------- 
     
    786786Line: 779 
    787787Stack unwinding: <<beginning of stack>> 
    788 15:43:35: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     78814:30:27: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    789789 
    790790----------------------------------- 
     
    797797Line: 779 
    798798Stack unwinding: <<beginning of stack>> 
    799 15:43:35: An exception has been thrown! 
     79914:30:28: An exception has been thrown! 
    800800 
    801801----------------------------------- 
     
    808808Line: 779 
    809809Stack unwinding: <<beginning of stack>> 
    810 15:43:35: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     81014:30:28: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    811811 
    812812----------------------------------- 
     
    819819Line: 779 
    820820Stack unwinding: <<beginning of stack>> 
    821 15:43:38: An exception has been thrown! 
     82114:30:31: An exception has been thrown! 
    822822 
    823823----------------------------------- 
     
    830830Line: 779 
    831831Stack unwinding: <<beginning of stack>> 
    832 15:43:38: Error in material GameTools/DiffuseBump at line 233 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83214:30:31: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    833833 
    834834----------------------------------- 
     
    841841Line: 779 
    842842Stack unwinding: <<beginning of stack>> 
    843 15:43:38: An exception has been thrown! 
     84314:30:31: An exception has been thrown! 
    844844 
    845845----------------------------------- 
     
    852852Line: 779 
    853853Stack unwinding: <<beginning of stack>> 
    854 15:43:38: Error in material GameTools/DiffuseBump at line 234 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     85414:30:31: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    855855 
    856856----------------------------------- 
     
    863863Line: 779 
    864864Stack unwinding: <<beginning of stack>> 
    865 15:43:39: Parsing script EnvMetals.material 
    866 15:43:39: An exception has been thrown! 
     86514:30:32: Parsing script EnvMetals.material 
     86614:30:32: An exception has been thrown! 
    867867 
    868868----------------------------------- 
     
    875875Line: 779 
    876876Stack unwinding: <<beginning of stack>> 
    877 15:43:39: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     87714:30:32: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    878878 
    879879----------------------------------- 
     
    886886Line: 779 
    887887Stack unwinding: <<beginning of stack>> 
    888 15:43:39: An exception has been thrown! 
     88814:30:32: An exception has been thrown! 
    889889 
    890890----------------------------------- 
     
    897897Line: 779 
    898898Stack unwinding: <<beginning of stack>> 
    899 15:43:39: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     89914:30:32: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    900900 
    901901----------------------------------- 
     
    908908Line: 779 
    909909Stack unwinding: <<beginning of stack>> 
    910 15:43:39: An exception has been thrown! 
     91014:30:32: An exception has been thrown! 
    911911 
    912912----------------------------------- 
     
    919919Line: 779 
    920920Stack unwinding: <<beginning of stack>> 
    921 15:43:39: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     92114:30:32: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    922922 
    923923----------------------------------- 
     
    930930Line: 779 
    931931Stack unwinding: <<beginning of stack>> 
    932 15:43:39: An exception has been thrown! 
     93214:30:32: An exception has been thrown! 
    933933 
    934934----------------------------------- 
     
    941941Line: 779 
    942942Stack unwinding: <<beginning of stack>> 
    943 15:43:39: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     94314:30:32: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    944944 
    945945----------------------------------- 
     
    952952Line: 779 
    953953Stack unwinding: <<beginning of stack>> 
    954 15:43:39: Parsing script GameTools.material 
    955 15:43:39: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    956 15:43:39: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    957 15:43:39: An exception has been thrown! 
     95414:30:32: Parsing script GameTools.material 
     95514:30:32: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     95614:30:32: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     95714:30:32: An exception has been thrown! 
    958958 
    959959----------------------------------- 
     
    966966Line: 779 
    967967Stack unwinding: <<beginning of stack>> 
    968 15:43:39: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     96814:30:32: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    969969 
    970970----------------------------------- 
     
    977977Line: 779 
    978978Stack unwinding: <<beginning of stack>> 
    979 15:43:39: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    980 15:43:39: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    981 15:43:39: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    982 15:43:39: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
    983 15:43:39: Parsing script GameTools_HPS.material 
    984 15:43:39: An exception has been thrown! 
     97914:30:32: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     98014:30:32: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     98114:30:32: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     98214:30:32: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
     98314:30:32: Parsing script GameTools_HPS.material 
     98414:30:32: An exception has been thrown! 
    985985 
    986986----------------------------------- 
     
    993993Line: 779 
    994994Stack unwinding: <<beginning of stack>> 
    995 15:43:39: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     99514:30:32: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    996996 
    997997----------------------------------- 
     
    10041004Line: 779 
    10051005Stack unwinding: <<beginning of stack>> 
    1006 15:43:39: An exception has been thrown! 
     100614:30:32: An exception has been thrown! 
    10071007 
    10081008----------------------------------- 
     
    10151015Line: 779 
    10161016Stack unwinding: <<beginning of stack>> 
    1017 15:43:39: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     101714:30:32: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10181018 
    10191019----------------------------------- 
     
    10261026Line: 779 
    10271027Stack unwinding: <<beginning of stack>> 
    1028 15:43:39: An exception has been thrown! 
     102814:30:32: An exception has been thrown! 
    10291029 
    10301030----------------------------------- 
     
    10371037Line: 779 
    10381038Stack unwinding: <<beginning of stack>> 
    1039 15:43:39: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     103914:30:32: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10401040 
    10411041----------------------------------- 
     
    10481048Line: 779 
    10491049Stack unwinding: <<beginning of stack>> 
    1050 15:43:39: An exception has been thrown! 
     105014:30:32: An exception has been thrown! 
    10511051 
    10521052----------------------------------- 
     
    10591059Line: 779 
    10601060Stack unwinding: <<beginning of stack>> 
    1061 15:43:39: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     106114:30:32: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10621062 
    10631063----------------------------------- 
     
    10701070Line: 779 
    10711071Stack unwinding: <<beginning of stack>> 
    1072 15:43:39: An exception has been thrown! 
     107214:30:32: An exception has been thrown! 
    10731073 
    10741074----------------------------------- 
     
    10811081Line: 779 
    10821082Stack unwinding: <<beginning of stack>> 
    1083 15:43:39: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     108314:30:32: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10841084 
    10851085----------------------------------- 
     
    10921092Line: 779 
    10931093Stack unwinding: <<beginning of stack>> 
    1094 15:43:39: An exception has been thrown! 
     109414:30:32: An exception has been thrown! 
    10951095 
    10961096----------------------------------- 
     
    11031103Line: 779 
    11041104Stack unwinding: <<beginning of stack>> 
    1105 15:43:39: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     110514:30:32: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11061106 
    11071107----------------------------------- 
     
    11141114Line: 779 
    11151115Stack unwinding: <<beginning of stack>> 
    1116 15:43:39: An exception has been thrown! 
     111614:30:32: An exception has been thrown! 
    11171117 
    11181118----------------------------------- 
     
    11251125Line: 779 
    11261126Stack unwinding: <<beginning of stack>> 
    1127 15:43:39: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     112714:30:32: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11281128 
    11291129----------------------------------- 
     
    11361136Line: 779 
    11371137Stack unwinding: <<beginning of stack>> 
    1138 15:43:39: Parsing script GlassHead.material 
    1139 15:43:39: An exception has been thrown! 
     113814:30:32: Parsing script GlassHead.material 
     113914:30:32: An exception has been thrown! 
    11401140 
    11411141----------------------------------- 
     
    11481148Line: 779 
    11491149Stack unwinding: <<beginning of stack>> 
    1150 15:43:39: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     115014:30:32: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11511151 
    11521152----------------------------------- 
     
    11591159Line: 779 
    11601160Stack unwinding: <<beginning of stack>> 
    1161 15:43:39: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    1162 15:43:39: An exception has been thrown! 
     116114:30:32: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     116214:30:32: An exception has been thrown! 
    11631163 
    11641164----------------------------------- 
     
    11711171Line: 779 
    11721172Stack unwinding: <<beginning of stack>> 
    1173 15:43:39: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     117314:30:32: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11741174 
    11751175----------------------------------- 
     
    11821182Line: 779 
    11831183Stack unwinding: <<beginning of stack>> 
    1184 15:43:39: An exception has been thrown! 
     118414:30:32: An exception has been thrown! 
    11851185 
    11861186----------------------------------- 
     
    11931193Line: 779 
    11941194Stack unwinding: <<beginning of stack>> 
    1195 15:43:39: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     119514:30:32: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11961196 
    11971197----------------------------------- 
     
    12041204Line: 779 
    12051205Stack unwinding: <<beginning of stack>> 
    1206 15:43:39: An exception has been thrown! 
     120614:30:32: An exception has been thrown! 
    12071207 
    12081208----------------------------------- 
     
    12151215Line: 779 
    12161216Stack unwinding: <<beginning of stack>> 
    1217 15:43:39: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     121714:30:32: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12181218 
    12191219----------------------------------- 
     
    12261226Line: 779 
    12271227Stack unwinding: <<beginning of stack>> 
    1228 15:43:39: Parsing script Glow.material 
    1229 15:43:39: An exception has been thrown! 
     122814:30:32: Parsing script Glow.material 
     122914:30:32: An exception has been thrown! 
    12301230 
    12311231----------------------------------- 
     
    12381238Line: 779 
    12391239Stack unwinding: <<beginning of stack>> 
    1240 15:43:39: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     124014:30:32: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    12411241 
    12421242----------------------------------- 
     
    12491249Line: 779 
    12501250Stack unwinding: <<beginning of stack>> 
    1251 15:43:39: Parsing script hangar.material 
    1252 15:43:39: Parsing script kupola.material 
    1253 15:43:39: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1254 15:43:39: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1255 15:43:39: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1256 15:43:39: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1257 15:43:39: Parsing script MetalTeapot.material 
    1258 15:43:43: An exception has been thrown! 
     125114:30:32: Parsing script hangar.material 
     125214:30:32: Parsing script kupola.material 
     125314:30:32: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     125414:30:32: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     125514:30:32: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     125614:30:32: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     125714:30:32: Parsing script MetalTeapot.material 
     125814:30:34: An exception has been thrown! 
    12591259 
    12601260----------------------------------- 
     
    12671267Line: 779 
    12681268Stack unwinding: <<beginning of stack>> 
    1269 15:43:43: Error in material MetalTeapotMultipleBounce at line 192 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     126914:30:34: Error in material MetalTeapotMultipleBounce at line 192 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    12701270 
    12711271----------------------------------- 
     
    12781278Line: 779 
    12791279Stack unwinding: <<beginning of stack>> 
    1280 15:43:43: Parsing script Ogre.material 
    1281 15:43:43: Parsing script Particles.material 
    1282 15:43:43: An exception has been thrown! 
     128014:30:34: Parsing script Ogre.material 
     128114:30:34: Parsing script Particles.material 
     128214:30:34: An exception has been thrown! 
    12831283 
    12841284----------------------------------- 
     
    12911291Line: 779 
    12921292Stack unwinding: <<beginning of stack>> 
    1293 15:43:43: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     129314:30:34: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12941294 
    12951295----------------------------------- 
     
    13021302Line: 779 
    13031303Stack unwinding: <<beginning of stack>> 
    1304 15:43:43: An exception has been thrown! 
     130414:30:34: An exception has been thrown! 
    13051305 
    13061306----------------------------------- 
     
    13131313Line: 779 
    13141314Stack unwinding: <<beginning of stack>> 
    1315 15:43:43: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     131514:30:34: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13161316 
    13171317----------------------------------- 
     
    13241324Line: 779 
    13251325Stack unwinding: <<beginning of stack>> 
    1326 15:43:43: Parsing script RaytraceDemo.material 
    1327 15:43:43: Parsing script stairs.material 
    1328 15:43:43: Parsing script uvegfolyoso2.material 
    1329 15:43:43: An exception has been thrown! 
     132614:30:34: Parsing script RaytraceDemo.material 
     132714:30:34: Parsing script stairs.material 
     132814:30:34: Parsing script uvegfolyoso2.material 
     132914:30:34: An exception has been thrown! 
    13301330 
    13311331----------------------------------- 
     
    13381338Line: 779 
    13391339Stack unwinding: <<beginning of stack>> 
    1340 15:43:43: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     134014:30:34: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13411341 
    13421342----------------------------------- 
     
    13491349Line: 779 
    13501350Stack unwinding: <<beginning of stack>> 
    1351 15:43:43: An exception has been thrown! 
     135114:30:34: An exception has been thrown! 
    13521352 
    13531353----------------------------------- 
     
    13601360Line: 779 
    13611361Stack unwinding: <<beginning of stack>> 
    1362 15:43:43: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     136214:30:34: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13631363 
    13641364----------------------------------- 
     
    13711371Line: 779 
    13721372Stack unwinding: <<beginning of stack>> 
    1373 15:43:43: An exception has been thrown! 
     137314:30:34: An exception has been thrown! 
    13741374 
    13751375----------------------------------- 
     
    13821382Line: 779 
    13831383Stack unwinding: <<beginning of stack>> 
    1384 15:43:43: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     138414:30:34: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13851385 
    13861386----------------------------------- 
     
    13931393Line: 779 
    13941394Stack unwinding: <<beginning of stack>> 
    1395 15:43:43: An exception has been thrown! 
     139514:30:34: An exception has been thrown! 
    13961396 
    13971397----------------------------------- 
     
    14041404Line: 779 
    14051405Stack unwinding: <<beginning of stack>> 
    1406 15:43:43: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     140614:30:34: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14071407 
    14081408----------------------------------- 
     
    14151415Line: 779 
    14161416Stack unwinding: <<beginning of stack>> 
    1417 15:43:43: An exception has been thrown! 
     141714:30:34: An exception has been thrown! 
    14181418 
    14191419----------------------------------- 
     
    14261426Line: 779 
    14271427Stack unwinding: <<beginning of stack>> 
    1428 15:43:43: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     142814:30:34: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14291429 
    14301430----------------------------------- 
     
    14371437Line: 779 
    14381438Stack unwinding: <<beginning of stack>> 
    1439 15:43:43: An exception has been thrown! 
     143914:30:34: An exception has been thrown! 
    14401440 
    14411441----------------------------------- 
     
    14481448Line: 779 
    14491449Stack unwinding: <<beginning of stack>> 
    1450 15:43:43: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     145014:30:34: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14511451 
    14521452----------------------------------- 
     
    14591459Line: 779 
    14601460Stack unwinding: <<beginning of stack>> 
    1461 15:43:43: An exception has been thrown! 
     146114:30:34: An exception has been thrown! 
    14621462 
    14631463----------------------------------- 
     
    14701470Line: 779 
    14711471Stack unwinding: <<beginning of stack>> 
    1472 15:43:43: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     147214:30:34: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14731473 
    14741474----------------------------------- 
     
    14811481Line: 779 
    14821482Stack unwinding: <<beginning of stack>> 
    1483 15:43:43: An exception has been thrown! 
     148314:30:34: An exception has been thrown! 
    14841484 
    14851485----------------------------------- 
     
    14921492Line: 779 
    14931493Stack unwinding: <<beginning of stack>> 
    1494 15:43:43: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     149414:30:34: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14951495 
    14961496----------------------------------- 
     
    15031503Line: 779 
    15041504Stack unwinding: <<beginning of stack>> 
    1505 15:43:43: An exception has been thrown! 
     150514:30:34: An exception has been thrown! 
    15061506 
    15071507----------------------------------- 
     
    15141514Line: 779 
    15151515Stack unwinding: <<beginning of stack>> 
    1516 15:43:43: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     151614:30:34: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15171517 
    15181518----------------------------------- 
     
    15251525Line: 779 
    15261526Stack unwinding: <<beginning of stack>> 
    1527 15:43:43: An exception has been thrown! 
     152714:30:34: An exception has been thrown! 
    15281528 
    15291529----------------------------------- 
     
    15361536Line: 779 
    15371537Stack unwinding: <<beginning of stack>> 
    1538 15:43:43: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     153814:30:34: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15391539 
    15401540----------------------------------- 
     
    15471547Line: 779 
    15481548Stack unwinding: <<beginning of stack>> 
    1549 15:43:43: An exception has been thrown! 
     154914:30:34: An exception has been thrown! 
    15501550 
    15511551----------------------------------- 
     
    15581558Line: 779 
    15591559Stack unwinding: <<beginning of stack>> 
    1560 15:43:43: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     156014:30:34: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15611561 
    15621562----------------------------------- 
     
    15691569Line: 779 
    15701570Stack unwinding: <<beginning of stack>> 
    1571 15:43:43: An exception has been thrown! 
     157114:30:34: An exception has been thrown! 
    15721572 
    15731573----------------------------------- 
     
    15801580Line: 779 
    15811581Stack unwinding: <<beginning of stack>> 
    1582 15:43:43: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     158214:30:34: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15831583 
    15841584----------------------------------- 
     
    15911591Line: 779 
    15921592Stack unwinding: <<beginning of stack>> 
    1593 15:43:43: An exception has been thrown! 
     159314:30:34: An exception has been thrown! 
    15941594 
    15951595----------------------------------- 
     
    16021602Line: 779 
    16031603Stack unwinding: <<beginning of stack>> 
    1604 15:43:43: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     160414:30:34: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16051605 
    16061606----------------------------------- 
     
    16131613Line: 779 
    16141614Stack unwinding: <<beginning of stack>> 
    1615 15:43:43: An exception has been thrown! 
     161514:30:34: An exception has been thrown! 
    16161616 
    16171617----------------------------------- 
     
    16241624Line: 779 
    16251625Stack unwinding: <<beginning of stack>> 
    1626 15:43:43: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     162614:30:34: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16271627 
    16281628----------------------------------- 
     
    16351635Line: 779 
    16361636Stack unwinding: <<beginning of stack>> 
    1637 15:43:43: An exception has been thrown! 
     163714:30:34: An exception has been thrown! 
    16381638 
    16391639----------------------------------- 
     
    16461646Line: 779 
    16471647Stack unwinding: <<beginning of stack>> 
    1648 15:43:43: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     164814:30:34: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16491649 
    16501650----------------------------------- 
     
    16571657Line: 779 
    16581658Stack unwinding: <<beginning of stack>> 
    1659 15:43:43: An exception has been thrown! 
     165914:30:34: An exception has been thrown! 
    16601660 
    16611661----------------------------------- 
     
    16681668Line: 779 
    16691669Stack unwinding: <<beginning of stack>> 
    1670 15:43:43: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     167014:30:34: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16711671 
    16721672----------------------------------- 
     
    16791679Line: 779 
    16801680Stack unwinding: <<beginning of stack>> 
    1681 15:43:43: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1682 15:43:43: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1683 15:43:43: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1684 15:43:43: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1685 15:43:43: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1686 15:43:43: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1687 15:43:43: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1688 15:43:43: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1689 15:43:43: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1690 15:43:43: Parsing script X3D.material 
    1691 15:43:43: Parsing script GameTools_Glow.compositor 
    1692 15:43:43: Parsing script GameTools_ToneMap.compositor 
    1693 15:43:43: Parsing script sample.fontdef 
    1694 15:43:43: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1695 15:43:43: Parsing script GameTools.particle 
    1696 15:43:43: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1697 15:43:43: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1698 15:43:43: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1699 15:43:43: Parsing script Compositor.overlay 
    1700 15:43:43: Parsing script DP3.overlay 
    1701 15:43:43: Parsing script Example-CubeMapping.overlay 
    1702 15:43:43: Parsing script Example-DynTex.overlay 
    1703 15:43:43: Parsing script Example-Water.overlay 
    1704 15:43:44: Parsing script FullScreen.overlay 
    1705 15:43:44: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1706 15:43:44: Parsing script Shadows.overlay 
    1707 15:43:44: Finished parsing scripts for resource group General 
    1708 15:43:44: Parsing scripts for resource group Internal 
    1709 15:43:44: Finished parsing scripts for resource group Internal 
    1710 15:43:44: Creating viewport on target 'rtt/3191584', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1711 15:43:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    1712 15:43:44: Creating viewport on target 'rtt/3193440', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1713 15:43:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1714 15:43:44: Creating viewport on target 'rtt/3172864', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1715 15:43:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1716 15:43:44: Creating viewport on target 'rtt/3227008', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1717 15:43:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1718 15:43:44: Creating viewport on target 'rtt/3227360', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1719 15:43:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1720 15:43:44: Creating viewport on target 'rtt/3227424', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1721 15:43:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1722 15:43:44: Creating viewport on target 'rtt/3227488', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1723 15:43:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 
    1724 15:43:44: Creating viewport on target 'rtt/3227552', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1725 15:43:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 
    1726 15:43:44: Mesh: Loading buddha.mesh. 
    1727 15:43:44: Can't assign material Material_2 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 
    1728 15:43:44: Mesh: Loading difflab.mesh. 
    1729 15:43:44: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1730 15:43:44: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1731 15:43:44: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
    1732 15:43:44: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1733 15:43:44: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1734 15:43:44: Creating viewport on target 'rtt/48031424', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1735 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1736 15:43:44: Creating viewport on target 'rtt/48031488', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1737 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1738 15:43:44: Creating viewport on target 'rtt/48031552', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1739 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1740 15:43:44: Creating viewport on target 'rtt/48031616', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1741 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1742 15:43:44: Creating viewport on target 'rtt/48031680', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1743 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1744 15:43:44: Creating viewport on target 'rtt/48031744', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1745 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1746 15:43:44: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1747 15:43:44: Creating viewport on target 'rtt/48032704', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1748 15:43:44: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1749 15:43:44: Creating viewport on target 'rtt/48032768', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1750 15:43:44: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1751 15:43:44: Creating viewport on target 'rtt/48032832', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1752 15:43:44: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1753 15:43:44: Creating viewport on target 'rtt/48032896', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1754 15:43:44: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1755 15:43:44: Creating viewport on target 'rtt/48032960', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1756 15:43:44: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1757 15:43:44: Creating viewport on target 'rtt/48033024', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1758 15:43:44: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1759 15:43:44: WARNING: Texture instance 'object_SE_0_DISTANCECUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1760 15:43:44: Creating viewport on target 'rtt/3252000', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1761 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1762 15:43:44: Creating viewport on target 'rtt/3252064', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1763 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1764 15:43:44: Creating viewport on target 'rtt/3252128', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1765 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1766 15:43:44: Creating viewport on target 'rtt/3252192', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1767 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1768 15:43:44: Creating viewport on target 'rtt/3252256', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1769 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1770 15:43:44: Creating viewport on target 'rtt/3252320', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1771 15:43:44: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1772 15:43:44: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_REDUCED' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1773 15:43:44: Win32Input8: DirectInput Activation Starts 
    1774 15:43:44: Win32Input8: Establishing keyboard input. 
    1775 15:43:44: Win32Input8: Keyboard input established. 
    1776 15:43:44: Win32Input8: Initializing mouse input in immediate mode. 
    1777 15:43:44: Win32Input8: Mouse input in immediate mode initialized. 
    1778 15:43:44: Win32Input8: DirectInput OK. 
    1779 15:43:44: Creating viewport on target 'rtt/47878336', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1780 15:43:44: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1781 15:43:44: Creating viewport on target 'rtt/48059136', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1782 15:43:44: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1783 15:43:44: Creating viewport on target 'rtt/48059488', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1784 15:43:44: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1785 15:43:44: Creating viewport on target 'rtt/48059840', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1786 15:43:44: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1787 15:43:44: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1788 15:43:44: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAPblurred' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1789 15:43:44: Texture: rockwall.tga: Loading 1 faces(PF_R8G8B8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1790 15:43:44: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1791 15:43:44: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1792 15:43:44: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1793 15:43:44: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1794 15:43:44: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1795 15:43:44: WARNING: Texture instance 'CompositorInstanceTexture5' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1796 15:43:44: WARNING: Texture instance 'CompositorInstanceTexture6' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1797 15:43:44: WARNING: Texture instance 'CompositorInstanceTexture7' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1798 15:43:56: Unregistering ResourceManager for type BspLevel 
    1799 15:43:56: Render Target 'rtt/3191584' Average FPS: 3.19754 Best FPS: 3.62647 Worst FPS: 0.892061 
    1800 15:43:56: Render Target 'rtt/3227552' Average FPS: 3.18508 Best FPS: 4.54133 Worst FPS: 0.865801 
    1801 15:43:56: Render Target 'rtt/3227488' Average FPS: 3.18287 Best FPS: 3.76294 Worst FPS: 0.865801 
    1802 15:43:56: Render Target 'rtt/3227424' Average FPS: 3.1833 Best FPS: 3.76294 Worst FPS: 0.866551 
    1803 15:43:56: Render Target 'rtt/3227360' Average FPS: 3.19877 Best FPS: 3.64964 Worst FPS: 0.866551 
    1804 15:43:56: Render Target 'rtt/3227008' Average FPS: 3.19867 Best FPS: 3.62647 Worst FPS: 0.875657 
    1805 15:43:56: Render Target 'rtt/3172864' Average FPS: 3.1976 Best FPS: 3.62647 Worst FPS: 0.881057 
    1806 15:43:56: Render Target 'rtt/3193440' Average FPS: 3.19864 Best FPS: 3.62647 Worst FPS: 0.881057 
    1807 15:43:57: Render Target 'rtt/48059840' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1808 15:43:57: Render Target 'rtt/48059488' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1809 15:43:57: Render Target 'rtt/48059136' Average FPS: 3.18501 Best FPS: 3.76294 Worst FPS: 1.68067 
    1810 15:43:57: Render Target 'rtt/47878336' Average FPS: 3.18471 Best FPS: 3.76294 Worst FPS: 1.68209 
    1811 15:43:57: Render Target 'rtt/3252000' Average FPS: 3.18588 Best FPS: 3.76294 Worst FPS: 1.443 
    1812 15:43:57: Render Target 'rtt/3252064' Average FPS: 3.18568 Best FPS: 3.76294 Worst FPS: 1.44196 
    1813 15:43:57: Render Target 'rtt/3252128' Average FPS: 3.18558 Best FPS: 3.76294 Worst FPS: 1.44196 
    1814 15:43:57: Render Target 'rtt/3252192' Average FPS: 3.18468 Best FPS: 3.76294 Worst FPS: 1.44092 
    1815 15:43:57: Render Target 'rtt/3252256' Average FPS: 3.18588 Best FPS: 3.76294 Worst FPS: 1.43988 
    1816 15:43:57: Render Target 'rtt/3252320' Average FPS: 3.18559 Best FPS: 3.76294 Worst FPS: 1.43885 
    1817 15:43:57: Render Target 'rtt/48032704' Average FPS: 3.18537 Best FPS: 3.7594 Worst FPS: 1.5015 
    1818 15:43:57: Render Target 'rtt/48032768' Average FPS: 3.18568 Best FPS: 3.76294 Worst FPS: 1.49031 
    1819 15:43:57: Render Target 'rtt/48032832' Average FPS: 3.18536 Best FPS: 3.76294 Worst FPS: 1.4782 
    1820 15:43:57: Render Target 'rtt/48032896' Average FPS: 3.18569 Best FPS: 3.76294 Worst FPS: 1.46735 
    1821 15:43:57: Render Target 'rtt/48032960' Average FPS: 3.18575 Best FPS: 3.76294 Worst FPS: 1.45666 
    1822 15:43:57: Render Target 'rtt/48033024' Average FPS: 3.18558 Best FPS: 3.7594 Worst FPS: 1.44718 
    1823 15:43:57: Render Target 'rtt/48031424' Average FPS: 3.18489 Best FPS: 3.7594 Worst FPS: 1.61681 
    1824 15:43:57: Render Target 'rtt/48031488' Average FPS: 3.18448 Best FPS: 3.76294 Worst FPS: 1.5949 
    1825 15:43:57: Render Target 'rtt/48031552' Average FPS: 3.18476 Best FPS: 3.7594 Worst FPS: 1.57356 
    1826 15:43:57: Render Target 'rtt/48031616' Average FPS: 3.18431 Best FPS: 3.76294 Worst FPS: 1.55159 
    1827 15:43:57: Render Target 'rtt/48031680' Average FPS: 3.18468 Best FPS: 3.7594 Worst FPS: 1.53022 
    1828 15:43:57: Render Target 'rtt/48031744' Average FPS: 3.18515 Best FPS: 3.7594 Worst FPS: 1.51057 
    1829 15:43:57: *-*-* OGRE Shutdown 
    1830 15:43:57: Unregistering ResourceManager for type Compositor 
    1831 15:43:57: Unregistering ResourceManager for type Font 
    1832 15:43:57: Unregistering ResourceManager for type Skeleton 
    1833 15:43:57: Unregistering ResourceManager for type Mesh 
    1834 15:43:57: Unregistering ResourceManager for type HighLevelGpuProgram 
    1835 15:43:57: Unloading library .\Plugin_CgProgramManager 
    1836 15:43:57: Unloading library .\Plugin_OctreeSceneManager 
    1837 15:43:57: Unloading library .\Plugin_BSPSceneManager 
    1838 15:43:57: Unloading library .\Plugin_ParticleFX 
    1839 15:43:57: Render Target 'OGRE Render Window' Average FPS: 3.18301 Best FPS: 3.76294 Worst FPS: 0.843882 
    1840 15:43:57: D3D9 : Shutting down cleanly. 
    1841 15:43:57: Unregistering ResourceManager for type Texture 
    1842 15:43:57: Unregistering ResourceManager for type GpuProgram 
    1843 15:43:57: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    1844 15:43:57: Unloading library .\RenderSystem_Direct3D9 
    1845 15:43:57: Unregistering ResourceManager for type Material 
    1846 15:43:57: Unloading library OgrePlatform_d.dll 
     168114:30:34: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     168214:30:34: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     168314:30:34: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     168414:30:34: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     168514:30:34: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     168614:30:34: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     168714:30:34: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     168814:30:34: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     168914:30:34: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     169014:30:34: Parsing script X3D.material 
     169114:30:34: Parsing script GameTools_Glow.compositor 
     169214:30:34: Parsing script GameTools_ToneMap.compositor 
     169314:30:34: Parsing script sample.fontdef 
     169414:30:34: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     169514:30:34: Parsing script GameTools.particle 
     169614:30:34: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     169714:30:34: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     169814:30:34: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     169914:30:34: Parsing script Compositor.overlay 
     170014:30:34: Parsing script DP3.overlay 
     170114:30:34: Parsing script Example-CubeMapping.overlay 
     170214:30:34: Parsing script Example-DynTex.overlay 
     170314:30:34: Parsing script Example-Water.overlay 
     170414:30:34: Parsing script FullScreen.overlay 
     170514:30:34: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     170614:30:34: Parsing script Shadows.overlay 
     170714:30:34: Finished parsing scripts for resource group General 
     170814:30:34: Parsing scripts for resource group Internal 
     170914:30:34: Finished parsing scripts for resource group Internal 
     171014:30:34: Creating viewport on target 'rtt/47781152', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171114:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     171214:30:34: Creating viewport on target 'rtt/47781696', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171314:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     171414:30:34: Creating viewport on target 'rtt/47782240', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171514:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     171614:30:34: Creating viewport on target 'rtt/47782816', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171714:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     171814:30:34: Creating viewport on target 'rtt/47783360', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171914:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     172014:30:34: Creating viewport on target 'rtt/3168032', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     172114:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     172214:30:34: Creating viewport on target 'rtt/3168576', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     172314:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     172414:30:34: Creating viewport on target 'rtt/3169152', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     172514:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     172614:30:34: Creating viewport on target 'rtt/3169696', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     172714:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     172814:30:34: Creating viewport on target 'rtt/3170240', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     172914:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 
     173014:30:34: Creating viewport on target 'rtt/3170784', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     173114:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 
     173214:30:34: Creating viewport on target 'rtt/3171360', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     173314:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 
     173414:30:34: Creating viewport on target 'rtt/3171904', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     173514:30:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 
     173614:30:34: D3D9 : Loading 2D Texture, image name : 'Forest_fr.dds' with 5 mip map levels 
     173714:30:34: D3D9 : Loading 2D Texture, image name : 'Forest_bk.dds' with 5 mip map levels 
     173814:30:34: D3D9 : Loading 2D Texture, image name : 'Forest_lf.dds' with 5 mip map levels 
     173914:30:34: D3D9 : Loading 2D Texture, image name : 'Forest_rt.dds' with 5 mip map levels 
     174014:30:34: D3D9 : Loading 2D Texture, image name : 'Forest_up.dds' with 5 mip map levels 
     174114:30:34: D3D9 : Loading 2D Texture, image name : 'Forest_dn.dds' with 5 mip map levels 
     174214:30:34: Mesh: Loading kupola.mesh. 
     174314:30:35: Texture: falt2.tga: Loading 1 faces(PF_R8G8B8,2048x2048x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x2048x1. 
     174414:30:35: D3D9 : Loading 2D Texture, image name : 'falnormal.dds' with 2147483647 mip map levels 
     174514:30:35: Texture: talaj2.tga: Loading 1 faces(PF_R8G8B8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     174614:30:35: D3D9 : Loading 2D Texture, image name : 'talajnormal.dds' with 2147483647 mip map levels 
     174714:30:35: Mesh: Loading ogrehead.mesh. 
     174814:30:35: Texture: WeirdEye.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     174914:30:35: Texture: GreenSkin.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     175014:30:35: Texture: spheremap.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     175114:30:35: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 
     175214:30:35: Win32Input8: DirectInput Activation Starts 
     175314:30:36: Win32Input8: Establishing keyboard input. 
     175414:30:36: Win32Input8: Keyboard input established. 
     175514:30:36: Win32Input8: Initializing mouse input in immediate mode. 
     175614:30:36: Win32Input8: Mouse input in immediate mode initialized. 
     175714:30:36: Win32Input8: DirectInput OK. 
     175814:30:36: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     175914:30:36: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176014:30:36: Texture: rockwall.tga: Loading 1 faces(PF_R8G8B8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     176114:30:36: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176214:30:36: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176314:30:36: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176414:30:36: WARNING: Texture instance 'CompositorInstanceTexture5' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176514:30:36: WARNING: Texture instance 'CompositorInstanceTexture6' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176614:30:36: WARNING: Texture instance 'CompositorInstanceTexture7' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176714:30:36: WARNING: Texture instance 'CompositorInstanceTexture8' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176814:30:36: WARNING: Texture instance 'CompositorInstanceTexture9' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     176914:30:36: WARNING: Texture instance 'CompositorInstanceTexture10' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     177014:30:36: WARNING: Texture instance 'CompositorInstanceTexture11' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     177114:30:36: WARNING: Texture instance 'CompositorInstanceTexture12' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     177214:32:11: Unregistering ResourceManager for type BspLevel 
     177314:32:11: Render Target 'rtt/47781152' Average FPS: 113.731 Best FPS: 122.51 Worst FPS: 74.1107 
     177414:32:11: Render Target 'rtt/47782816' Average FPS: 114.001 Best FPS: 122.51 Worst FPS: 73.8523 
     177514:32:11: Render Target 'rtt/47782240' Average FPS: 113.919 Best FPS: 122.51 Worst FPS: 73.9261 
     177614:32:11: Render Target 'rtt/47783360' Average FPS: 113.793 Best FPS: 122.388 Worst FPS: 74.8503 
     177714:32:11: Render Target 'rtt/47781696' Average FPS: 113.753 Best FPS: 122.388 Worst FPS: 74.1107 
     177814:32:11: Render Target 'rtt/3168032' Average FPS: 113.852 Best FPS: 122.51 Worst FPS: 73.8523 
     177914:32:11: Render Target 'rtt/3171904' Average FPS: 114.001 Best FPS: 122.51 Worst FPS: 74.6269 
     178014:32:11: Render Target 'rtt/3171360' Average FPS: 113.852 Best FPS: 122.51 Worst FPS: 73.7052 
     178114:32:11: Render Target 'rtt/3170784' Average FPS: 113.94 Best FPS: 122.388 Worst FPS: 73.7052 
     178214:32:11: Render Target 'rtt/3170240' Average FPS: 114.001 Best FPS: 122.51 Worst FPS: 73.7052 
     178314:32:11: Render Target 'rtt/3169696' Average FPS: 113.852 Best FPS: 122.51 Worst FPS: 73.7787 
     178414:32:11: Render Target 'rtt/3169152' Average FPS: 113.705 Best FPS: 122.51 Worst FPS: 73.7787 
     178514:32:11: Render Target 'rtt/3168576' Average FPS: 114.001 Best FPS: 122.51 Worst FPS: 73.7787 
     178614:32:11: *-*-* OGRE Shutdown 
     178714:32:11: Unregistering ResourceManager for type Compositor 
     178814:32:11: Unregistering ResourceManager for type Font 
     178914:32:11: Unregistering ResourceManager for type Skeleton 
     179014:32:11: Unregistering ResourceManager for type Mesh 
     179114:32:11: Unregistering ResourceManager for type HighLevelGpuProgram 
     179214:32:11: Unloading library .\Plugin_CgProgramManager 
     179314:32:11: Unloading library .\Plugin_OctreeSceneManager 
     179414:32:11: Unloading library .\Plugin_BSPSceneManager 
     179514:32:11: Unloading library .\Plugin_ParticleFX 
     179614:32:11: Render Target 'OGRE Render Window' Average FPS: 113.863 Best FPS: 122.51 Worst FPS: 73.4856 
     179714:32:11: D3D9 : Shutting down cleanly. 
     179814:32:11: Unregistering ResourceManager for type Texture 
     179914:32:11: Unregistering ResourceManager for type GpuProgram 
     180014:32:11: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     180114:32:11: Unloading library .\RenderSystem_Direct3D9 
     180214:32:11: Unregistering ResourceManager for type Material 
     180314:32:11: Unloading library OgrePlatform_d.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log

    r1735 r1831  
    11 ----------------------------------------------------------------------------------------------------------------------------------  
    2 |                                          Memory leak report for:  11/09/2006 15:43:57                                            | 
     2|                                          Memory leak report for:  11/30/2006 14:32:11                                            | 
    33 ----------------------------------------------------------------------------------------------------------------------------------  
    44 
    55 
    6 490 memory leaks found: 
     6367 memory leaks found: 
    77 
    88Alloc.   Addr       Size       Addr       Size                        BreakOn BreakOn               
    99Number Reported   Reported    Actual     Actual     Unused    Method  Dealloc Realloc Allocated by  
    1010------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------  
    11 028604 0x02150A60 0x00000018 0x02150A50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    12 028648 0x02150B18 0x000000E8 0x02150B08 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 
    13 028603 0x021530F0 0x00000104 0x021530E0 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight 
    14 028673 0x02174170 0x00000018 0x02174160 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    15 007332 0x0218A260 0x00000050 0x0218A250 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    16 007450 0x0218AB80 0x0000003C 0x0218AB70 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    17 007326 0x0218AC20 0x0000003C 0x0218AC10 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    18 007327 0x0218ACA8 0x00000050 0x0218AC98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    19 007336 0x0218AEF8 0x00000050 0x0218AEE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    20 007340 0x0218B038 0x00000050 0x0218B028 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    21 007344 0x0218B188 0x00000050 0x0218B178 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    22 007348 0x0218B228 0x00000050 0x0218B218 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    23 007451 0x0218B2C8 0x00000050 0x0218B2B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    24 007456 0x0219F940 0x00000050 0x0219F930 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    25 007464 0x0219F9E0 0x00000050 0x0219F9D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    26 007460 0x0219FA90 0x00000050 0x0219FA80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    27 007468 0x0219FB90 0x00000050 0x0219FB80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    28 007472 0x0219FCF0 0x00000050 0x0219FCE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    29 007665 0x021A09C8 0x00000050 0x021A09B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    30 007659 0x021A0AF8 0x0000003C 0x021A0AE8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    31 007660 0x021AAC98 0x00000050 0x021AAC88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    32 007669 0x021AAF48 0x00000050 0x021AAF38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    33 007673 0x021AB048 0x00000050 0x021AB038 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    34 007677 0x021AB1D8 0x00000050 0x021AB1C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    35 007681 0x021AB308 0x00000050 0x021AB2F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    36 007996 0x021AE388 0x00000050 0x021AE378 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    37 007990 0x021AE4B8 0x0000003C 0x021AE4A8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    38 007991 0x021B0A00 0x00000050 0x021B09F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    39 008008 0x021B0AF0 0x00000050 0x021B0AE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    40 008000 0x021B0C50 0x00000050 0x021B0C40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    41 008004 0x021B0D50 0x00000050 0x021B0D40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    42 008012 0x021B0EA0 0x00000050 0x021B0E90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    43 028607 0x021B2E20 0x00000034 0x021B2E10 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    44 009483 0x021CDF28 0x0000003C 0x021CDF18 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    45 009251 0x021CF568 0x00000050 0x021CF558 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    46 009255 0x021CF608 0x00000050 0x021CF5F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    47 009259 0x021CF738 0x0000003C 0x021CF728 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    48 009260 0x021CF7C0 0x00000050 0x021CF7B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    49 009273 0x021CF8B8 0x00000050 0x021CF8A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    50 009269 0x021CFA18 0x00000050 0x021CFA08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    51 009277 0x021CFAB8 0x00000050 0x021CFAA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    52 009281 0x021CFB58 0x00000050 0x021CFB48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    53 009285 0x021CFBF8 0x00000050 0x021CFBE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    54 009265 0x02F08350 0x00000050 0x02F08340 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    55 009245 0x02F084B0 0x0000003C 0x02F084A0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    56 009246 0x02F08720 0x00000050 0x02F08710 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    57 009484 0x02F101E0 0x00000050 0x02F101D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    58 009489 0x02F10280 0x00000050 0x02F10270 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    59 009493 0x02F10320 0x00000050 0x02F10310 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    60 009497 0x02F103C0 0x00000050 0x02F103B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    61 009501 0x02F10460 0x00000050 0x02F10450 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    62 009505 0x02F10500 0x00000050 0x02F104F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    63 009509 0x02F105A0 0x0000003C 0x02F10590 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    64 009510 0x02F10628 0x00000050 0x02F10618 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    65 009515 0x02F10720 0x00000050 0x02F10710 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    66 009519 0x02F107C0 0x00000050 0x02F107B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    67 009523 0x02F10860 0x00000050 0x02F10850 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    68 009527 0x02F10900 0x00000050 0x02F108F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    69 009531 0x02F109A0 0x00000050 0x02F10990 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    70 009535 0x02F10A90 0x0000003C 0x02F10A80 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    71 009536 0x02F10B18 0x00000050 0x02F10B08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    72 009541 0x02F10C10 0x00000050 0x02F10C00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    73 009545 0x02F10CB0 0x00000050 0x02F10CA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    74 009549 0x02F10DA0 0x00000050 0x02F10D90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    75 009553 0x02F10E40 0x00000050 0x02F10E30 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    76 009557 0x02F10EE0 0x00000050 0x02F10ED0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    77 009561 0x02F10F80 0x00000050 0x02F10F70 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    78 009731 0x02F114A8 0x0000003C 0x02F11498 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    79 009732 0x02F11530 0x00000050 0x02F11520 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    80 009737 0x02F115D0 0x00000050 0x02F115C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    81 009741 0x02F11670 0x00000050 0x02F11660 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    82 009745 0x02F11710 0x00000050 0x02F11700 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    83 009749 0x02F117B0 0x00000050 0x02F117A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    84 009753 0x02F11850 0x00000050 0x02F11840 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    85 009757 0x02F11980 0x0000003C 0x02F11970 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    86 009758 0x02F11A08 0x00000050 0x02F119F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    87 009771 0x02F11B00 0x00000050 0x02F11AF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    88 009767 0x02F11C60 0x00000050 0x02F11C50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    89 009775 0x02F11D00 0x00000050 0x02F11CF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    90 009779 0x02F11DA0 0x00000050 0x02F11D90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    91 009783 0x02F11E40 0x00000050 0x02F11E30 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    92 010103 0x02F12718 0x0000003C 0x02F12708 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    93 010091 0x02F127A8 0x00000050 0x02F12798 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    94 010095 0x02F12848 0x00000050 0x02F12838 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    95 010099 0x02F128E8 0x00000050 0x02F128D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    96 010104 0x02F12988 0x00000050 0x02F12978 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    97 010109 0x02F12AB8 0x00000050 0x02F12AA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    98 010113 0x02F12B58 0x00000050 0x02F12B48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    99 010117 0x02F12BF8 0x00000050 0x02F12BE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    100 010266 0x02F13120 0x0000003C 0x02F13110 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    101 010267 0x02F131A8 0x00000050 0x02F13198 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    102 010272 0x02F13298 0x00000050 0x02F13288 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    103 010276 0x02F13338 0x00000050 0x02F13328 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    104 010280 0x02F133D8 0x00000050 0x02F133C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    105 010284 0x02F13478 0x0000003C 0x02F13468 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    106 010285 0x02F13500 0x00000050 0x02F134F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    107 010290 0x02F135F8 0x00000050 0x02F135E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    108 010294 0x02F13698 0x00000050 0x02F13688 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    109 010298 0x02F13738 0x00000050 0x02F13728 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    110 010440 0x02F14280 0x00000050 0x02F14270 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    111 010439 0x02F14B58 0x0000003C 0x02F14B48 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    112 010445 0x02F15490 0x00000050 0x02F15480 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    113 010449 0x02F15530 0x00000050 0x02F15520 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    114 010453 0x02F155D0 0x00000050 0x02F155C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    115 010457 0x02F15670 0x0000003C 0x02F15660 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    116 010458 0x02F15800 0x00000050 0x02F157F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    117 010463 0x02F158A0 0x00000050 0x02F15890 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    118 010467 0x02F15940 0x00000050 0x02F15930 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    119 010471 0x02F159E0 0x00000050 0x02F159D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    120 028606 0x02F1E810 0x00000034 0x02F1E800 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    121 009763 0x02F1EC90 0x00000050 0x02F1EC80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    122 009927 0x02F23BE0 0x00000050 0x02F23BD0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    123 009932 0x02F23D10 0x00000050 0x02F23D00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    124 009936 0x02F23DB0 0x00000050 0x02F23DA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    125 009940 0x02F23E50 0x00000050 0x02F23E40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    126 009944 0x02F23EF0 0x00000050 0x02F23EE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    127 009948 0x02F23F90 0x00000050 0x02F23F80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    128 009952 0x02F24030 0x0000003C 0x02F24020 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    129 009953 0x02F240B8 0x00000050 0x02F240A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    130 009958 0x02F241B0 0x00000050 0x02F241A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    131 009962 0x02F24250 0x00000050 0x02F24240 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    132 009966 0x02F24340 0x00000050 0x02F24330 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    133 009970 0x02F243E0 0x00000050 0x02F243D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    134 009974 0x02F24480 0x00000050 0x02F24470 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    135 009978 0x02F24520 0x00000050 0x02F24510 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    136 009926 0x02F28B48 0x0000003C 0x02F28B38 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    137 028674 0x02F28BD0 0x000000D4 0x02F28BC0 0x000000F4 0x00000000 new         N       N    ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 
    138 028675 0x02F28CF0 0x00000034 0x02F28CE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    139 010612 0x02F2A678 0x0000003C 0x02F2A668 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    140 010613 0x02F2A700 0x00000050 0x02F2A6F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    141 010618 0x02F2A7F0 0x00000050 0x02F2A7E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    142 010622 0x02F2A890 0x00000050 0x02F2A880 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    143 010626 0x02F2A930 0x00000050 0x02F2A920 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    144 010630 0x02F2A9D0 0x0000003C 0x02F2A9C0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    145 010631 0x02F2AA58 0x00000050 0x02F2AA48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    146 010636 0x02F2AB50 0x00000050 0x02F2AB40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    147 010640 0x02F2ABF0 0x00000050 0x02F2ABE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    148 010644 0x02F2AC90 0x00000050 0x02F2AC80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    149 010086 0x02F386D0 0x00000050 0x02F386C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    150 010085 0x02F38FB0 0x0000003C 0x02F38FA0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    151 011129 0x02F4D708 0x0000003C 0x02F4D6F8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    152 011130 0x02F4D790 0x00000050 0x02F4D780 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    153 011135 0x02F4DD10 0x00000050 0x02F4DD00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    154 028608 0x02F4FBD8 0x00000104 0x02F4FBC8 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight 
    155 028605 0x02F66018 0x00000018 0x02F66008 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    156 028609 0x02F69918 0x00000034 0x02F69908 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    157 012163 0x02F6B698 0x00000050 0x02F6B688 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    158 012153 0x02F6BD60 0x0000003C 0x02F6BD50 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    159 012154 0x02F6BDE8 0x00000050 0x02F6BDD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    160 012159 0x02F6BF68 0x00000050 0x02F6BF58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    161 012167 0x02F6D020 0x00000050 0x02F6D010 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    162 012364 0x02F6DE48 0x0000003C 0x02F6DE38 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    163 012333 0x02F6DED8 0x00000050 0x02F6DEC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    164 012338 0x02F6DF78 0x00000050 0x02F6DF68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    165 012342 0x02F6E0A8 0x00000050 0x02F6E098 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    166 012346 0x02F6E148 0x00000050 0x02F6E138 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    167 012350 0x02F6E1E8 0x00000050 0x02F6E1D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    168 012354 0x02F6E288 0x0000003C 0x02F6E278 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    169 012332 0x02F6FA60 0x0000003C 0x02F6FA50 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    170 012355 0x02F70018 0x00000050 0x02F70008 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    171 012360 0x02F700B8 0x00000050 0x02F700A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    172 012365 0x02F70158 0x00000050 0x02F70148 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    173 012370 0x02F701F8 0x00000050 0x02F701E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    174 012374 0x02F70298 0x00000050 0x02F70288 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    175 013155 0x02F835D0 0x0000003C 0x02F835C0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    176 013156 0x02F83C48 0x00000050 0x02F83C38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    177 013161 0x02F83CE8 0x00000050 0x02F83CD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    178 013165 0x02F83D88 0x00000050 0x02F83D78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    179 013169 0x02F83E28 0x00000050 0x02F83E18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    180 013173 0x02F83EC8 0x0000003C 0x02F83EB8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    181 013174 0x02F83F50 0x00000050 0x02F83F40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    182 013191 0x02F84048 0x0000003C 0x02F84038 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    183 013179 0x02F840D8 0x00000050 0x02F840C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    184 013183 0x02F84178 0x00000050 0x02F84168 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    185 013187 0x02F84218 0x00000050 0x02F84208 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    186 013192 0x02F842B8 0x00000050 0x02F842A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    187 013197 0x02F84358 0x00000050 0x02F84348 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    188 013201 0x02F843F8 0x00000050 0x02F843E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    189 013205 0x02F84598 0x00000050 0x02F84588 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    190 013209 0x02F84688 0x00000050 0x02F84678 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    191 013213 0x02F84778 0x00000050 0x02F84768 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    192 013217 0x02F84818 0x00000050 0x02F84808 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    193 028647 0x02F8CD90 0x00000018 0x02F8CD80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    194 028585 0x02FABA10 0x00000234 0x02FABA00 0x00000254 0x00000000 new         N       N    ??(0) ?? 
    195 014222 0x02FAC070 0x00000050 0x02FAC060 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    196 014226 0x02FAC110 0x00000050 0x02FAC100 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    197 014234 0x02FAC210 0x00000050 0x02FAC200 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    198 014238 0x02FAC370 0x00000050 0x02FAC360 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    199 014230 0x02FBAD78 0x00000050 0x02FBAD68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    200 014216 0x02FBAE28 0x0000003C 0x02FBAE18 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    201 014217 0x02FBAEB0 0x00000050 0x02FBAEA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    202 014784 0x02FC2FC0 0x0000003C 0x02FC2FB0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    203 014785 0x02FC30E0 0x00000050 0x02FC30D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    204 014790 0x02FC3180 0x00000050 0x02FC3170 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    205 014794 0x02FC3220 0x00000050 0x02FC3210 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    206 014798 0x02FC32C0 0x00000050 0x02FC32B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    207 014802 0x02FC3360 0x0000003C 0x02FC3350 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    208 014803 0x02FC33E8 0x00000050 0x02FC33D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    209 014808 0x02FC3570 0x00000050 0x02FC3560 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    210 014812 0x02FC3610 0x00000050 0x02FC3600 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    211 014816 0x02FC36B0 0x00000050 0x02FC36A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    212 015203 0x02FC4190 0x00000050 0x02FC4180 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    213 015207 0x02FC4230 0x00000050 0x02FC4220 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    214 015211 0x02FC42D0 0x00000050 0x02FC42C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    215 015216 0x02FC4370 0x00000050 0x02FC4360 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    216 015221 0x02FC4410 0x00000050 0x02FC4400 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    217 015225 0x02FC44B0 0x00000050 0x02FC44A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    218 015229 0x02FC4550 0x00000050 0x02FC4540 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    219 015233 0x02FC45F0 0x00000050 0x02FC45E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    220 015237 0x02FC4690 0x00000050 0x02FC4680 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    221 015241 0x02FC4730 0x0000003C 0x02FC4720 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    222 015242 0x02FC47B8 0x00000050 0x02FC47A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    223 015287 0x02FC48B0 0x0000003C 0x02FC48A0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    224 015247 0x02FC4940 0x00000050 0x02FC4930 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    225 015251 0x02FC49E0 0x00000050 0x02FC49D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    226 015255 0x02FC4A80 0x00000050 0x02FC4A70 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    227 015259 0x02FC4B20 0x00000050 0x02FC4B10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    228 015263 0x02FC4BC0 0x00000050 0x02FC4BB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    229 015267 0x02FC4C60 0x00000050 0x02FC4C50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    230 015271 0x02FC4D00 0x00000050 0x02FC4CF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    231 015275 0x02FC4DA0 0x00000050 0x02FC4D90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    232 015279 0x02FC4E40 0x00000050 0x02FC4E30 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    233 015283 0x02FC4EE0 0x00000050 0x02FC4ED0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    234 015288 0x02FC4F80 0x00000050 0x02FC4F70 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    235 015293 0x02FC5080 0x00000050 0x02FC5070 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    236 015297 0x02FC5120 0x00000050 0x02FC5110 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    237 015301 0x02FC51C0 0x00000050 0x02FC51B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    238 015305 0x02FC5260 0x00000050 0x02FC5250 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    239 015309 0x02FC5300 0x00000050 0x02FC52F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    240 015313 0x02FC53A0 0x00000050 0x02FC5390 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    241 015317 0x02FC5440 0x00000050 0x02FC5430 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    242 015321 0x02FC54E0 0x00000050 0x02FC54D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    243 015325 0x02FC5580 0x00000050 0x02FC5570 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    244 015329 0x02FC5620 0x00000050 0x02FC5610 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    245 015189 0x02FD7650 0x0000003C 0x02FD7640 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    246 015190 0x02FD7DA8 0x00000050 0x02FD7D98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    247 015215 0x02FD7E48 0x0000003C 0x02FD7E38 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    248 015195 0x02FD7ED8 0x00000050 0x02FD7EC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    249 015199 0x02FD7F78 0x00000050 0x02FD7F68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    250 016102 0x02FEE218 0x0000003C 0x02FEE208 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    251 016103 0x02FEE2A0 0x00000050 0x02FEE290 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    252 016108 0x02FEE420 0x00000050 0x02FEE410 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    253 016112 0x02FEE4C0 0x00000050 0x02FEE4B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    254 028649 0x02FFAC28 0x00000034 0x02FFAC18 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    255 025561 0x03063E18 0x000001F8 0x03063E08 0x00000218 0x00000000 new         N       N    ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 
    256 025562 0x03064060 0x0000000C 0x03064050 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    257 025563 0x030640B8 0x00000018 0x030640A8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    258 025564 0x03064120 0x0000000C 0x03064110 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    259 025565 0x03064178 0x00000018 0x03064168 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    260 025566 0x030641E0 0x00000018 0x030641D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    261 025567 0x03064248 0x00000034 0x03064238 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    262 025568 0x030642C8 0x00000034 0x030642B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    263 025569 0x03064348 0x00000018 0x03064338 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    264 025570 0x030643B0 0x00000008 0x030643A0 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
    265 025571 0x03064408 0x00000018 0x030643F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    266 025572 0x03064470 0x00000018 0x03064460 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    267 025573 0x030644D8 0x00000018 0x030644C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    268 025574 0x03064540 0x00000018 0x03064530 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    269 025575 0x030645A8 0x00000018 0x03064598 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    270 025576 0x03064610 0x00000018 0x03064600 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    271 025577 0x03064678 0x00000018 0x03064668 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    272 025578 0x030646E0 0x00000018 0x030646D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    273 025579 0x03064748 0x00000018 0x03064738 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    274 025580 0x030647B0 0x00000018 0x030647A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    275 025581 0x03064818 0x00000018 0x03064808 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    276 025582 0x03064880 0x00000018 0x03064870 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    277 025583 0x030648E8 0x00000018 0x030648D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    278 025584 0x03064950 0x00000018 0x03064940 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    279 025585 0x030649B8 0x00000018 0x030649A8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    280 025586 0x03064A20 0x00000018 0x03064A10 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    281 025587 0x03064A88 0x00000018 0x03064A78 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    282 025588 0x03064AF0 0x00000018 0x03064AE0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    283 025589 0x03064B58 0x00000018 0x03064B48 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    284 025590 0x03064BC0 0x00000018 0x03064BB0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    285 025591 0x03064C28 0x00000018 0x03064C18 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    286 025592 0x03064C90 0x00000018 0x03064C80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    287 025593 0x03064CF8 0x00000018 0x03064CE8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    288 025594 0x03064D60 0x00000018 0x03064D50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    289 025595 0x03064DC8 0x000000A0 0x03064DB8 0x000000C0 0x00000000 new         N       N    ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 
    290 025596 0x03064EB8 0x00000034 0x03064EA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    291 025597 0x03064F38 0x00000034 0x03064F28 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    292 025598 0x03064FB8 0x00000034 0x03064FA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    293 025599 0x03065038 0x00000034 0x03065028 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    294 025600 0x030650B8 0x00000034 0x030650A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    295 025601 0x03065138 0x00000034 0x03065128 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    296 025602 0x030651B8 0x00000034 0x030651A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    297 025603 0x03065238 0x00000034 0x03065228 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    298 025604 0x030652B8 0x00000034 0x030652A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    299 025605 0x03065338 0x00000034 0x03065328 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    300 025606 0x030653B8 0x00000034 0x030653A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    301 025607 0x03065438 0x00000034 0x03065428 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    302 025608 0x030654B8 0x00000034 0x030654A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    303 025609 0x03065538 0x0000000C 0x03065528 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    304 025610 0x03065590 0x000000A0 0x03065580 0x000000C0 0x00000000 new         N       N    ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 
    305 025611 0x03065680 0x00000034 0x03065670 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    306 025612 0x03065700 0x00000034 0x030656F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    307 025613 0x03065780 0x00000034 0x03065770 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    308 025614 0x03065800 0x00000034 0x030657F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    309 025615 0x03065880 0x00000034 0x03065870 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    310 025616 0x03065900 0x00000034 0x030658F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    311 025617 0x03065980 0x00000034 0x03065970 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    312 025618 0x03065A00 0x00000034 0x030659F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    313 025619 0x03065A80 0x00000034 0x03065A70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    314 025620 0x03065B00 0x00000034 0x03065AF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    315 025621 0x03065B80 0x00000034 0x03065B70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    316 025622 0x03065C00 0x00000034 0x03065BF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    317 025623 0x03065C80 0x00000034 0x03065C70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    318 025624 0x03065D00 0x0000000C 0x03065CF0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    319 025625 0x03065D58 0x000000A4 0x03065D48 0x000000C4 0x00000000 new         N       N    ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 
    320 025626 0x03065E48 0x00000034 0x03065E38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    321 025627 0x03065EC8 0x00000034 0x03065EB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    322 025628 0x03065F48 0x00000034 0x03065F38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    323 025629 0x03065FC8 0x00000034 0x03065FB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    324 025630 0x03066048 0x00000034 0x03066038 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    325 025631 0x030660C8 0x00000034 0x030660B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    326 025632 0x03066148 0x00000034 0x03066138 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    327 025633 0x030661C8 0x00000034 0x030661B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    328 025634 0x03066248 0x00000034 0x03066238 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    329 025635 0x030662C8 0x00000034 0x030662B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    330 025636 0x03066348 0x00000034 0x03066338 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    331 025637 0x030663C8 0x00000034 0x030663B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    332 025638 0x03066448 0x00000034 0x03066438 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    333 025640 0x030664C8 0x0000000C 0x030664B8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    334 025639 0x03066568 0x00000034 0x03066558 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    335 025641 0x03066638 0x0000009C 0x03066628 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 
    336 025642 0x03066720 0x00000034 0x03066710 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    337 025643 0x030667A0 0x00000034 0x03066790 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    338 025644 0x03066820 0x00000034 0x03066810 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    339 025651 0x030668A0 0x00000034 0x03066890 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    340 025645 0x03066940 0x00000034 0x03066930 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    341 025646 0x03066A10 0x00000034 0x03066A00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    342 025647 0x03066AE0 0x00000034 0x03066AD0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    343 025648 0x03066BB0 0x00000034 0x03066BA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    344 025649 0x03066C80 0x00000034 0x03066C70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    345 025650 0x03066D50 0x00000034 0x03066D40 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    346 025652 0x03066E20 0x00000034 0x03066E10 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    347 025653 0x03066EA0 0x00000034 0x03066E90 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    348 025655 0x03066F20 0x0000000C 0x03066F10 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    349 025654 0x03066FC0 0x00000034 0x03066FB0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    350 025656 0x03067090 0x00000084 0x03067080 0x000000A4 0x00000000 new         N       N    ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 
    351 025657 0x03067160 0x00000034 0x03067150 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    352 025661 0x030671E0 0x0000000C 0x030671D0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    353 025658 0x03067280 0x00000034 0x03067270 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    354 025659 0x03067350 0x00000034 0x03067340 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    355 025660 0x03067420 0x00000034 0x03067410 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    356 025662 0x030674F0 0x000000E8 0x030674E0 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 
    357 025663 0x03067628 0x00000034 0x03067618 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    358 025664 0x030676F8 0x00000034 0x030676E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    359 025668 0x03067778 0x00000034 0x03067768 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    360 025665 0x03067818 0x00000034 0x03067808 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    361 025666 0x030678E8 0x00000034 0x030678D8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    362 025667 0x030679B8 0x00000034 0x030679A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    363 025670 0x03067A88 0x0000000C 0x03067A78 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    364 025669 0x03067B28 0x00000034 0x03067B18 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    365 025671 0x03067BF8 0x00000044 0x03067BE8 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 
    366 025672 0x03067C88 0x00000034 0x03067C78 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    367 025673 0x03067D58 0x00000034 0x03067D48 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    368 025674 0x03067DD8 0x0000000C 0x03067DC8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    369 025675 0x03067E30 0x00000044 0x03067E20 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 
    370 025676 0x03067EC0 0x00000034 0x03067EB0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    371 025677 0x03067F40 0x00000034 0x03067F30 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    372 025678 0x03067FC0 0x0000000C 0x03067FB0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    373 025679 0x03068018 0x000000D8 0x03068008 0x000000F8 0x00000000 new         N       N    ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 
    374 025680 0x03068140 0x00000034 0x03068130 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    375 025681 0x030681C0 0x00000034 0x030681B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    376 025682 0x03068240 0x00000034 0x03068230 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    377 025683 0x030682C0 0x00000034 0x030682B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    378 025684 0x03068340 0x00000034 0x03068330 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    379 025685 0x030683C0 0x00000034 0x030683B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    380 025686 0x03068440 0x00000034 0x03068430 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    381 025687 0x030684C0 0x00000034 0x030684B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    382 025688 0x03068540 0x00000034 0x03068530 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    383 025689 0x030685C0 0x00000034 0x030685B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    384 025690 0x03068640 0x00000034 0x03068630 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    385 025691 0x030686C0 0x0000000C 0x030686B0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    386 025692 0x03068718 0x0000009C 0x03068708 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 
    387 025693 0x03068800 0x00000034 0x030687F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    388 025694 0x03068880 0x00000034 0x03068870 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    389 025695 0x03068900 0x00000034 0x030688F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    390 025696 0x03068980 0x00000034 0x03068970 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    391 025697 0x03068A00 0x00000034 0x030689F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    392 025698 0x03068A80 0x00000034 0x03068A70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    393 025700 0x03068B00 0x00000034 0x03068AF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    394 025699 0x03068BA0 0x00000034 0x03068B90 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    395 025701 0x03068C70 0x00000034 0x03068C60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    396 025702 0x03068CF0 0x00000034 0x03068CE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    397 025704 0x03068D70 0x0000000C 0x03068D60 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    398 025703 0x03068E10 0x00000034 0x03068E00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    399 026744 0x030C1F00 0x0000000C 0x030C1EF0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    400 026447 0x030C2A78 0x00000018 0x030C2A68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    401 026470 0x030C2B50 0x000000C4 0x030C2B40 0x000000E4 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(105) OgreDistanceCubeMapRenderTechniqueFacto 
    402 026471 0x030C2CB0 0x00000110 0x030C2CA0 0x00000130 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(57) OgreCubeMapRenderTechnique::createCubeM 
    403 026472 0x030C2F00 0x00000034 0x030C2EF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    404 026854 0x030CA398 0x00000004 0x030CA388 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    405 026590 0x030CA5B8 0x00000018 0x030CA5A8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    406 026615 0x030CA690 0x000000C8 0x030CA680 0x000000E8 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(114) OgreConvoledCubeMapRenderTechniqueFacto 
    407 026616 0x030CA7A8 0x000000C0 0x030CA798 0x000000E0 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(72) OgreConvolvedCubeMapRenderTechnique::cr 
    408 026617 0x030CA8B8 0x00000034 0x030CA8A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    409 026736 0x030CDFE0 0x0000000C 0x030CDFD0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    410 026297 0x030CFFC8 0x00000020 0x030CFFB8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    411 026735 0x030D1DA8 0x00000018 0x030D1D98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    412 026737 0x030D27C8 0x000000C4 0x030D27B8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    413 026740 0x030D28D8 0x00000104 0x030D28C8 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 
    414 026741 0x030D2A28 0x00000018 0x030D2A18 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    415 026742 0x030D2A90 0x00000018 0x030D2A80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    416 026743 0x030D2AF8 0x00000034 0x030D2AE8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    417 026746 0x030D2B78 0x00000018 0x030D2B68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    418 026758 0x030D2BE0 0x000000E4 0x030D2BD0 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    419 027061 0x030D2D10 0x00000004 0x030D2D00 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    420 027035 0x030D3FC8 0x0000000C 0x030D3FB8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    421 026959 0x030D4B78 0x000000C4 0x030D4B68 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    422 026963 0x030D4CE0 0x00000018 0x030D4CD0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    423 026975 0x030D4D48 0x000000E4 0x030D4D38 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    424 027270 0x030D4E78 0x00000004 0x030D4E68 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    425 026739 0x030E5FC8 0x00000020 0x030E5FB8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    426 026828 0x030E6BC0 0x0000000C 0x030E6BB0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    427 026855 0x030EAA88 0x000000C4 0x030EAA78 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    428 026857 0x030EAB98 0x00000020 0x030EAB88 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    429 026859 0x030EAC08 0x00000018 0x030EABF8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    430 026871 0x030EAC70 0x000000E4 0x030EAC60 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    431 026958 0x030EADA0 0x00000004 0x030EAD90 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    432 026961 0x030EADF0 0x00000020 0x030EADE0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    433 026932 0x030EB118 0x0000000C 0x030EB108 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    434 028699 0x030EEC60 0x00000018 0x030EEC50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    435 027062 0x030EF878 0x000000C4 0x030EF868 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    436 027064 0x030EF988 0x00000020 0x030EF978 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    437 027066 0x030EF9F8 0x00000018 0x030EF9E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    438 027078 0x030EFA60 0x000000E4 0x030EFA50 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    439 027166 0x030EFB90 0x00000004 0x030EFB80 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    440 027169 0x030EFBE0 0x00000020 0x030EFBD0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    441 027167 0x030F2268 0x000000C4 0x030F2258 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    442 027379 0x030F2378 0x00000018 0x030F2368 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    443 027171 0x030F23E0 0x00000018 0x030F23D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    444 027183 0x030F2448 0x000000E4 0x030F2438 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    445 027374 0x030F2578 0x00000004 0x030F2568 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    446 027244 0x030F2890 0x0000000C 0x030F2880 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    447 026296 0x030F3FC0 0x000000C4 0x030F3FB0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    448 026298 0x030F40D0 0x00000104 0x030F40C0 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 
    449 026299 0x030F4220 0x00000018 0x030F4210 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    450 026300 0x030F4288 0x00000018 0x030F4278 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    451 026301 0x030F42F0 0x00000034 0x030F42E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    452 026302 0x030F4370 0x0000000C 0x030F4360 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    453 026303 0x030F43C8 0x00000004 0x030F43B8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    454 026304 0x030F4418 0x00000018 0x030F4408 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    455 026325 0x030F4480 0x000000C4 0x030F4470 0x000000E4 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(100) OgreColorCubeMapRenderTechniqueFactory: 
    456 026326 0x030F4590 0x00000110 0x030F4580 0x00000130 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(57) OgreCubeMapRenderTechnique::createCubeM 
    457 026327 0x030F4790 0x00000034 0x030F4780 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    458 027140 0x030FDCF8 0x0000000C 0x030FDCE8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    459 027273 0x030FFFB0 0x00000020 0x030FFFA0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    460 027271 0x03320FF8 0x000000C4 0x03320FE8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    461 027274 0x03321108 0x00000018 0x033210F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    462 027286 0x03321170 0x000000E4 0x03321160 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    463 027479 0x033212A0 0x00000004 0x03321290 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    464 027348 0x03322398 0x0000000C 0x03322388 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    465 027375 0x03323CC8 0x000000C4 0x03323CB8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    466 027377 0x03323DD8 0x00000020 0x03323DC8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    467 027689 0x03323E48 0x00000018 0x03323E38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    468 027391 0x03323EB8 0x000000E4 0x03323EA8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    469 027582 0x03323FE8 0x00000004 0x03323FD8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    470 027453 0x033250E0 0x0000000C 0x033250D0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    471 027480 0x03326A10 0x000000C4 0x03326A00 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    472 027482 0x03326B20 0x00000020 0x03326B10 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    473 027483 0x03326B90 0x00000018 0x03326B80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    474 027495 0x03326BF8 0x000000E4 0x03326BE8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    475 027684 0x03326D28 0x00000004 0x03326D18 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    476 027556 0x0332ECA0 0x0000000C 0x0332EC90 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    477 027658 0x03330820 0x0000000C 0x03330810 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    478 027583 0x033313D0 0x000000C4 0x033313C0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    479 027585 0x033314E0 0x00000020 0x033314D0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    480 027586 0x03331550 0x00000018 0x03331540 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    481 027598 0x033315B8 0x000000E4 0x033315A8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    482 027789 0x033316E8 0x00000004 0x033316D8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    483 027685 0x03334128 0x000000C4 0x03334118 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    484 027687 0x03334238 0x00000020 0x03334228 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    485 027688 0x033342A8 0x00000034 0x03334298 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    486 027701 0x03334328 0x000000E4 0x03334318 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    487 027892 0x03334458 0x00000004 0x03334448 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    488 027763 0x03335550 0x0000000C 0x03335540 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    489 027790 0x03336E80 0x000000C4 0x03336E70 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    490 027792 0x03336F90 0x00000020 0x03336F80 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    491 027793 0x03337000 0x00000018 0x03336FF0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    492 027805 0x03337068 0x000000E4 0x03337058 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    493 027994 0x03337198 0x00000004 0x03337188 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    494 027866 0x033374B0 0x0000000C 0x033374A0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    495 027968 0x03339038 0x0000000C 0x03339028 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    496 027893 0x03341848 0x000000C4 0x03341838 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    497 027895 0x03341958 0x00000020 0x03341948 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    498 027896 0x033419C8 0x00000018 0x033419B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    499 027908 0x03341A30 0x000000E4 0x03341A20 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    500 028948 0x033536C0 0x00000220 0x033536B0 0x00000240 0x00000000 new         N       N    ogrerenderingrun.cpp(204) OgreRenderingRun::renderFullscreenQuad 
     11007332 0x021AA848 0x00000050 0x021AA838 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     12007326 0x021AB2E8 0x0000003C 0x021AB2D8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     13007327 0x021AB380 0x00000050 0x021AB370 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     14007344 0x021AB4F0 0x00000050 0x021AB4E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     15007336 0x021AB690 0x00000050 0x021AB680 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     16007340 0x021AB7B0 0x00000050 0x021AB7A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     17007348 0x021AB930 0x00000050 0x021AB920 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     18007456 0x021AB9E0 0x00000050 0x021AB9D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     19007450 0x021ABB10 0x0000003C 0x021ABB00 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     20007451 0x021AE420 0x00000050 0x021AE410 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     21007468 0x021AE4D0 0x00000050 0x021AE4C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     22007460 0x021AE670 0x00000050 0x021AE660 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     23007464 0x021AE790 0x00000050 0x021AE780 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     24007472 0x021AE910 0x00000050 0x021AE900 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     25007673 0x021AF728 0x00000050 0x021AF718 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     26007659 0x021AF888 0x0000003C 0x021AF878 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     27007660 0x021B9DB0 0x00000050 0x021B9DA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     28007665 0x021B9F60 0x00000050 0x021B9F50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     29007669 0x021BA070 0x00000050 0x021BA060 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     30007677 0x021BA190 0x00000050 0x021BA180 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     31007681 0x021BA330 0x00000050 0x021BA320 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     32007996 0x021BEA18 0x00000050 0x021BEA08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     33007990 0x021BEB78 0x0000003C 0x021BEB68 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     34007991 0x021C1448 0x00000050 0x021C1438 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     35008008 0x021C1558 0x00000050 0x021C1548 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     36008000 0x021C16F8 0x00000050 0x021C16E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     37008004 0x021C1818 0x00000050 0x021C1808 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     38008012 0x021C1998 0x00000050 0x021C1988 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     39009251 0x02F16388 0x00000050 0x02F16378 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     40009255 0x02F16438 0x00000050 0x02F16428 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     41009265 0x02F164E8 0x00000050 0x02F164D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     42009259 0x02F165A8 0x0000003C 0x02F16598 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     43009260 0x02F16640 0x00000050 0x02F16630 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     44009273 0x02F16758 0x00000050 0x02F16748 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     45009269 0x02F168F8 0x00000050 0x02F168E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     46009277 0x02F169A8 0x00000050 0x02F16998 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     47009281 0x02F16A58 0x00000050 0x02F16A48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     48009285 0x02F16B08 0x00000050 0x02F16AF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     49009245 0x02F179D8 0x0000003C 0x02F179C8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     50009246 0x02F17A70 0x00000050 0x02F17A60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     51009491 0x02F19308 0x00000050 0x02F192F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     52009496 0x02F19418 0x00000050 0x02F19408 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     53009500 0x02F194C8 0x00000050 0x02F194B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     54009504 0x02F19578 0x00000050 0x02F19568 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     55009508 0x02F19628 0x00000050 0x02F19618 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     56009512 0x02F196D8 0x00000050 0x02F196C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     57009522 0x02F19788 0x00000050 0x02F19778 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     58009516 0x02F19848 0x0000003C 0x02F19838 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     59009517 0x02F198E0 0x00000050 0x02F198D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     60009530 0x02F199F8 0x00000050 0x02F199E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     61009534 0x02F19BF8 0x00000050 0x02F19BE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     62009538 0x02F19CA8 0x00000050 0x02F19C98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     63009542 0x02F19D58 0x00000050 0x02F19D48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     64009712 0x02F1AF40 0x0000003C 0x02F1AF30 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     65009713 0x02F1AFD8 0x00000050 0x02F1AFC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     66009718 0x02F1BE88 0x00000050 0x02F1BE78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     67009722 0x02F1BF38 0x00000050 0x02F1BF28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     68009726 0x02F1BFE8 0x00000050 0x02F1BFD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     69009730 0x02F1C098 0x00000050 0x02F1C088 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     70009734 0x02F1C148 0x00000050 0x02F1C138 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     71009744 0x02F1C1F8 0x00000050 0x02F1C1E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     72009738 0x02F1C2B8 0x0000003C 0x02F1C2A8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     73009739 0x02F1C350 0x00000050 0x02F1C340 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     74009752 0x02F1C468 0x00000050 0x02F1C458 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     75009748 0x02F1C608 0x00000050 0x02F1C5F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     76009756 0x02F1C6B8 0x00000050 0x02F1C6A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     77009760 0x02F1C768 0x00000050 0x02F1C758 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     78009764 0x02F1C818 0x00000050 0x02F1C808 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     79009526 0x02F25060 0x00000050 0x02F25050 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     80009490 0x02F25EC8 0x0000003C 0x02F25EB8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     81010426 0x02F2E150 0x00000050 0x02F2E140 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     82010430 0x02F2E200 0x00000050 0x02F2E1F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     83010434 0x02F2E2B0 0x00000050 0x02F2E2A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     84010438 0x02F2E360 0x0000003C 0x02F2E350 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     85010439 0x02F2E3F8 0x00000050 0x02F2E3E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     86010444 0x02F2E510 0x00000050 0x02F2E500 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     87010448 0x02F2E5C0 0x00000050 0x02F2E5B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     88010452 0x02F2E670 0x00000050 0x02F2E660 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     89010593 0x02F30468 0x0000003C 0x02F30458 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     90010594 0x02F30500 0x00000050 0x02F304F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     91010599 0x02F30610 0x00000050 0x02F30600 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     92010603 0x02F306C0 0x00000050 0x02F306B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     93010607 0x02F30770 0x00000050 0x02F30760 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     94010611 0x02F30820 0x0000003C 0x02F30810 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     95010612 0x02F308B8 0x00000050 0x02F308A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     96010617 0x02F309D0 0x00000050 0x02F309C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     97010621 0x02F30A80 0x00000050 0x02F30A70 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     98010625 0x02F30B30 0x00000050 0x02F30B20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     99009907 0x02F3AFC8 0x0000003C 0x02F3AFB8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     100009933 0x02F3B068 0x0000003C 0x02F3B058 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     101009908 0x02F3B108 0x00000050 0x02F3B0F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     102009913 0x02F3B258 0x00000050 0x02F3B248 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     103009917 0x02F3B308 0x00000050 0x02F3B2F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     104009921 0x02F3B3B8 0x00000050 0x02F3B3A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     105009925 0x02F3B468 0x00000050 0x02F3B458 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     106009929 0x02F3B518 0x00000050 0x02F3B508 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     107009934 0x02F3B5C8 0x00000050 0x02F3B5B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     108009939 0x02F3B780 0x00000050 0x02F3B770 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     109009943 0x02F3B830 0x00000050 0x02F3B820 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     110009947 0x02F3B980 0x00000050 0x02F3B970 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     111009951 0x02F3BA30 0x00000050 0x02F3BA20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     112009955 0x02F3BAE0 0x00000050 0x02F3BAD0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     113009959 0x02F3BB90 0x00000050 0x02F3BB80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     114010066 0x02F3C730 0x0000003C 0x02F3C720 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     115010067 0x02F48930 0x00000050 0x02F48920 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     116010084 0x02F489E0 0x0000003C 0x02F489D0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     117010072 0x02F48A80 0x00000050 0x02F48A70 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     118010076 0x02F48B30 0x00000050 0x02F48B20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     119010080 0x02F48BE0 0x00000050 0x02F48BD0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     120010085 0x02F48C90 0x00000050 0x02F48C80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     121010090 0x02F48D40 0x00000050 0x02F48D30 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     122010094 0x02F48DF0 0x00000050 0x02F48DE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     123010098 0x02F48EA0 0x00000050 0x02F48E90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     124010247 0x02F4E270 0x0000003C 0x02F4E260 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     125010248 0x02F4E308 0x00000050 0x02F4E2F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     126010253 0x02F4E418 0x00000050 0x02F4E408 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     127010257 0x02F4E4C8 0x00000050 0x02F4E4B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     128010261 0x02F4E578 0x00000050 0x02F4E568 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     129010265 0x02F4E628 0x0000003C 0x02F4E618 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     130010266 0x02F4E6C0 0x00000050 0x02F4E6B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     131010271 0x02F4E7D8 0x00000050 0x02F4E7C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     132010275 0x02F4E888 0x00000050 0x02F4E878 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     133010279 0x02F4E938 0x00000050 0x02F4E928 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     134010421 0x02F53A90 0x00000050 0x02F53A80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     135010420 0x02F53ED8 0x0000003C 0x02F53EC8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     136011116 0x02F61478 0x00000050 0x02F61468 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     137011110 0x02F61BF0 0x0000003C 0x02F61BE0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     138011111 0x02F61C88 0x00000050 0x02F61C78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     139012134 0x02F81E30 0x0000003C 0x02F81E20 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     140012135 0x02F81EC8 0x00000050 0x02F81EB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     141012140 0x02F82038 0x00000050 0x02F82028 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     142012144 0x02F82148 0x00000050 0x02F82138 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     143012148 0x02F821F8 0x00000050 0x02F821E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     144012314 0x02F83A28 0x00000050 0x02F83A18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     145012319 0x02F83B38 0x00000050 0x02F83B28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     146012323 0x02F83C48 0x00000050 0x02F83C38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     147012327 0x02F83CF8 0x00000050 0x02F83CE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     148012331 0x02F83DA8 0x00000050 0x02F83D98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     149012335 0x02F83EB8 0x0000003C 0x02F83EA8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     150012336 0x02F83F50 0x00000050 0x02F83F40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     151012313 0x02F852A0 0x0000003C 0x02F85290 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     152012341 0x02F86038 0x00000050 0x02F86028 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     153012345 0x02F860E8 0x0000003C 0x02F860D8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     154012346 0x02F86180 0x00000050 0x02F86170 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     155012351 0x02F86298 0x00000050 0x02F86288 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     156012355 0x02F86348 0x00000050 0x02F86338 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     157013137 0x02F9B018 0x00000050 0x02F9B008 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     158013142 0x02F9B128 0x00000050 0x02F9B118 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     159013146 0x02F9B1D8 0x00000050 0x02F9B1C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     160013150 0x02F9B288 0x00000050 0x02F9B278 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     161013154 0x02F9B338 0x0000003C 0x02F9B328 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     162013155 0x02F9B3D0 0x00000050 0x02F9B3C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     163013160 0x02F9B4E8 0x00000050 0x02F9B4D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     164013164 0x02F9B598 0x00000050 0x02F9B588 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     165013168 0x02F9B648 0x00000050 0x02F9B638 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     166013172 0x02F9B6F8 0x0000003C 0x02F9B6E8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     167013173 0x02FA0038 0x00000050 0x02FA0028 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     168013178 0x02FA00E8 0x00000050 0x02FA00D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     169013182 0x02FA0198 0x00000050 0x02FA0188 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     170013186 0x02FA02A8 0x00000050 0x02FA0298 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     171013190 0x02FA0418 0x00000050 0x02FA0408 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     172013194 0x02FA0528 0x00000050 0x02FA0518 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     173013198 0x02FA05D8 0x00000050 0x02FA05C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     174013136 0x02FA2B80 0x0000003C 0x02FA2B70 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     175014207 0x02FC4578 0x00000050 0x02FC4568 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     176014211 0x02FC4708 0x00000050 0x02FC46F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     177014215 0x02FC4828 0x00000050 0x02FC4818 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     178014219 0x02FC48D8 0x00000050 0x02FC48C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     179014197 0x02FD3C08 0x0000003C 0x02FD3BF8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     180014198 0x02FD3CA0 0x00000050 0x02FD3C90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     181014203 0x02FD3E10 0x00000050 0x02FD3E00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     182014765 0x02FDC7F8 0x0000003C 0x02FDC7E8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     183014766 0x02FDC890 0x00000050 0x02FDC880 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     184014771 0x02FDC9A0 0x00000050 0x02FDC990 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     185014775 0x02FDCA50 0x00000050 0x02FDCA40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     186014779 0x02FDCB00 0x00000050 0x02FDCAF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     187014783 0x02FDCBB0 0x0000003C 0x02FDCBA0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     188014784 0x02FDCC48 0x00000050 0x02FDCC38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     189014789 0x02FDCD60 0x00000050 0x02FDCD50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     190014793 0x02FDCE10 0x00000050 0x02FDCE00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     191014797 0x02FDCEC0 0x00000050 0x02FDCEB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     192015176 0x02FDE468 0x00000050 0x02FDE458 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     193015180 0x02FDE518 0x00000050 0x02FDE508 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     194015184 0x02FDE5C8 0x00000050 0x02FDE5B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     195015188 0x02FDE678 0x00000050 0x02FDE668 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     196015192 0x02FDE728 0x00000050 0x02FDE718 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     197015196 0x02FDE7D8 0x0000003C 0x02FDE7C8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     198015197 0x02FDE870 0x00000050 0x02FDE860 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     199015202 0x02FDE988 0x00000050 0x02FDE978 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     200015206 0x02FDEA38 0x00000050 0x02FDEA28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     201015210 0x02FDEAE8 0x00000050 0x02FDEAD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     202015214 0x02FDEB98 0x00000050 0x02FDEB88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     203015218 0x02FDEC48 0x00000050 0x02FDEC38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     204015222 0x02FDECF8 0x0000003C 0x02FDECE8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     205015223 0x02FDED90 0x00000050 0x02FDED80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     206015228 0x02FDEEA8 0x00000050 0x02FDEE98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     207015232 0x02FDEF58 0x00000050 0x02FDEF48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     208015236 0x02FDF008 0x00000050 0x02FDEFF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     209015240 0x02FDF0B8 0x00000050 0x02FDF0A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     210015244 0x02FDF168 0x00000050 0x02FDF158 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     211015248 0x02FDF218 0x00000050 0x02FDF208 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     212015252 0x02FDF2C8 0x00000050 0x02FDF2B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     213015256 0x02FDF378 0x00000050 0x02FDF368 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     214015260 0x02FDF428 0x00000050 0x02FDF418 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     215015264 0x02FDF4D8 0x00000050 0x02FDF4C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     216015268 0x02FDF588 0x0000003C 0x02FDF578 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     217015269 0x02FDF620 0x00000050 0x02FDF610 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     218015274 0x02FDF740 0x00000050 0x02FDF730 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     219015278 0x02FDF7F0 0x00000050 0x02FDF7E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     220015282 0x02FDF8A0 0x00000050 0x02FDF890 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     221015286 0x02FDF950 0x00000050 0x02FDF940 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     222015290 0x02FDFA00 0x00000050 0x02FDF9F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     223015294 0x02FDFAB0 0x00000050 0x02FDFAA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     224015298 0x02FDFB60 0x00000050 0x02FDFB50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     225015302 0x02FDFC10 0x00000050 0x02FDFC00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     226015306 0x02FDFCC0 0x00000050 0x02FDFCB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     227015310 0x02FDFD70 0x00000050 0x02FDFD60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     228015170 0x02FF11A8 0x0000003C 0x02FF1198 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     229015171 0x02FF1938 0x00000050 0x02FF1928 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     230016083 0x0300B618 0x0000003C 0x0300B608 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     231016084 0x0300B6B0 0x00000050 0x0300B6A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     232016089 0x0300B820 0x00000050 0x0300B810 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     233016093 0x0300B930 0x00000050 0x0300B920 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     234025653 0x0308A4C8 0x000001F8 0x0308A4B8 0x00000218 0x00000000 new         N       N    ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 
     235025654 0x0308A720 0x0000000C 0x0308A710 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     236025655 0x0308A788 0x00000018 0x0308A778 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     237025656 0x0308A800 0x0000000C 0x0308A7F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     238025657 0x0308A868 0x00000018 0x0308A858 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     239025658 0x0308A8E0 0x00000018 0x0308A8D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     240025659 0x0308A958 0x00000034 0x0308A948 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     241025660 0x0308A9E8 0x00000034 0x0308A9D8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     242025661 0x0308AA78 0x00000018 0x0308AA68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     243025662 0x0308AAF0 0x00000008 0x0308AAE0 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
     244025663 0x0308AB58 0x00000018 0x0308AB48 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     245025664 0x0308ABD0 0x00000018 0x0308ABC0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     246025665 0x0308AC48 0x00000018 0x0308AC38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     247025666 0x0308ACC0 0x00000018 0x0308ACB0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     248025667 0x0308AD38 0x00000018 0x0308AD28 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     249025668 0x0308ADB0 0x00000018 0x0308ADA0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     250025669 0x0308AE28 0x00000018 0x0308AE18 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     251025670 0x0308AEA0 0x00000018 0x0308AE90 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     252025671 0x0308AF18 0x00000018 0x0308AF08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     253025672 0x0308AF90 0x00000018 0x0308AF80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     254025673 0x0308B008 0x00000018 0x0308AFF8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     255025674 0x0308B080 0x00000018 0x0308B070 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     256025675 0x0308B0F8 0x00000018 0x0308B0E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     257025676 0x0308B170 0x00000018 0x0308B160 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     258025677 0x0308B1E8 0x00000018 0x0308B1D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     259025678 0x0308B260 0x00000018 0x0308B250 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     260025679 0x0308B2D8 0x00000018 0x0308B2C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     261025680 0x0308B350 0x00000018 0x0308B340 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     262025681 0x0308B3C8 0x00000018 0x0308B3B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     263025682 0x0308B440 0x00000018 0x0308B430 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     264025683 0x0308B4B8 0x00000018 0x0308B4A8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     265025684 0x0308B530 0x00000018 0x0308B520 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     266025685 0x0308B5A8 0x00000018 0x0308B598 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     267025686 0x0308B620 0x00000018 0x0308B610 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     268025687 0x0308B698 0x000000A0 0x0308B688 0x000000C0 0x00000000 new         N       N    ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 
     269025688 0x0308B798 0x00000034 0x0308B788 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     270025689 0x0308B828 0x00000034 0x0308B818 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     271025690 0x0308B8B8 0x00000034 0x0308B8A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     272025691 0x0308B948 0x00000034 0x0308B938 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     273025692 0x0308B9D8 0x00000034 0x0308B9C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     274025693 0x0308BA68 0x00000034 0x0308BA58 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     275025694 0x0308BAF8 0x00000034 0x0308BAE8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     276025695 0x0308BB88 0x00000034 0x0308BB78 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     277025696 0x0308BC18 0x00000034 0x0308BC08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     278025697 0x0308BCA8 0x00000034 0x0308BC98 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     279025698 0x0308BD38 0x00000034 0x0308BD28 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     280025699 0x0308BDC8 0x00000034 0x0308BDB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     281025700 0x0308BE58 0x00000034 0x0308BE48 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     282025701 0x0308BEE8 0x0000000C 0x0308BED8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     283025703 0x0308BF50 0x00000034 0x0308BF40 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     284025702 0x0308E010 0x000000A0 0x0308E000 0x000000C0 0x00000000 new         N       N    ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 
     285025704 0x0308E110 0x00000034 0x0308E100 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     286025705 0x0308E1A0 0x00000034 0x0308E190 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     287025706 0x0308E230 0x00000034 0x0308E220 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     288025707 0x0308E2C0 0x00000034 0x0308E2B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     289025708 0x0308E350 0x00000034 0x0308E340 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     290025709 0x0308E3E0 0x00000034 0x0308E3D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     291025710 0x0308E470 0x00000034 0x0308E460 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     292025711 0x0308E500 0x00000034 0x0308E4F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     293025712 0x0308E590 0x00000034 0x0308E580 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     294025713 0x0308E620 0x00000034 0x0308E610 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     295025714 0x0308E6B0 0x00000034 0x0308E6A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     296025715 0x0308E740 0x00000034 0x0308E730 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     297025716 0x0308E7D0 0x0000000C 0x0308E7C0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     298025717 0x0308E838 0x000000A4 0x0308E828 0x000000C4 0x00000000 new         N       N    ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 
     299025718 0x0308E938 0x00000034 0x0308E928 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     300025719 0x0308E9C8 0x00000034 0x0308E9B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     301025720 0x0308EA58 0x00000034 0x0308EA48 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     302025721 0x0308EAE8 0x00000034 0x0308EAD8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     303025722 0x0308EB78 0x00000034 0x0308EB68 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     304025723 0x03096848 0x00000034 0x03096838 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     305025724 0x030968D8 0x00000034 0x030968C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     306025725 0x03096968 0x00000034 0x03096958 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     307025726 0x030969F8 0x00000034 0x030969E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     308025727 0x03096A88 0x00000034 0x03096A78 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     309025728 0x03096B18 0x00000034 0x03096B08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     310025729 0x03096BA8 0x00000034 0x03096B98 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     311025730 0x03096C38 0x00000034 0x03096C28 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     312025732 0x03096CC8 0x0000000C 0x03096CB8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     313025731 0x03096D88 0x00000034 0x03096D78 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     314025733 0x03096E78 0x0000009C 0x03096E68 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 
     315025734 0x03096F70 0x00000034 0x03096F60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     316025735 0x03097000 0x00000034 0x03096FF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     317025736 0x03097090 0x00000034 0x03097080 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     318025743 0x03097120 0x00000034 0x03097110 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     319025737 0x030971E0 0x00000034 0x030971D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     320025738 0x030972D0 0x00000034 0x030972C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     321025739 0x030973C0 0x00000034 0x030973B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     322025740 0x030974B0 0x00000034 0x030974A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     323025741 0x030975A0 0x00000034 0x03097590 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     324025742 0x03097690 0x00000034 0x03097680 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     325025744 0x03097780 0x00000034 0x03097770 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     326025745 0x03097810 0x00000034 0x03097800 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     327025747 0x030978A0 0x0000000C 0x03097890 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     328025746 0x03097960 0x00000034 0x03097950 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     329025748 0x03097A50 0x00000084 0x03097A40 0x000000A4 0x00000000 new         N       N    ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 
     330025749 0x03097B30 0x00000034 0x03097B20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     331025753 0x03097BC0 0x0000000C 0x03097BB0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     332025750 0x03097C80 0x00000034 0x03097C70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     333025751 0x03097D70 0x00000034 0x03097D60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     334025752 0x03097E60 0x00000034 0x03097E50 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     335025754 0x03097F50 0x000000E8 0x03097F40 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 
     336025755 0x03098098 0x00000034 0x03098088 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     337025756 0x03098188 0x00000034 0x03098178 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     338025760 0x03098218 0x00000034 0x03098208 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     339025757 0x030982D8 0x00000034 0x030982C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     340025758 0x030983C8 0x00000034 0x030983B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     341025759 0x030984B8 0x00000034 0x030984A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     342025762 0x030985A8 0x0000000C 0x03098598 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     343025761 0x03098668 0x00000034 0x03098658 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     344025763 0x03098758 0x00000044 0x03098748 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 
     345025764 0x030987F8 0x00000034 0x030987E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     346025765 0x030988E8 0x00000034 0x030988D8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     347025766 0x03098978 0x0000000C 0x03098968 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     348025767 0x030989E0 0x00000044 0x030989D0 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 
     349025768 0x03098A80 0x00000034 0x03098A70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     350025769 0x03098B10 0x00000034 0x03098B00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     351025770 0x03098BA0 0x0000000C 0x03098B90 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     352025771 0x03098C08 0x000000D8 0x03098BF8 0x000000F8 0x00000000 new         N       N    ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 
     353025772 0x03098D40 0x00000034 0x03098D30 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     354025773 0x03098DD0 0x00000034 0x03098DC0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     355025774 0x03098E60 0x00000034 0x03098E50 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     356025775 0x03098EF0 0x00000034 0x03098EE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     357025776 0x03098F80 0x00000034 0x03098F70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     358025777 0x03099010 0x00000034 0x03099000 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     359025778 0x030990A0 0x00000034 0x03099090 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     360025779 0x03099130 0x00000034 0x03099120 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     361025780 0x030991C0 0x00000034 0x030991B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     362025781 0x03099250 0x00000034 0x03099240 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     363025782 0x030992E0 0x00000034 0x030992D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     364025783 0x03099370 0x0000000C 0x03099360 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     365025784 0x030993D8 0x0000009C 0x030993C8 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 
     366025785 0x030994D0 0x00000034 0x030994C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     367025786 0x03099560 0x00000034 0x03099550 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     368025787 0x030995F0 0x00000034 0x030995E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     369025788 0x03099680 0x00000034 0x03099670 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     370025789 0x03099710 0x00000034 0x03099700 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     371025790 0x030997A0 0x00000034 0x03099790 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     372025792 0x03099830 0x00000034 0x03099820 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     373025791 0x030998F0 0x00000034 0x030998E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     374025793 0x030999E0 0x00000034 0x030999D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     375025794 0x03099A70 0x00000034 0x03099A60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     376025796 0x03099B00 0x0000000C 0x03099AF0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     377025795 0x03099BC0 0x00000034 0x03099BB0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log

    r1735 r1831  
    11-------------------------------------------------------------------------------- 
    22 
    3       OgreMemory.log - Memory logging file created on Thu Nov 09 15:43:33 2006 
     3      OgreMemory.log - Memory logging file created on Thu Nov 30 14:30:22 2006 
    44 
    55-------------------------------------------------------------------------------- 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log

    r1735 r1831  
    1 16:02:43: Creating resource group General 
    2 16:02:43: Creating resource group Internal 
    3 16:02:43: Creating resource group Autodetect 
    4 16:02:43: Registering ResourceManager for type Material 
    5 16:02:43: Registering ResourceManager for type Mesh 
    6 16:02:43: Registering ResourceManager for type Skeleton 
    7 16:02:43: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 16:02:43: Loading library OgrePlatform.dll 
    9 16:02:43: OverlayElementFactory for type Panel registered. 
    10 16:02:43: OverlayElementFactory for type BorderPanel registered. 
    11 16:02:43: OverlayElementFactory for type TextArea registered. 
    12 16:02:43: Registering ResourceManager for type Font 
    13 16:02:43: ArchiveFactory for archive type FileSystem registered. 
    14 16:02:43: ArchiveFactory for archive type Zip registered. 
    15 16:02:43: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 16:02:43: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
    17 16:02:43: Registering ResourceManager for type HighLevelGpuProgram 
    18 16:02:43: Registering ResourceManager for type Compositor 
    19 16:02:43: MovableObjectFactory for type 'Entity' registered. 
    20 16:02:43: MovableObjectFactory for type 'Light' registered. 
    21 16:02:43: MovableObjectFactory for type 'BillboardSet' registered. 
    22 16:02:43: MovableObjectFactory for type 'ManualObject' registered. 
    23 16:02:43: MovableObjectFactory for type 'BillboardChain' registered. 
    24 16:02:43: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 16:02:43: Loading library .\RenderSystem_Direct3D9 
    26 16:02:43: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 16:02:43: D3D9: Driver Detection Starts 
    28 16:02:43: D3D9: Driver Detection Ends 
    29 16:02:43: Loading library .\Plugin_ParticleFX 
    30 16:02:43: Particle Emitter Type 'Point' registered 
    31 16:02:43: Particle Emitter Type 'Box' registered 
    32 16:02:43: Particle Emitter Type 'Ellipsoid' registered 
    33 16:02:43: Particle Emitter Type 'Cylinder' registered 
    34 16:02:43: Particle Emitter Type 'Ring' registered 
    35 16:02:43: Particle Emitter Type 'HollowEllipsoid' registered 
    36 16:02:43: Particle Affector Type 'LinearForce' registered 
    37 16:02:43: Particle Affector Type 'ColourFader' registered 
    38 16:02:43: Particle Affector Type 'ColourFader2' registered 
    39 16:02:43: Particle Affector Type 'ColourImage' registered 
    40 16:02:43: Particle Affector Type 'ColourInterpolator' registered 
    41 16:02:43: Particle Affector Type 'Scaler' registered 
    42 16:02:43: Particle Affector Type 'Rotator' registered 
    43 16:02:43: Particle Affector Type 'DirectionRandomiser' registered 
    44 16:02:43: Particle Affector Type 'DeflectorPlane' registered 
    45 16:02:43: Loading library .\Plugin_BSPSceneManager 
    46 16:02:43: Registering ResourceManager for type BspLevel 
    47 16:02:43: Loading library .\Plugin_OctreeSceneManager 
    48 16:02:43: Loading library .\Plugin_CgProgramManager 
    49 16:02:43: *-*-* OGRE Initialising 
    50 16:02:43: *-*-* Version 1.2.0 (Dagon) 
    51 16:02:43: Creating resource group Bootstrap 
    52 16:02:43: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 16:02:43: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 16:02:43: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 16:02:43: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 16:02:43: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 16:02:43: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 16:02:43: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 16:02:43: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 16:02:43: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 16:02:43: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 16:02:43: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 16:02:43: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 16:02:43: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 16:02:43: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 16:02:43: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 16:02:43: D3D9 : RenderSystem Option: Full Screen = No 
    68 16:02:43: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    69 16:02:43: D3D9 : RenderSystem Option: VSync = No 
    70 16:02:43: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 16:02:44: D3D9 : Subsystem Initialising 
    72 16:02:44: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 16:02:44: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 16:02:44: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 16:02:44: Registering ResourceManager for type Texture 
    76 16:02:44: Registering ResourceManager for type GpuProgram 
    77 16:02:44: RenderSystem capabilities 
    78 16:02:44: ------------------------- 
    79 16:02:44:  * Hardware generation of mipmaps: yes 
    80 16:02:44:  * Texture blending: yes 
    81 16:02:44:  * Anisotropic texture filtering: yes 
    82 16:02:44:  * Dot product texture operation: yes 
    83 16:02:44:  * Cube mapping: yes 
    84 16:02:44:  * Hardware stencil buffer: yes 
    85 16:02:44:    - Stencil depth: 8 
    86 16:02:44:    - Two sided stencil support: yes 
    87 16:02:44:    - Wrap stencil values: yes 
    88 16:02:44:  * Hardware vertex / index buffers: yes 
    89 16:02:44:  * Vertex programs: yes 
    90 16:02:44:    - Max vertex program version: vs_3_0 
    91 16:02:44:  * Fragment programs: yes 
    92 16:02:44:    - Max fragment program version: ps_3_0 
    93 16:02:44:  * Texture Compression: yes 
    94 16:02:44:    - DXT: yes 
    95 16:02:44:    - VTC: no 
    96 16:02:44:  * Scissor Rectangle: yes 
    97 16:02:44:  * Hardware Occlusion Query: yes 
    98 16:02:44:  * User clip planes: yes 
    99 16:02:44:  * VET_UBYTE4 vertex element type: yes 
    100 16:02:44:  * Infinite far plane projection: yes 
    101 16:02:44:  * Hardware render-to-texture: yes 
    102 16:02:44:  * Floating point textures: yes 
    103 16:02:44:  * Non-power-of-two textures: yes 
    104 16:02:44:  * Volume textures: yes 
    105 16:02:44:  * Multiple Render Targets: 4 
    106 16:02:44:  * Max Point Size: 8192 
    107 16:02:44: *************************************** 
    108 16:02:44: *** D3D9 : Subsystem Initialised OK *** 
    109 16:02:44: *************************************** 
    110 16:02:44: ResourceBackgroundQueue - threading disabled 
    111 16:02:44: Particle Renderer Type 'billboard' registered 
    112 16:02:44: Particle Renderer Type 'sprite' registered 
    113 16:02:44: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    114 16:02:44: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 16:02:44: Parsing scripts for resource group Autodetect 
    116 16:02:44: Finished parsing scripts for resource group Autodetect 
    117 16:02:44: Parsing scripts for resource group Bootstrap 
    118 16:02:44: Parsing script OgreCore.material 
    119 16:02:44: Parsing script OgreProfiler.material 
    120 16:02:44: Parsing script Ogre.fontdef 
    121 16:02:44: Parsing script OgreDebugPanel.overlay 
    122 16:02:44: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    123 16:02:44: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    124 16:02:44: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    125 16:02:44: Font TrebuchetMSBoldusing texture size 512x512 
    126 16:02:44: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 16:02:44: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 16:02:44: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 16:02:44: Parsing script OgreLoadingPanel.overlay 
    130 16:02:44: Finished parsing scripts for resource group Bootstrap 
    131 16:02:44: Parsing scripts for resource group General 
    132 16:02:44: Parsing script GameTools.program 
    133 16:02:44: Parsing script atlascube.material 
    134 16:02:44: Parsing script difflab.material 
    135 16:02:44: An exception has been thrown! 
     114:46:59: Creating resource group General 
     214:46:59: Creating resource group Internal 
     314:46:59: Creating resource group Autodetect 
     414:46:59: Registering ResourceManager for type Material 
     514:46:59: Registering ResourceManager for type Mesh 
     614:46:59: Registering ResourceManager for type Skeleton 
     714:46:59: MovableObjectFactory for type 'ParticleSystem' registered. 
     814:46:59: Loading library OgrePlatform.dll 
     914:46:59: OverlayElementFactory for type Panel registered. 
     1014:46:59: OverlayElementFactory for type BorderPanel registered. 
     1114:46:59: OverlayElementFactory for type TextArea registered. 
     1214:46:59: Registering ResourceManager for type Font 
     1314:46:59: ArchiveFactory for archive type FileSystem registered. 
     1414:46:59: ArchiveFactory for archive type Zip registered. 
     1514:46:59: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1614:46:59: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
     1714:46:59: Registering ResourceManager for type HighLevelGpuProgram 
     1814:46:59: Registering ResourceManager for type Compositor 
     1914:46:59: MovableObjectFactory for type 'Entity' registered. 
     2014:46:59: MovableObjectFactory for type 'Light' registered. 
     2114:46:59: MovableObjectFactory for type 'BillboardSet' registered. 
     2214:46:59: MovableObjectFactory for type 'ManualObject' registered. 
     2314:46:59: MovableObjectFactory for type 'BillboardChain' registered. 
     2414:46:59: MovableObjectFactory for type 'RibbonTrail' registered. 
     2514:46:59: Loading library .\RenderSystem_Direct3D9 
     2614:46:59: D3D9 : Direct3D9 Rendering Subsystem created. 
     2714:46:59: D3D9: Driver Detection Starts 
     2814:46:59: D3D9: Driver Detection Ends 
     2914:46:59: Loading library .\Plugin_ParticleFX 
     3014:46:59: Particle Emitter Type 'Point' registered 
     3114:46:59: Particle Emitter Type 'Box' registered 
     3214:46:59: Particle Emitter Type 'Ellipsoid' registered 
     3314:46:59: Particle Emitter Type 'Cylinder' registered 
     3414:46:59: Particle Emitter Type 'Ring' registered 
     3514:46:59: Particle Emitter Type 'HollowEllipsoid' registered 
     3614:46:59: Particle Affector Type 'LinearForce' registered 
     3714:46:59: Particle Affector Type 'ColourFader' registered 
     3814:46:59: Particle Affector Type 'ColourFader2' registered 
     3914:46:59: Particle Affector Type 'ColourImage' registered 
     4014:46:59: Particle Affector Type 'ColourInterpolator' registered 
     4114:46:59: Particle Affector Type 'Scaler' registered 
     4214:46:59: Particle Affector Type 'Rotator' registered 
     4314:46:59: Particle Affector Type 'DirectionRandomiser' registered 
     4414:46:59: Particle Affector Type 'DeflectorPlane' registered 
     4514:46:59: Loading library .\Plugin_BSPSceneManager 
     4614:46:59: Registering ResourceManager for type BspLevel 
     4714:46:59: Loading library .\Plugin_OctreeSceneManager 
     4814:46:59: Loading library .\Plugin_CgProgramManager 
     4914:46:59: *-*-* OGRE Initialising 
     5014:46:59: *-*-* Version 1.2.0 (Dagon) 
     5114:46:59: Creating resource group Bootstrap 
     5214:46:59: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5314:46:59: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5414:46:59: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5514:46:59: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5614:46:59: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5714:46:59: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5814:46:59: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5914:46:59: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6014:46:59: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6114:46:59: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6214:46:59: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6314:46:59: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6414:46:59: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6514:46:59: D3D9 : RenderSystem Option: Anti aliasing = None 
     6614:46:59: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6714:46:59: D3D9 : RenderSystem Option: Full Screen = No 
     6814:46:59: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     6914:46:59: D3D9 : RenderSystem Option: VSync = No 
     7014:46:59: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7114:47:00: D3D9 : Subsystem Initialising 
     7214:47:00: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7314:47:00: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7414:47:00: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7514:47:00: Registering ResourceManager for type Texture 
     7614:47:00: Registering ResourceManager for type GpuProgram 
     7714:47:00: RenderSystem capabilities 
     7814:47:00: ------------------------- 
     7914:47:00:  * Hardware generation of mipmaps: yes 
     8014:47:00:  * Texture blending: yes 
     8114:47:00:  * Anisotropic texture filtering: yes 
     8214:47:00:  * Dot product texture operation: yes 
     8314:47:00:  * Cube mapping: yes 
     8414:47:00:  * Hardware stencil buffer: yes 
     8514:47:00:    - Stencil depth: 8 
     8614:47:00:    - Two sided stencil support: yes 
     8714:47:00:    - Wrap stencil values: yes 
     8814:47:00:  * Hardware vertex / index buffers: yes 
     8914:47:00:  * Vertex programs: yes 
     9014:47:00:    - Max vertex program version: vs_3_0 
     9114:47:00:  * Fragment programs: yes 
     9214:47:00:    - Max fragment program version: ps_3_0 
     9314:47:00:  * Texture Compression: yes 
     9414:47:00:    - DXT: yes 
     9514:47:00:    - VTC: no 
     9614:47:00:  * Scissor Rectangle: yes 
     9714:47:00:  * Hardware Occlusion Query: yes 
     9814:47:00:  * User clip planes: yes 
     9914:47:00:  * VET_UBYTE4 vertex element type: yes 
     10014:47:00:  * Infinite far plane projection: yes 
     10114:47:00:  * Hardware render-to-texture: yes 
     10214:47:00:  * Floating point textures: yes 
     10314:47:00:  * Non-power-of-two textures: yes 
     10414:47:00:  * Volume textures: yes 
     10514:47:00:  * Multiple Render Targets: 4 
     10614:47:00:  * Max Point Size: 8192 
     10714:47:00: *************************************** 
     10814:47:00: *** D3D9 : Subsystem Initialised OK *** 
     10914:47:00: *************************************** 
     11014:47:00: ResourceBackgroundQueue - threading disabled 
     11114:47:00: Particle Renderer Type 'billboard' registered 
     11214:47:00: Particle Renderer Type 'sprite' registered 
     11314:47:00: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     11414:47:00: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11514:47:00: Parsing scripts for resource group Autodetect 
     11614:47:00: Finished parsing scripts for resource group Autodetect 
     11714:47:00: Parsing scripts for resource group Bootstrap 
     11814:47:00: Parsing script OgreCore.material 
     11914:47:00: Parsing script OgreProfiler.material 
     12014:47:00: Parsing script Ogre.fontdef 
     12114:47:00: Parsing script OgreDebugPanel.overlay 
     12214:47:00: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12314:47:00: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12414:47:00: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12514:47:00: Font TrebuchetMSBoldusing texture size 512x512 
     12614:47:00: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12714:47:00: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12814:47:00: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12914:47:00: Parsing script OgreLoadingPanel.overlay 
     13014:47:00: Finished parsing scripts for resource group Bootstrap 
     13114:47:00: Parsing scripts for resource group General 
     13214:47:00: Parsing script GameTools.program 
     13314:47:00: Parsing script atlascube.material 
     13414:47:00: Parsing script difflab.material 
     13514:47:00: An exception has been thrown! 
    136136 
    137137----------------------------------- 
     
    144144Line: 779 
    145145Stack unwinding: <<beginning of stack>> 
    146 16:02:44: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14614:47:00: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    147147 
    148148----------------------------------- 
     
    155155Line: 779 
    156156Stack unwinding: <<beginning of stack>> 
    157 16:02:44: An exception has been thrown! 
     15714:47:00: An exception has been thrown! 
    158158 
    159159----------------------------------- 
     
    166166Line: 779 
    167167Stack unwinding: <<beginning of stack>> 
    168 16:02:44: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16814:47:00: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    169169 
    170170----------------------------------- 
     
    177177Line: 779 
    178178Stack unwinding: <<beginning of stack>> 
    179 16:02:44: An exception has been thrown! 
     17914:47:00: An exception has been thrown! 
    180180 
    181181----------------------------------- 
     
    188188Line: 779 
    189189Stack unwinding: <<beginning of stack>> 
    190 16:02:44: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19014:47:00: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    191191 
    192192----------------------------------- 
     
    199199Line: 779 
    200200Stack unwinding: <<beginning of stack>> 
    201 16:02:44: An exception has been thrown! 
     20114:47:00: An exception has been thrown! 
    202202 
    203203----------------------------------- 
     
    210210Line: 779 
    211211Stack unwinding: <<beginning of stack>> 
    212 16:02:44: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21214:47:00: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    213213 
    214214----------------------------------- 
     
    221221Line: 779 
    222222Stack unwinding: <<beginning of stack>> 
    223 16:02:44: An exception has been thrown! 
     22314:47:00: An exception has been thrown! 
    224224 
    225225----------------------------------- 
     
    232232Line: 779 
    233233Stack unwinding: <<beginning of stack>> 
    234 16:02:44: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23414:47:00: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    235235 
    236236----------------------------------- 
     
    243243Line: 779 
    244244Stack unwinding: <<beginning of stack>> 
    245 16:02:44: An exception has been thrown! 
     24514:47:00: An exception has been thrown! 
    246246 
    247247----------------------------------- 
     
    254254Line: 779 
    255255Stack unwinding: <<beginning of stack>> 
    256 16:02:44: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25614:47:00: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    257257 
    258258----------------------------------- 
     
    265265Line: 779 
    266266Stack unwinding: <<beginning of stack>> 
    267 16:02:44: An exception has been thrown! 
     26714:47:00: An exception has been thrown! 
    268268 
    269269----------------------------------- 
     
    276276Line: 779 
    277277Stack unwinding: <<beginning of stack>> 
    278 16:02:44: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27814:47:00: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    279279 
    280280----------------------------------- 
     
    287287Line: 779 
    288288Stack unwinding: <<beginning of stack>> 
    289 16:02:44: An exception has been thrown! 
     28914:47:00: An exception has been thrown! 
    290290 
    291291----------------------------------- 
     
    298298Line: 779 
    299299Stack unwinding: <<beginning of stack>> 
    300 16:02:44: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30014:47:00: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    301301 
    302302----------------------------------- 
     
    309309Line: 779 
    310310Stack unwinding: <<beginning of stack>> 
    311 16:02:44: An exception has been thrown! 
     31114:47:00: An exception has been thrown! 
    312312 
    313313----------------------------------- 
     
    320320Line: 779 
    321321Stack unwinding: <<beginning of stack>> 
    322 16:02:44: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32214:47:00: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    323323 
    324324----------------------------------- 
     
    331331Line: 779 
    332332Stack unwinding: <<beginning of stack>> 
    333 16:02:44: An exception has been thrown! 
     33314:47:00: An exception has been thrown! 
    334334 
    335335----------------------------------- 
     
    342342Line: 779 
    343343Stack unwinding: <<beginning of stack>> 
    344 16:02:44: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34414:47:00: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    345345 
    346346----------------------------------- 
     
    353353Line: 779 
    354354Stack unwinding: <<beginning of stack>> 
    355 16:02:44: An exception has been thrown! 
     35514:47:00: An exception has been thrown! 
    356356 
    357357----------------------------------- 
     
    364364Line: 779 
    365365Stack unwinding: <<beginning of stack>> 
    366 16:02:44: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     36614:47:00: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    367367 
    368368----------------------------------- 
     
    375375Line: 779 
    376376Stack unwinding: <<beginning of stack>> 
    377 16:02:44: An exception has been thrown! 
     37714:47:00: An exception has been thrown! 
    378378 
    379379----------------------------------- 
     
    386386Line: 779 
    387387Stack unwinding: <<beginning of stack>> 
    388 16:02:44: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     38814:47:00: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    389389 
    390390----------------------------------- 
     
    397397Line: 779 
    398398Stack unwinding: <<beginning of stack>> 
    399 16:02:44: An exception has been thrown! 
     39914:47:00: An exception has been thrown! 
    400400 
    401401----------------------------------- 
     
    408408Line: 779 
    409409Stack unwinding: <<beginning of stack>> 
    410 16:02:44: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41014:47:00: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    411411 
    412412----------------------------------- 
     
    419419Line: 779 
    420420Stack unwinding: <<beginning of stack>> 
    421 16:02:44: An exception has been thrown! 
     42114:47:00: An exception has been thrown! 
    422422 
    423423----------------------------------- 
     
    430430Line: 779 
    431431Stack unwinding: <<beginning of stack>> 
    432 16:02:44: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43214:47:00: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    433433 
    434434----------------------------------- 
     
    441441Line: 779 
    442442Stack unwinding: <<beginning of stack>> 
    443 16:02:44: An exception has been thrown! 
     44314:47:00: An exception has been thrown! 
    444444 
    445445----------------------------------- 
     
    452452Line: 779 
    453453Stack unwinding: <<beginning of stack>> 
    454 16:02:44: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45414:47:00: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    455455 
    456456----------------------------------- 
     
    463463Line: 779 
    464464Stack unwinding: <<beginning of stack>> 
    465 16:02:44: An exception has been thrown! 
     46514:47:00: An exception has been thrown! 
    466466 
    467467----------------------------------- 
     
    474474Line: 779 
    475475Stack unwinding: <<beginning of stack>> 
    476 16:02:44: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     47614:47:00: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    477477 
    478478----------------------------------- 
     
    485485Line: 779 
    486486Stack unwinding: <<beginning of stack>> 
    487 16:02:44: An exception has been thrown! 
     48714:47:00: An exception has been thrown! 
    488488 
    489489----------------------------------- 
     
    496496Line: 779 
    497497Stack unwinding: <<beginning of stack>> 
    498 16:02:44: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     49814:47:00: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    499499 
    500500----------------------------------- 
     
    507507Line: 779 
    508508Stack unwinding: <<beginning of stack>> 
    509 16:02:44: An exception has been thrown! 
     50914:47:00: An exception has been thrown! 
    510510 
    511511----------------------------------- 
     
    518518Line: 779 
    519519Stack unwinding: <<beginning of stack>> 
    520 16:02:44: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52014:47:00: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    521521 
    522522----------------------------------- 
     
    529529Line: 779 
    530530Stack unwinding: <<beginning of stack>> 
    531 16:02:44: An exception has been thrown! 
     53114:47:00: An exception has been thrown! 
    532532 
    533533----------------------------------- 
     
    540540Line: 779 
    541541Stack unwinding: <<beginning of stack>> 
    542 16:02:44: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54214:47:00: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    543543 
    544544----------------------------------- 
     
    551551Line: 779 
    552552Stack unwinding: <<beginning of stack>> 
    553 16:02:44: An exception has been thrown! 
     55314:47:00: An exception has been thrown! 
    554554 
    555555----------------------------------- 
     
    562562Line: 779 
    563563Stack unwinding: <<beginning of stack>> 
    564 16:02:44: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56414:47:00: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    565565 
    566566----------------------------------- 
     
    573573Line: 779 
    574574Stack unwinding: <<beginning of stack>> 
    575 16:02:44: An exception has been thrown! 
     57514:47:00: An exception has been thrown! 
    576576 
    577577----------------------------------- 
     
    584584Line: 779 
    585585Stack unwinding: <<beginning of stack>> 
    586 16:02:44: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     58614:47:00: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    587587 
    588588----------------------------------- 
     
    595595Line: 779 
    596596Stack unwinding: <<beginning of stack>> 
    597 16:02:44: Parsing script diffscene.material 
    598 16:02:45: An exception has been thrown! 
     59714:47:00: Parsing script diffscene.material 
     59814:47:00: An exception has been thrown! 
    599599 
    600600----------------------------------- 
     
    607607Line: 779 
    608608Stack unwinding: <<beginning of stack>> 
    609 16:02:45: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     60914:47:00: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    610610 
    611611----------------------------------- 
     
    618618Line: 779 
    619619Stack unwinding: <<beginning of stack>> 
    620 16:02:45: An exception has been thrown! 
     62014:47:00: An exception has been thrown! 
    621621 
    622622----------------------------------- 
     
    629629Line: 779 
    630630Stack unwinding: <<beginning of stack>> 
    631 16:02:45: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63114:47:00: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    632632 
    633633----------------------------------- 
     
    640640Line: 779 
    641641Stack unwinding: <<beginning of stack>> 
    642 16:02:45: An exception has been thrown! 
     64214:47:00: An exception has been thrown! 
    643643 
    644644----------------------------------- 
     
    651651Line: 779 
    652652Stack unwinding: <<beginning of stack>> 
    653 16:02:45: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65314:47:00: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    654654 
    655655----------------------------------- 
     
    662662Line: 779 
    663663Stack unwinding: <<beginning of stack>> 
    664 16:02:45: An exception has been thrown! 
     66414:47:00: An exception has been thrown! 
    665665 
    666666----------------------------------- 
     
    673673Line: 779 
    674674Stack unwinding: <<beginning of stack>> 
    675 16:02:45: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67514:47:00: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    676676 
    677677----------------------------------- 
     
    684684Line: 779 
    685685Stack unwinding: <<beginning of stack>> 
    686 16:02:45: An exception has been thrown! 
     68614:47:00: An exception has been thrown! 
    687687 
    688688----------------------------------- 
     
    695695Line: 779 
    696696Stack unwinding: <<beginning of stack>> 
    697 16:02:45: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69714:47:00: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    698698 
    699699----------------------------------- 
     
    706706Line: 779 
    707707Stack unwinding: <<beginning of stack>> 
    708 16:02:45: An exception has been thrown! 
     70814:47:00: An exception has been thrown! 
    709709 
    710710----------------------------------- 
     
    717717Line: 779 
    718718Stack unwinding: <<beginning of stack>> 
    719 16:02:45: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     71914:47:00: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    720720 
    721721----------------------------------- 
     
    728728Line: 779 
    729729Stack unwinding: <<beginning of stack>> 
    730 16:02:45: An exception has been thrown! 
     73014:47:00: An exception has been thrown! 
    731731 
    732732----------------------------------- 
     
    739739Line: 779 
    740740Stack unwinding: <<beginning of stack>> 
    741 16:02:45: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74114:47:00: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    742742 
    743743----------------------------------- 
     
    750750Line: 779 
    751751Stack unwinding: <<beginning of stack>> 
    752 16:02:45: An exception has been thrown! 
     75214:47:00: An exception has been thrown! 
    753753 
    754754----------------------------------- 
     
    761761Line: 779 
    762762Stack unwinding: <<beginning of stack>> 
    763 16:02:45: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76314:47:00: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    764764 
    765765----------------------------------- 
     
    772772Line: 779 
    773773Stack unwinding: <<beginning of stack>> 
    774 16:02:45: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    775 16:02:45: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    776 16:02:45: Parsing script Diffuse.material 
    777 16:02:45: An exception has been thrown! 
     77414:47:00: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77514:47:00: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77614:47:00: Parsing script Diffuse.material 
     77714:47:00: An exception has been thrown! 
    778778 
    779779----------------------------------- 
     
    786786Line: 779 
    787787Stack unwinding: <<beginning of stack>> 
    788 16:02:45: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     78814:47:00: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    789789 
    790790----------------------------------- 
     
    797797Line: 779 
    798798Stack unwinding: <<beginning of stack>> 
    799 16:02:45: An exception has been thrown! 
     79914:47:01: An exception has been thrown! 
    800800 
    801801----------------------------------- 
     
    808808Line: 779 
    809809Stack unwinding: <<beginning of stack>> 
    810 16:02:45: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     81014:47:01: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    811811 
    812812----------------------------------- 
     
    819819Line: 779 
    820820Stack unwinding: <<beginning of stack>> 
    821 16:02:49: An exception has been thrown! 
     82114:47:05: An exception has been thrown! 
    822822 
    823823----------------------------------- 
     
    830830Line: 779 
    831831Stack unwinding: <<beginning of stack>> 
    832 16:02:49: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83214:47:05: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    833833 
    834834----------------------------------- 
     
    841841Line: 779 
    842842Stack unwinding: <<beginning of stack>> 
    843 16:02:49: An exception has been thrown! 
     84314:47:05: An exception has been thrown! 
    844844 
    845845----------------------------------- 
     
    852852Line: 779 
    853853Stack unwinding: <<beginning of stack>> 
    854 16:02:49: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     85414:47:05: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    855855 
    856856----------------------------------- 
     
    863863Line: 779 
    864864Stack unwinding: <<beginning of stack>> 
    865 16:02:49: Parsing script EnvMetals.material 
    866 16:02:49: An exception has been thrown! 
     86514:47:05: Parsing script EnvMetals.material 
     86614:47:05: An exception has been thrown! 
    867867 
    868868----------------------------------- 
     
    875875Line: 779 
    876876Stack unwinding: <<beginning of stack>> 
    877 16:02:49: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     87714:47:05: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    878878 
    879879----------------------------------- 
     
    886886Line: 779 
    887887Stack unwinding: <<beginning of stack>> 
    888 16:02:49: An exception has been thrown! 
     88814:47:05: An exception has been thrown! 
    889889 
    890890----------------------------------- 
     
    897897Line: 779 
    898898Stack unwinding: <<beginning of stack>> 
    899 16:02:49: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     89914:47:05: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    900900 
    901901----------------------------------- 
     
    908908Line: 779 
    909909Stack unwinding: <<beginning of stack>> 
    910 16:02:49: An exception has been thrown! 
     91014:47:05: An exception has been thrown! 
    911911 
    912912----------------------------------- 
     
    919919Line: 779 
    920920Stack unwinding: <<beginning of stack>> 
    921 16:02:49: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     92114:47:05: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    922922 
    923923----------------------------------- 
     
    930930Line: 779 
    931931Stack unwinding: <<beginning of stack>> 
    932 16:02:49: An exception has been thrown! 
     93214:47:05: An exception has been thrown! 
    933933 
    934934----------------------------------- 
     
    941941Line: 779 
    942942Stack unwinding: <<beginning of stack>> 
    943 16:02:49: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     94314:47:05: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    944944 
    945945----------------------------------- 
     
    952952Line: 779 
    953953Stack unwinding: <<beginning of stack>> 
    954 16:02:49: Parsing script GameTools.material 
    955 16:02:49: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    956 16:02:49: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    957 16:02:49: An exception has been thrown! 
     95414:47:05: Parsing script GameTools.material 
     95514:47:05: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     95614:47:05: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     95714:47:05: An exception has been thrown! 
    958958 
    959959----------------------------------- 
     
    966966Line: 779 
    967967Stack unwinding: <<beginning of stack>> 
    968 16:02:49: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     96814:47:05: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    969969 
    970970----------------------------------- 
     
    977977Line: 779 
    978978Stack unwinding: <<beginning of stack>> 
    979 16:02:49: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    980 16:02:49: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    981 16:02:49: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    982 16:02:49: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
    983 16:02:49: Parsing script GameTools_HPS.material 
    984 16:02:49: An exception has been thrown! 
     97914:47:05: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     98014:47:05: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     98114:47:05: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     98214:47:05: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
     98314:47:05: Parsing script GameTools_HPS.material 
     98414:47:05: An exception has been thrown! 
    985985 
    986986----------------------------------- 
     
    993993Line: 779 
    994994Stack unwinding: <<beginning of stack>> 
    995 16:02:49: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     99514:47:05: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    996996 
    997997----------------------------------- 
     
    10041004Line: 779 
    10051005Stack unwinding: <<beginning of stack>> 
    1006 16:02:49: An exception has been thrown! 
     100614:47:05: An exception has been thrown! 
    10071007 
    10081008----------------------------------- 
     
    10151015Line: 779 
    10161016Stack unwinding: <<beginning of stack>> 
    1017 16:02:49: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     101714:47:05: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10181018 
    10191019----------------------------------- 
     
    10261026Line: 779 
    10271027Stack unwinding: <<beginning of stack>> 
    1028 16:02:49: An exception has been thrown! 
     102814:47:05: An exception has been thrown! 
    10291029 
    10301030----------------------------------- 
     
    10371037Line: 779 
    10381038Stack unwinding: <<beginning of stack>> 
    1039 16:02:49: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     103914:47:05: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10401040 
    10411041----------------------------------- 
     
    10481048Line: 779 
    10491049Stack unwinding: <<beginning of stack>> 
    1050 16:02:49: An exception has been thrown! 
     105014:47:05: An exception has been thrown! 
    10511051 
    10521052----------------------------------- 
     
    10591059Line: 779 
    10601060Stack unwinding: <<beginning of stack>> 
    1061 16:02:49: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     106114:47:05: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10621062 
    10631063----------------------------------- 
     
    10701070Line: 779 
    10711071Stack unwinding: <<beginning of stack>> 
    1072 16:02:49: An exception has been thrown! 
     107214:47:05: An exception has been thrown! 
    10731073 
    10741074----------------------------------- 
     
    10811081Line: 779 
    10821082Stack unwinding: <<beginning of stack>> 
    1083 16:02:49: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     108314:47:05: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10841084 
    10851085----------------------------------- 
     
    10921092Line: 779 
    10931093Stack unwinding: <<beginning of stack>> 
    1094 16:02:49: An exception has been thrown! 
     109414:47:05: An exception has been thrown! 
    10951095 
    10961096----------------------------------- 
     
    11031103Line: 779 
    11041104Stack unwinding: <<beginning of stack>> 
    1105 16:02:49: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     110514:47:05: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11061106 
    11071107----------------------------------- 
     
    11141114Line: 779 
    11151115Stack unwinding: <<beginning of stack>> 
    1116 16:02:49: An exception has been thrown! 
     111614:47:05: An exception has been thrown! 
    11171117 
    11181118----------------------------------- 
     
    11251125Line: 779 
    11261126Stack unwinding: <<beginning of stack>> 
    1127 16:02:49: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     112714:47:05: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11281128 
    11291129----------------------------------- 
     
    11361136Line: 779 
    11371137Stack unwinding: <<beginning of stack>> 
    1138 16:02:49: Parsing script GlassHead.material 
    1139 16:02:49: An exception has been thrown! 
     113814:47:05: Parsing script GlassHead.material 
     113914:47:05: An exception has been thrown! 
    11401140 
    11411141----------------------------------- 
     
    11481148Line: 779 
    11491149Stack unwinding: <<beginning of stack>> 
    1150 16:02:49: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     115014:47:05: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11511151 
    11521152----------------------------------- 
     
    11591159Line: 779 
    11601160Stack unwinding: <<beginning of stack>> 
    1161 16:02:49: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    1162 16:02:49: An exception has been thrown! 
     116114:47:05: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     116214:47:05: An exception has been thrown! 
    11631163 
    11641164----------------------------------- 
     
    11711171Line: 779 
    11721172Stack unwinding: <<beginning of stack>> 
    1173 16:02:49: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     117314:47:05: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11741174 
    11751175----------------------------------- 
     
    11821182Line: 779 
    11831183Stack unwinding: <<beginning of stack>> 
    1184 16:02:49: An exception has been thrown! 
     118414:47:05: An exception has been thrown! 
    11851185 
    11861186----------------------------------- 
     
    11931193Line: 779 
    11941194Stack unwinding: <<beginning of stack>> 
    1195 16:02:49: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     119514:47:05: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11961196 
    11971197----------------------------------- 
     
    12041204Line: 779 
    12051205Stack unwinding: <<beginning of stack>> 
    1206 16:02:49: An exception has been thrown! 
     120614:47:05: An exception has been thrown! 
    12071207 
    12081208----------------------------------- 
     
    12151215Line: 779 
    12161216Stack unwinding: <<beginning of stack>> 
    1217 16:02:49: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     121714:47:05: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12181218 
    12191219----------------------------------- 
     
    12261226Line: 779 
    12271227Stack unwinding: <<beginning of stack>> 
    1228 16:02:49: Parsing script Glow.material 
    1229 16:02:49: An exception has been thrown! 
     122814:47:05: Parsing script Glow.material 
     122914:47:05: An exception has been thrown! 
    12301230 
    12311231----------------------------------- 
     
    12381238Line: 779 
    12391239Stack unwinding: <<beginning of stack>> 
    1240 16:02:49: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     124014:47:05: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    12411241 
    12421242----------------------------------- 
     
    12491249Line: 779 
    12501250Stack unwinding: <<beginning of stack>> 
    1251 16:02:49: Parsing script hangar.material 
    1252 16:02:49: Parsing script kupola.material 
    1253 16:02:49: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1254 16:02:49: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1255 16:02:49: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1256 16:02:49: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1257 16:02:49: Parsing script MetalTeapot.material 
    1258 16:02:54: An exception has been thrown! 
     125114:47:05: Parsing script hangar.material 
     125214:47:05: Parsing script kupola.material 
     125314:47:05: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     125414:47:05: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     125514:47:05: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     125614:47:05: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     125714:47:05: Parsing script MetalTeapot.material 
     125814:47:07: An exception has been thrown! 
    12591259 
    12601260----------------------------------- 
     
    12671267Line: 779 
    12681268Stack unwinding: <<beginning of stack>> 
    1269 16:02:54: Error in material MetalTeapotMultipleBounce at line 192 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     126914:47:07: Error in material MetalTeapotMultipleBounce at line 192 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    12701270 
    12711271----------------------------------- 
     
    12781278Line: 779 
    12791279Stack unwinding: <<beginning of stack>> 
    1280 16:02:54: Parsing script Ogre.material 
    1281 16:02:54: Parsing script Particles.material 
    1282 16:02:54: An exception has been thrown! 
     128014:47:07: Parsing script Ogre.material 
     128114:47:07: Parsing script Particles.material 
     128214:47:07: An exception has been thrown! 
    12831283 
    12841284----------------------------------- 
     
    12911291Line: 779 
    12921292Stack unwinding: <<beginning of stack>> 
    1293 16:02:54: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     129314:47:07: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12941294 
    12951295----------------------------------- 
     
    13021302Line: 779 
    13031303Stack unwinding: <<beginning of stack>> 
    1304 16:02:54: An exception has been thrown! 
     130414:47:07: An exception has been thrown! 
    13051305 
    13061306----------------------------------- 
     
    13131313Line: 779 
    13141314Stack unwinding: <<beginning of stack>> 
    1315 16:02:54: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     131514:47:07: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13161316 
    13171317----------------------------------- 
     
    13241324Line: 779 
    13251325Stack unwinding: <<beginning of stack>> 
    1326 16:02:54: Parsing script RaytraceDemo.material 
    1327 16:02:54: Parsing script stairs.material 
    1328 16:02:54: Parsing script uvegfolyoso2.material 
    1329 16:02:54: An exception has been thrown! 
     132614:47:07: Parsing script RaytraceDemo.material 
     132714:47:07: Parsing script stairs.material 
     132814:47:07: Parsing script uvegfolyoso2.material 
     132914:47:07: An exception has been thrown! 
    13301330 
    13311331----------------------------------- 
     
    13381338Line: 779 
    13391339Stack unwinding: <<beginning of stack>> 
    1340 16:02:54: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     134014:47:07: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13411341 
    13421342----------------------------------- 
     
    13491349Line: 779 
    13501350Stack unwinding: <<beginning of stack>> 
    1351 16:02:54: An exception has been thrown! 
     135114:47:07: An exception has been thrown! 
    13521352 
    13531353----------------------------------- 
     
    13601360Line: 779 
    13611361Stack unwinding: <<beginning of stack>> 
    1362 16:02:54: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     136214:47:07: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13631363 
    13641364----------------------------------- 
     
    13711371Line: 779 
    13721372Stack unwinding: <<beginning of stack>> 
    1373 16:02:54: An exception has been thrown! 
     137314:47:07: An exception has been thrown! 
    13741374 
    13751375----------------------------------- 
     
    13821382Line: 779 
    13831383Stack unwinding: <<beginning of stack>> 
    1384 16:02:54: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     138414:47:07: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13851385 
    13861386----------------------------------- 
     
    13931393Line: 779 
    13941394Stack unwinding: <<beginning of stack>> 
    1395 16:02:54: An exception has been thrown! 
     139514:47:07: An exception has been thrown! 
    13961396 
    13971397----------------------------------- 
     
    14041404Line: 779 
    14051405Stack unwinding: <<beginning of stack>> 
    1406 16:02:54: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     140614:47:07: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14071407 
    14081408----------------------------------- 
     
    14151415Line: 779 
    14161416Stack unwinding: <<beginning of stack>> 
    1417 16:02:54: An exception has been thrown! 
     141714:47:07: An exception has been thrown! 
    14181418 
    14191419----------------------------------- 
     
    14261426Line: 779 
    14271427Stack unwinding: <<beginning of stack>> 
    1428 16:02:54: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     142814:47:07: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14291429 
    14301430----------------------------------- 
     
    14371437Line: 779 
    14381438Stack unwinding: <<beginning of stack>> 
    1439 16:02:54: An exception has been thrown! 
     143914:47:07: An exception has been thrown! 
    14401440 
    14411441----------------------------------- 
     
    14481448Line: 779 
    14491449Stack unwinding: <<beginning of stack>> 
    1450 16:02:54: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     145014:47:07: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14511451 
    14521452----------------------------------- 
     
    14591459Line: 779 
    14601460Stack unwinding: <<beginning of stack>> 
    1461 16:02:54: An exception has been thrown! 
     146114:47:07: An exception has been thrown! 
    14621462 
    14631463----------------------------------- 
     
    14701470Line: 779 
    14711471Stack unwinding: <<beginning of stack>> 
    1472 16:02:54: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     147214:47:07: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14731473 
    14741474----------------------------------- 
     
    14811481Line: 779 
    14821482Stack unwinding: <<beginning of stack>> 
    1483 16:02:54: An exception has been thrown! 
     148314:47:07: An exception has been thrown! 
    14841484 
    14851485----------------------------------- 
     
    14921492Line: 779 
    14931493Stack unwinding: <<beginning of stack>> 
    1494 16:02:54: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     149414:47:07: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14951495 
    14961496----------------------------------- 
     
    15031503Line: 779 
    15041504Stack unwinding: <<beginning of stack>> 
    1505 16:02:54: An exception has been thrown! 
     150514:47:07: An exception has been thrown! 
    15061506 
    15071507----------------------------------- 
     
    15141514Line: 779 
    15151515Stack unwinding: <<beginning of stack>> 
    1516 16:02:54: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     151614:47:07: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15171517 
    15181518----------------------------------- 
     
    15251525Line: 779 
    15261526Stack unwinding: <<beginning of stack>> 
    1527 16:02:54: An exception has been thrown! 
     152714:47:07: An exception has been thrown! 
    15281528 
    15291529----------------------------------- 
     
    15361536Line: 779 
    15371537Stack unwinding: <<beginning of stack>> 
    1538 16:02:54: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     153814:47:07: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15391539 
    15401540----------------------------------- 
     
    15471547Line: 779 
    15481548Stack unwinding: <<beginning of stack>> 
    1549 16:02:54: An exception has been thrown! 
     154914:47:07: An exception has been thrown! 
    15501550 
    15511551----------------------------------- 
     
    15581558Line: 779 
    15591559Stack unwinding: <<beginning of stack>> 
    1560 16:02:54: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     156014:47:07: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15611561 
    15621562----------------------------------- 
     
    15691569Line: 779 
    15701570Stack unwinding: <<beginning of stack>> 
    1571 16:02:54: An exception has been thrown! 
     157114:47:07: An exception has been thrown! 
    15721572 
    15731573----------------------------------- 
     
    15801580Line: 779 
    15811581Stack unwinding: <<beginning of stack>> 
    1582 16:02:54: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     158214:47:07: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15831583 
    15841584----------------------------------- 
     
    15911591Line: 779 
    15921592Stack unwinding: <<beginning of stack>> 
    1593 16:02:54: An exception has been thrown! 
     159314:47:07: An exception has been thrown! 
    15941594 
    15951595----------------------------------- 
     
    16021602Line: 779 
    16031603Stack unwinding: <<beginning of stack>> 
    1604 16:02:54: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     160414:47:07: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16051605 
    16061606----------------------------------- 
     
    16131613Line: 779 
    16141614Stack unwinding: <<beginning of stack>> 
    1615 16:02:54: An exception has been thrown! 
     161514:47:07: An exception has been thrown! 
    16161616 
    16171617----------------------------------- 
     
    16241624Line: 779 
    16251625Stack unwinding: <<beginning of stack>> 
    1626 16:02:54: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     162614:47:07: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16271627 
    16281628----------------------------------- 
     
    16351635Line: 779 
    16361636Stack unwinding: <<beginning of stack>> 
    1637 16:02:54: An exception has been thrown! 
     163714:47:07: An exception has been thrown! 
    16381638 
    16391639----------------------------------- 
     
    16461646Line: 779 
    16471647Stack unwinding: <<beginning of stack>> 
    1648 16:02:54: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     164814:47:07: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16491649 
    16501650----------------------------------- 
     
    16571657Line: 779 
    16581658Stack unwinding: <<beginning of stack>> 
    1659 16:02:54: An exception has been thrown! 
     165914:47:07: An exception has been thrown! 
    16601660 
    16611661----------------------------------- 
     
    16681668Line: 779 
    16691669Stack unwinding: <<beginning of stack>> 
    1670 16:02:54: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     167014:47:07: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16711671 
    16721672----------------------------------- 
     
    16791679Line: 779 
    16801680Stack unwinding: <<beginning of stack>> 
    1681 16:02:54: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1682 16:02:54: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1683 16:02:54: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1684 16:02:54: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1685 16:02:54: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1686 16:02:54: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1687 16:02:54: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1688 16:02:54: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1689 16:02:54: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1690 16:02:54: Parsing script X3D.material 
    1691 16:02:54: Parsing script GameTools_Glow.compositor 
    1692 16:02:54: Parsing script GameTools_ToneMap.compositor 
    1693 16:02:54: Parsing script sample.fontdef 
    1694 16:02:54: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1695 16:02:54: Parsing script GameTools.particle 
    1696 16:02:54: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1697 16:02:54: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1698 16:02:54: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1699 16:02:54: Parsing script Compositor.overlay 
    1700 16:02:54: Parsing script DP3.overlay 
    1701 16:02:54: Parsing script Example-CubeMapping.overlay 
    1702 16:02:54: Parsing script Example-DynTex.overlay 
    1703 16:02:54: Parsing script Example-Water.overlay 
    1704 16:02:54: Parsing script FullScreen.overlay 
    1705 16:02:54: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1706 16:02:54: Parsing script Shadows.overlay 
    1707 16:02:54: Finished parsing scripts for resource group General 
    1708 16:02:54: Parsing scripts for resource group Internal 
    1709 16:02:54: Finished parsing scripts for resource group Internal 
    1710 16:02:54: Creating viewport on target 'rtt/3191456', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1711 16:02:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    1712 16:02:54: Creating viewport on target 'rtt/3193312', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1713 16:02:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1714 16:02:54: Creating viewport on target 'rtt/3172736', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1715 16:02:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1716 16:02:54: Creating viewport on target 'rtt/3226880', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1717 16:02:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1718 16:02:54: Creating viewport on target 'rtt/3227232', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1719 16:02:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1720 16:02:54: Creating viewport on target 'rtt/3227584', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1721 16:02:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1722 16:02:54: Creating viewport on target 'rtt/3195584', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1723 16:02:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 
    1724 16:02:54: Creating viewport on target 'rtt/3195936', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1725 16:02:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 
    1726 16:02:54: Mesh: Loading buddha.mesh. 
    1727 16:02:54: Can't assign material Material_2 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 
    1728 16:02:54: Mesh: Loading difflab.mesh. 
    1729 16:02:54: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1730 16:02:54: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1731 16:02:54: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
    1732 16:02:54: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1733 16:02:54: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1734 16:02:54: Creating viewport on target 'rtt/42695648', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1735 16:02:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1736 16:02:54: Creating viewport on target 'rtt/42695712', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1737 16:02:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1738 16:02:54: Creating viewport on target 'rtt/42695776', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1739 16:02:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1740 16:02:54: Creating viewport on target 'rtt/42695840', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1741 16:02:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1742 16:02:54: Creating viewport on target 'rtt/42695904', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1743 16:02:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1744 16:02:54: Creating viewport on target 'rtt/42695968', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1745 16:02:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1746 16:02:54: WARNING: Texture instance 'object_SE_0_DISTANCECUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1747 16:02:54: Creating viewport on target 'rtt/42696928', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1748 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1749 16:02:54: Creating viewport on target 'rtt/42696992', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1750 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1751 16:02:54: Creating viewport on target 'rtt/42697056', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1752 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1753 16:02:54: Creating viewport on target 'rtt/42697120', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1754 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1755 16:02:54: Creating viewport on target 'rtt/42697184', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1756 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1757 16:02:54: Creating viewport on target 'rtt/42697248', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1758 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1759 16:02:54: Creating viewport on target 'rtt/42698304', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1760 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1761 16:02:54: Creating viewport on target 'rtt/42698368', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1762 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1763 16:02:54: Creating viewport on target 'rtt/42698432', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1764 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1765 16:02:54: Creating viewport on target 'rtt/42698496', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1766 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1767 16:02:54: Creating viewport on target 'rtt/42698560', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1768 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1769 16:02:54: Creating viewport on target 'rtt/42698624', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1770 16:02:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    1771 16:02:54: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_REDUCED' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1772 16:02:54: Win32Input8: DirectInput Activation Starts 
    1773 16:02:54: Win32Input8: Establishing keyboard input. 
    1774 16:02:54: Win32Input8: Keyboard input established. 
    1775 16:02:54: Win32Input8: Initializing mouse input in immediate mode. 
    1776 16:02:54: Win32Input8: Mouse input in immediate mode initialized. 
    1777 16:02:54: Win32Input8: DirectInput OK. 
    1778 16:02:54: Creating viewport on target 'rtt/42729664', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1779 16:02:54: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1780 16:02:54: Creating viewport on target 'rtt/3258912', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1781 16:02:54: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1782 16:02:54: Creating viewport on target 'rtt/3259264', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1783 16:02:54: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1784 16:02:54: Creating viewport on target 'rtt/3259616', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1785 16:02:54: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1786 16:02:54: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1787 16:02:54: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAPblurred' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1788 16:02:54: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1789 16:02:54: Texture: rockwall.tga: Loading 1 faces(PF_R8G8B8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1790 16:02:54: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1791 16:02:54: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1792 16:02:54: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1793 16:02:54: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1794 16:02:54: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1795 16:02:54: WARNING: Texture instance 'CompositorInstanceTexture5' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1796 16:02:54: WARNING: Texture instance 'CompositorInstanceTexture6' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1797 16:02:54: WARNING: Texture instance 'CompositorInstanceTexture7' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1798 16:25:45: Unregistering ResourceManager for type BspLevel 
    1799 16:25:45: Render Target 'rtt/3191456' Average FPS: 10.4845 Best FPS: 25.5924 Worst FPS: 7.48363 
    1800 16:25:45: Render Target 'rtt/3195936' Average FPS: 10.4866 Best FPS: 25.6167 Worst FPS: 7.47664 
    1801 16:25:45: Render Target 'rtt/3195584' Average FPS: 10.4866 Best FPS: 25.6167 Worst FPS: 7.47664 
    1802 16:25:45: Render Target 'rtt/3227584' Average FPS: 10.4876 Best FPS: 25.641 Worst FPS: 7.48363 
    1803 16:25:45: Render Target 'rtt/3227232' Average FPS: 10.4866 Best FPS: 25.6167 Worst FPS: 7.48363 
    1804 16:25:45: Render Target 'rtt/3226880' Average FPS: 10.4866 Best FPS: 25.6167 Worst FPS: 7.48363 
    1805 16:25:45: Render Target 'rtt/3172736' Average FPS: 10.4859 Best FPS: 25.6167 Worst FPS: 7.48363 
    1806 16:25:45: Render Target 'rtt/3193312' Average FPS: 10.4847 Best FPS: 25.5924 Worst FPS: 7.48363 
    1807 16:25:45: Render Target 'rtt/3259616' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1808 16:25:45: Render Target 'rtt/3259264' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1809 16:25:45: Render Target 'rtt/3258912' Average FPS: 10.4817 Best FPS: 25.5906 Worst FPS: 7.48363 
    1810 16:25:45: Render Target 'rtt/42729664' Average FPS: 10.4866 Best FPS: 25.5906 Worst FPS: 7.47664 
    1811 16:25:45: Render Target 'rtt/42698304' Average FPS: 10.4867 Best FPS: 25.6167 Worst FPS: 7.48363 
    1812 16:25:45: Render Target 'rtt/42698368' Average FPS: 10.4867 Best FPS: 25.6167 Worst FPS: 7.48363 
    1813 16:25:45: Render Target 'rtt/42698432' Average FPS: 10.4867 Best FPS: 25.6167 Worst FPS: 7.48363 
    1814 16:25:45: Render Target 'rtt/42698496' Average FPS: 10.4867 Best FPS: 25.6167 Worst FPS: 7.48363 
    1815 16:25:45: Render Target 'rtt/42698560' Average FPS: 10.4892 Best FPS: 25.6167 Worst FPS: 7.48363 
    1816 16:25:45: Render Target 'rtt/42698624' Average FPS: 10.4892 Best FPS: 25.6167 Worst FPS: 7.48363 
    1817 16:25:45: Render Target 'rtt/42696928' Average FPS: 10.4867 Best FPS: 25.6167 Worst FPS: 7.47664 
    1818 16:25:45: Render Target 'rtt/42696992' Average FPS: 10.486 Best FPS: 25.6167 Worst FPS: 7.48363 
    1819 16:25:45: Render Target 'rtt/42697056' Average FPS: 10.4867 Best FPS: 25.6167 Worst FPS: 7.48363 
    1820 16:25:45: Render Target 'rtt/42697120' Average FPS: 10.4866 Best FPS: 25.6167 Worst FPS: 7.48363 
    1821 16:25:45: Render Target 'rtt/42697184' Average FPS: 10.4904 Best FPS: 25.6167 Worst FPS: 7.48363 
    1822 16:25:45: Render Target 'rtt/42697248' Average FPS: 10.4866 Best FPS: 25.6167 Worst FPS: 7.49064 
    1823 16:25:45: Render Target 'rtt/42695648' Average FPS: 10.4866 Best FPS: 25.6167 Worst FPS: 7.47664 
    1824 16:25:45: Render Target 'rtt/42695712' Average FPS: 10.4845 Best FPS: 25.641 Worst FPS: 7.48363 
    1825 16:25:45: Render Target 'rtt/42695776' Average FPS: 10.486 Best FPS: 25.6167 Worst FPS: 7.48363 
    1826 16:25:45: Render Target 'rtt/42695840' Average FPS: 10.4866 Best FPS: 25.6167 Worst FPS: 7.47664 
    1827 16:25:45: Render Target 'rtt/42695904' Average FPS: 10.4867 Best FPS: 25.6167 Worst FPS: 7.48363 
    1828 16:25:45: Render Target 'rtt/42695968' Average FPS: 10.486 Best FPS: 25.6167 Worst FPS: 7.48363 
    1829 16:25:45: *-*-* OGRE Shutdown 
    1830 16:25:45: Unregistering ResourceManager for type Compositor 
    1831 16:25:45: Unregistering ResourceManager for type Font 
    1832 16:25:45: Unregistering ResourceManager for type Skeleton 
    1833 16:25:45: Unregistering ResourceManager for type Mesh 
    1834 16:25:45: Unregistering ResourceManager for type HighLevelGpuProgram 
    1835 16:25:45: Unloading library .\Plugin_CgProgramManager 
    1836 16:25:45: Unloading library .\Plugin_OctreeSceneManager 
    1837 16:25:45: Unloading library .\Plugin_BSPSceneManager 
    1838 16:25:45: Unloading library .\Plugin_ParticleFX 
    1839 16:25:45: Render Target 'OGRE Render Window' Average FPS: 10.4842 Best FPS: 25.6167 Worst FPS: 7.47664 
    1840 16:25:45: D3D9 : Shutting down cleanly. 
    1841 16:25:45: Unregistering ResourceManager for type Texture 
    1842 16:25:45: Unregistering ResourceManager for type GpuProgram 
    1843 16:25:45: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    1844 16:25:45: Unloading library .\RenderSystem_Direct3D9 
    1845 16:25:45: Unregistering ResourceManager for type Material 
    1846 16:25:45: Unloading library OgrePlatform.dll 
     168114:47:07: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     168214:47:07: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     168314:47:07: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     168414:47:07: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     168514:47:07: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     168614:47:07: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     168714:47:07: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     168814:47:07: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     168914:47:07: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     169014:47:07: Parsing script X3D.material 
     169114:47:07: Parsing script GameTools_Glow.compositor 
     169214:47:07: Parsing script GameTools_ToneMap.compositor 
     169314:47:07: Parsing script sample.fontdef 
     169414:47:07: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     169514:47:07: Parsing script GameTools.particle 
     169614:47:07: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     169714:47:07: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     169814:47:07: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     169914:47:07: Parsing script Compositor.overlay 
     170014:47:07: Parsing script DP3.overlay 
     170114:47:07: Parsing script Example-CubeMapping.overlay 
     170214:47:07: Parsing script Example-DynTex.overlay 
     170314:47:07: Parsing script Example-Water.overlay 
     170414:47:07: Parsing script FullScreen.overlay 
     170514:47:07: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     170614:47:07: Parsing script Shadows.overlay 
     170714:47:07: Finished parsing scripts for resource group General 
     170814:47:07: Parsing scripts for resource group Internal 
     170914:47:07: Finished parsing scripts for resource group Internal 
     171014:47:07: Creating viewport on target 'rtt/3191968', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171114:47:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     171214:47:07: Creating viewport on target 'rtt/3193824', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171314:47:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     171414:47:07: Creating viewport on target 'rtt/3173280', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171514:47:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     171614:47:07: Creating viewport on target 'rtt/3227424', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171714:47:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     171814:47:07: Creating viewport on target 'rtt/3227488', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     171914:47:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     172014:47:07: Texture: stormy_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     172114:47:07: Texture: stormy_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     172214:47:07: Texture: stormy_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     172314:47:07: Texture: stormy_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     172414:47:07: Texture: stormy_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     172514:47:07: Texture: stormy_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     172614:47:07: Mesh: Loading athene.mesh. 
     172714:47:07: Can't assign material 1 - Default to SubEntity of head because this Material does not exist. Have you forgotten to define it in a .material script? 
     172814:47:07: Creating viewport on target 'rtt/42704800', rendering from camera 'psys1_HPP_IMPOSTOR_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     172914:47:07: Viewport for camera 'psys1_HPP_IMPOSTOR_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     173014:47:07: WARNING: Texture instance 'psys1_HPP_IMPOSTOR' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     173114:47:07: Creating viewport on target 'rtt/42704864', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     173214:47:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     173314:47:07: Creating viewport on target 'rtt/42731424', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     173414:47:07: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     173514:47:07: Creating viewport on target 'rtt/42731776', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     173614:47:07: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     173714:47:07: WARNING: Texture instance 'ILLUMMODULE_SCENE_CAMERA_DEPTH' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     173814:47:07: Creating viewport on target 'rtt/42732128', rendering from camera 'psys1_LIGHT_VOLUME_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     173914:47:07: Viewport for camera 'psys1_LIGHT_VOLUME_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     174014:47:07: WARNING: Texture instance 'psys1_LIGHT_VOLUME' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     174114:47:07: Win32Input8: DirectInput Activation Starts 
     174214:47:07: Win32Input8: Establishing keyboard input. 
     174314:47:07: Win32Input8: Keyboard input established. 
     174414:47:07: Win32Input8: Initializing mouse input in immediate mode. 
     174514:47:07: Win32Input8: Mouse input in immediate mode initialized. 
     174614:47:07: Win32Input8: DirectInput OK. 
     174714:47:07: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     174814:47:07: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     174914:47:07: Texture: rockwall.tga: Loading 1 faces(PF_R8G8B8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     175014:47:07: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     175114:47:07: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     175214:47:07: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     175314:47:07: Texture: smoke2.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     175414:47:08: D3D9 : Loading 2D Texture, image name : 'pamacs.dds' with 2147483647 mip map levels 
     175514:47:13: Unregistering ResourceManager for type BspLevel 
     175614:47:13: Render Target 'rtt/3191968' Average FPS: 211.226 Best FPS: 320.359 Worst FPS: 197.015 
     175714:47:13: Render Target 'rtt/3227424' Average FPS: 211.314 Best FPS: 320.04 Worst FPS: 197.211 
     175814:47:13: Render Target 'rtt/3173280' Average FPS: 211.314 Best FPS: 320.04 Worst FPS: 197.211 
     175914:47:13: Render Target 'rtt/3227488' Average FPS: 211.346 Best FPS: 321.037 Worst FPS: 197.211 
     176014:47:13: Render Target 'rtt/3193824' Average FPS: 211.233 Best FPS: 320.359 Worst FPS: 197.015 
     176114:47:13: Render Target 'rtt/42732128' Average FPS: 207.479 Best FPS: 296.112 Worst FPS: 197.211 
     176214:47:13: Render Target 'rtt/42731776' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     176314:47:13: Render Target 'rtt/42731424' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     176414:47:13: Render Target 'rtt/42704864' Average FPS: 207.434 Best FPS: 296.112 Worst FPS: 197.015 
     176514:47:13: Render Target 'rtt/42704800' Average FPS: 207.434 Best FPS: 296.112 Worst FPS: 197.015 
     176614:47:13: *-*-* OGRE Shutdown 
     176714:47:13: Unregistering ResourceManager for type Compositor 
     176814:47:13: Unregistering ResourceManager for type Font 
     176914:47:13: Unregistering ResourceManager for type Skeleton 
     177014:47:13: Unregistering ResourceManager for type Mesh 
     177114:47:13: Unregistering ResourceManager for type HighLevelGpuProgram 
     177214:47:13: Unloading library .\Plugin_CgProgramManager 
     177314:47:13: Unloading library .\Plugin_OctreeSceneManager 
     177414:47:13: Unloading library .\Plugin_BSPSceneManager 
     177514:47:13: Unloading library .\Plugin_ParticleFX 
     177614:47:13: Render Target 'OGRE Render Window' Average FPS: 211.216 Best FPS: 320.04 Worst FPS: 197.015 
     177714:47:13: D3D9 : Shutting down cleanly. 
     177814:47:13: Unregistering ResourceManager for type Texture 
     177914:47:13: Unregistering ResourceManager for type GpuProgram 
     178014:47:13: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     178114:47:13: Unloading library .\RenderSystem_Direct3D9 
     178214:47:13: Unregistering ResourceManager for type Material 
     178314:47:13: Unloading library OgrePlatform.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/src/GameToolsToneMapDemo/include/GameToolsToneMapDemo.h

    r1683 r1831  
    144144                mFrameListener= new ParticleDemoFrameListener(mWindow, 
    145145                                                                                        mCamera ); 
    146     mRoot->addFrameListener(mFrameListener); 
     146                mFrameListener->setPriority(1);  
     147        mRoot->addFrameListener(mFrameListener); 
     148        OgreIlluminationManager::getSingleton().setPriority(2); 
    147149        mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 
    148150   } 
  • GTP/trunk/App/Demos/Illum/Ogre/src/HierarchicalSystem/include/HierarchicalSystem.h

    r1671 r1831  
    8080         virtual void chooseSceneManager(void) 
    8181    { 
     82                ExampleApplication::chooseSceneManager(); 
    8283        // Get the SceneManager, in this case a generic one 
    83         mSceneMgr = mRoot->createSceneManager("TerrainSceneManager"); 
     84       // mSceneMgr = mRoot->createSceneManager("TerrainSceneManager"); 
    8485    } 
    8586 
     
    9192                OgreIlluminationManager::getSingleton().setMainViewport(mWindow->getViewport(0)); 
    9293                 
    93                 std::string terrain_cfg("terrain.cfg"); 
    94                 mSceneMgr -> setWorldGeometry( terrain_cfg ); 
     94                //std::string terrain_cfg("terrain.cfg"); 
     95                //mSceneMgr -> setWorldGeometry( terrain_cfg ); 
    9596 
    9697                Root::getSingleton()._setCurrentSceneManager(mSceneMgr); 
Note: See TracChangeset for help on using the changeset viewer.