Changeset 1897 for GTP/trunk/App/Demos/Illum
- Timestamp:
- 12/15/06 12:36:42 (18 years ago)
- Location:
- GTP/trunk/App/Demos/Illum/Ogre
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/MetalTeapotNew.hlsl
r1885 r1897 89 89 dt = 1.0 / dt; 90 90 91 float t = 0.01; //dt;91 float t = 0.01; 92 92 if(min > length(x)) 93 93 { 94 94 95 float a = 1; 95 96 float b = 2 * dot(R, x); … … 97 98 98 99 float dis = b*b - 4*a*c; 99 float t1 = (-b + sqrt(dis))/ 2 * a;100 float t2 = (-b - sqrt(dis))/ 2 * a;100 float t1 = (-b + sqrt(dis))/ 2.0 * a; 101 float t2 = (-b - sqrt(dis))/ 2.0 * a; 101 102 102 103 if(t1 > 0 && (t2 < 0 || t1 < t2)) 103 t = t1 / ( a + t1);104 t = 1.0;//t1 / ( a + t1); 104 105 else if(t2 > 0) 105 t = t2 / ( a + t2); 106 t = 1.0;//t2 / ( a + t2); 107 //t = 0.011; 106 108 } 107 109 … … 173 175 samplerCUBE mp3Color, 174 176 samplerCUBE mp3Dist, 177 float min, 175 178 float min1, 176 179 float min2, … … 192 195 if(!valid1 && ! valid2) 193 196 { 194 linearSearch(x, R, N, mp3Dist, 0, p, dl, dp, llp, ppp);197 linearSearch(x, R, N, mp3Dist, min, p, dl, dp, llp, ppp); 195 198 Il.a = 1; 196 199 secantSearch(x, R, mp3Dist, dl, dp, llp, ppp, p); … … 252 255 uniform float3 lastCenter, 253 256 uniform float refIndex, 257 float min, 254 258 float min1, 255 259 float min2 … … 276 280 float3 Nl; 277 281 float4 Il; 278 float3 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min 1, min2, Il, Nl);282 float3 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min, min1, min2, Il, Nl); 279 283 if(Il.a == 0) 280 284 Il = readCubeMap(CubeMap, l); … … 293 297 uniform float3 lastCenter, 294 298 uniform float refIndex, 299 float min, 295 300 float min1, 296 301 float min2) … … 318 323 float3 Nl; 319 324 float4 Il; 320 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min 1, min2, Il, Nl);325 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min, min1, min2, Il, Nl); 321 326 if(Il.a == 0) 322 327 { … … 333 338 334 339 } 335 if(I.a == 0)336 I = readCubeMap(CubeMap, l); 340 /* if(I.a == 0) 341 I = readCubeMap(CubeMap, l);*/ 337 342 Irefl = I; 338 343 … … 363 368 float3 Nl; 364 369 float4 Il; 365 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min 1, min2, Il, Nl);370 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min, min1, min2, Il, Nl); 366 371 if(Il.a == 0) 367 372 { … … 396 401 uniform float SingleBounce, 397 402 uniform float refIndex, 403 uniform float4 min, 398 404 uniform float4 min1, 399 405 uniform float4 min2 400 406 ):COLOR 401 407 { 402 min1.x = 1.0 / min1.x;403 min2.x = 1.0 / min2.x;408 // min1.x = 1.0 / min1.x; 409 // min2.x = 1.0 / min2.x; 404 410 float4 Color = 1.0; 405 411 if(SingleBounce == 1) 406 Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min 1.x, min2.x);412 Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min.w, min1.w, min2.w); 407 413 else 408 Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min 1.x, min2.x);414 Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min.w, min1.w, min2.w); 409 415 410 416 return Color; -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/MetalTeapot.material
r1885 r1897 204 204 resolution 1024 205 205 update_interval 0 206 get_minmax true 207 min_var_name min 206 208 distance_calc false 207 209 face_angle_calc false -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log
r1885 r1897 1 15:08:26: Creating resource group General2 15:08:26: Creating resource group Internal3 15:08:26: Creating resource group Autodetect4 15:08:26: Registering ResourceManager for type Material5 15:08:26: Registering ResourceManager for type Mesh6 15:08:26: Registering ResourceManager for type Skeleton7 15:08:26: MovableObjectFactory for type 'ParticleSystem' registered.8 15:08:26: Loading library OgrePlatform_d.dll9 15:08:26: OverlayElementFactory for type Panel registered.10 15:08:26: OverlayElementFactory for type BorderPanel registered.11 15:08:26: OverlayElementFactory for type TextArea registered.12 15:08:26: Registering ResourceManager for type Font13 15:08:26: ArchiveFactory for archive type FileSystem registered.14 15:08:26: ArchiveFactory for archive type Zip registered.15 15:08:26: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 200516 15:08:26: 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 raw17 15:08:26: Registering ResourceManager for type HighLevelGpuProgram18 15:08:26: Registering ResourceManager for type Compositor19 15:08:26: MovableObjectFactory for type 'Entity' registered.20 15:08:26: MovableObjectFactory for type 'Light' registered.21 15:08:26: MovableObjectFactory for type 'BillboardSet' registered.22 15:08:26: MovableObjectFactory for type 'ManualObject' registered.23 15:08:26: MovableObjectFactory for type 'BillboardChain' registered.24 15:08:26: MovableObjectFactory for type 'RibbonTrail' registered.25 15:08:26: Loading library .\RenderSystem_Direct3D926 15:08:26: D3D9 : Direct3D9 Rendering Subsystem created.27 15:08:26: D3D9: Driver Detection Starts28 15:08:26: D3D9: Driver Detection Ends29 15:08:26: Loading library .\Plugin_ParticleFX30 15:08:26: Particle Emitter Type 'Point' registered31 15:08:26: Particle Emitter Type 'Box' registered32 15:08:26: Particle Emitter Type 'Ellipsoid' registered33 15:08:26: Particle Emitter Type 'Cylinder' registered34 15:08:26: Particle Emitter Type 'Ring' registered35 15:08:26: Particle Emitter Type 'HollowEllipsoid' registered36 15:08:26: Particle Affector Type 'LinearForce' registered37 15:08:26: Particle Affector Type 'ColourFader' registered38 15:08:26: Particle Affector Type 'ColourFader2' registered39 15:08:26: Particle Affector Type 'ColourImage' registered40 15:08:26: Particle Affector Type 'ColourInterpolator' registered41 15:08:26: Particle Affector Type 'Scaler' registered42 15:08:26: Particle Affector Type 'Rotator' registered43 15:08:26: Particle Affector Type 'DirectionRandomiser' registered44 15:08:26: Particle Affector Type 'DeflectorPlane' registered45 15:08:26: Loading library .\Plugin_BSPSceneManager46 15:08:26: Registering ResourceManager for type BspLevel47 15:08:26: Loading library .\Plugin_OctreeSceneManager48 15:08:26: Loading library .\Plugin_CgProgramManager49 15:08:26: *-*-* OGRE Initialising50 15:08:26: *-*-* Version 1.2.0 (Dagon)51 15:08:26: Creating resource group Bootstrap52 15:08:26: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'53 15:08:26: Added resource location '../../Media' of type 'FileSystem' to resource group 'General'54 15:08:26: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General'55 15:08:26: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General'56 15:08:26: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General'57 15:08:26: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General'58 15:08:26: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General'59 15:08:26: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General'60 15:08:26: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General'61 15:08:26: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General'62 15:08:26: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'63 15:08:26: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General'64 15:08:26: D3D9 : RenderSystem Option: Allow NVPerfHUD = No65 15:08:26: D3D9 : RenderSystem Option: Anti aliasing = None66 15:08:26: D3D9 : RenderSystem Option: Floating-point mode = Fastest67 15:08:26: D3D9 : RenderSystem Option: Full Screen = No68 15:08:26: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX269 15:08:26: D3D9 : RenderSystem Option: VSync = No70 15:08:26: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour71 15:08:26: D3D9 : Subsystem Initialising72 15:08:26: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false73 15:08:26: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp74 15:08:26: 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:08:26: Registering ResourceManager for type Texture76 15:08:26: Registering ResourceManager for type GpuProgram77 15:08:26: RenderSystem capabilities78 15:08:26: -------------------------79 15:08:26: * Hardware generation of mipmaps: yes80 15:08:26: * Texture blending: yes81 15:08:26: * Anisotropic texture filtering: yes82 15:08:26: * Dot product texture operation: yes83 15:08:26: * Cube mapping: yes84 15:08:26: * Hardware stencil buffer: yes85 15:08:26: - Stencil depth: 886 15:08:26: - Two sided stencil support: yes87 15:08:26: - Wrap stencil values: yes88 15:08:26: * Hardware vertex / index buffers: yes89 15:08:26: * Vertex programs: yes90 15:08:26: - Max vertex program version: vs_3_091 15:08:26: * Fragment programs: yes92 15:08:26: - Max fragment program version: ps_3_093 15:08:26: * Texture Compression: yes94 15:08:26: - DXT: yes95 15:08:26: - VTC: no96 15:08:26: * Scissor Rectangle: yes97 15:08:26: * Hardware Occlusion Query: yes98 15:08:26: * User clip planes: yes99 15:08:26: * VET_UBYTE4 vertex element type: yes100 15:08:26: * Infinite far plane projection: yes101 15:08:26: * Hardware render-to-texture: yes102 15:08:26: * Floating point textures: yes103 15:08:26: * Non-power-of-two textures: yes104 15:08:26: * Volume textures: yes105 15:08:26: * Multiple Render Targets: 4106 15:08:26: * Max Point Size: 8192107 15:08:26: ***************************************108 15:08:26: *** D3D9 : Subsystem Initialised OK ***109 15:08:26: ***************************************110 15:08:26: ResourceBackgroundQueue - threading disabled111 15:08:26: Particle Renderer Type 'billboard' registered112 15:08:26: Particle Renderer Type 'sprite' registered113 15:08: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: 0114 15:08:26: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600115 15:08:26: Parsing scripts for resource group Autodetect116 15:08:26: Finished parsing scripts for resource group Autodetect117 15:08:26: Parsing scripts for resource group Bootstrap118 15:08:26: Parsing script OgreCore.material119 15:08:26: Parsing script OgreProfiler.material120 15:08:26: Parsing script Ogre.fontdef121 15:08:26: Parsing script OgreDebugPanel.overlay122 15:08: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.123 15:08:26: 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:08:27: 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:08:27: Font TrebuchetMSBoldusing texture size 512x512126 15:08:27: Info: Freetype returned null for character 160 in font TrebuchetMSBold127 15:08:27: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.128 15:08:27: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.129 15:08:27: Parsing script OgreLoadingPanel.overlay130 15:08:27: Finished parsing scripts for resource group Bootstrap131 15:08:27: Parsing scripts for resource group General132 15:08:27: Parsing script GameTools.program133 15:08:27: Parsing script atlascube.material134 15:08:27: Parsing script colorcube.material135 15:08:27: Parsing script difflab.material136 15:08:27: An exception has been thrown!1 09:55:02: Creating resource group General 2 09:55:02: Creating resource group Internal 3 09:55:02: Creating resource group Autodetect 4 09:55:02: Registering ResourceManager for type Material 5 09:55:02: Registering ResourceManager for type Mesh 6 09:55:02: Registering ResourceManager for type Skeleton 7 09:55:02: MovableObjectFactory for type 'ParticleSystem' registered. 8 09:55:02: Loading library OgrePlatform_d.dll 9 09:55:02: OverlayElementFactory for type Panel registered. 10 09:55:02: OverlayElementFactory for type BorderPanel registered. 11 09:55:02: OverlayElementFactory for type TextArea registered. 12 09:55:02: Registering ResourceManager for type Font 13 09:55:02: ArchiveFactory for archive type FileSystem registered. 14 09:55:02: ArchiveFactory for archive type Zip registered. 15 09:55:02: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 09:55:02: 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 09:55:02: Registering ResourceManager for type HighLevelGpuProgram 18 09:55:02: Registering ResourceManager for type Compositor 19 09:55:02: MovableObjectFactory for type 'Entity' registered. 20 09:55:02: MovableObjectFactory for type 'Light' registered. 21 09:55:02: MovableObjectFactory for type 'BillboardSet' registered. 22 09:55:02: MovableObjectFactory for type 'ManualObject' registered. 23 09:55:02: MovableObjectFactory for type 'BillboardChain' registered. 24 09:55:02: MovableObjectFactory for type 'RibbonTrail' registered. 25 09:55:02: Loading library .\RenderSystem_Direct3D9 26 09:55:02: D3D9 : Direct3D9 Rendering Subsystem created. 27 09:55:02: D3D9: Driver Detection Starts 28 09:55:02: D3D9: Driver Detection Ends 29 09:55:02: Loading library .\Plugin_ParticleFX 30 09:55:02: Particle Emitter Type 'Point' registered 31 09:55:02: Particle Emitter Type 'Box' registered 32 09:55:02: Particle Emitter Type 'Ellipsoid' registered 33 09:55:02: Particle Emitter Type 'Cylinder' registered 34 09:55:02: Particle Emitter Type 'Ring' registered 35 09:55:02: Particle Emitter Type 'HollowEllipsoid' registered 36 09:55:02: Particle Affector Type 'LinearForce' registered 37 09:55:02: Particle Affector Type 'ColourFader' registered 38 09:55:02: Particle Affector Type 'ColourFader2' registered 39 09:55:02: Particle Affector Type 'ColourImage' registered 40 09:55:02: Particle Affector Type 'ColourInterpolator' registered 41 09:55:02: Particle Affector Type 'Scaler' registered 42 09:55:02: Particle Affector Type 'Rotator' registered 43 09:55:02: Particle Affector Type 'DirectionRandomiser' registered 44 09:55:02: Particle Affector Type 'DeflectorPlane' registered 45 09:55:02: Loading library .\Plugin_BSPSceneManager 46 09:55:02: Registering ResourceManager for type BspLevel 47 09:55:02: Loading library .\Plugin_OctreeSceneManager 48 09:55:02: Loading library .\Plugin_CgProgramManager 49 09:55:02: *-*-* OGRE Initialising 50 09:55:02: *-*-* Version 1.2.0 (Dagon) 51 09:55:02: Creating resource group Bootstrap 52 09:55:02: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 09:55:02: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 09:55:02: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 09:55:02: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 09:55:02: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 09:55:02: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 09:55:02: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 09:55:02: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 09:55:02: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 09:55:02: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 09:55:02: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 09:55:02: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 09:55:02: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 09:55:02: D3D9 : RenderSystem Option: Anti aliasing = None 66 09:55:02: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 09:55:02: D3D9 : RenderSystem Option: Full Screen = No 68 09:55:02: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 69 09:55:02: D3D9 : RenderSystem Option: VSync = No 70 09:55:02: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 09:55:03: D3D9 : Subsystem Initialising 72 09:55:03: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 09:55:03: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 09:55:03: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 09:55:03: Registering ResourceManager for type Texture 76 09:55:03: Registering ResourceManager for type GpuProgram 77 09:55:03: RenderSystem capabilities 78 09:55:03: ------------------------- 79 09:55:03: * Hardware generation of mipmaps: yes 80 09:55:03: * Texture blending: yes 81 09:55:03: * Anisotropic texture filtering: yes 82 09:55:03: * Dot product texture operation: yes 83 09:55:03: * Cube mapping: yes 84 09:55:03: * Hardware stencil buffer: yes 85 09:55:03: - Stencil depth: 8 86 09:55:03: - Two sided stencil support: yes 87 09:55:03: - Wrap stencil values: yes 88 09:55:03: * Hardware vertex / index buffers: yes 89 09:55:03: * Vertex programs: yes 90 09:55:03: - Max vertex program version: vs_3_0 91 09:55:03: * Fragment programs: yes 92 09:55:03: - Max fragment program version: ps_3_0 93 09:55:03: * Texture Compression: yes 94 09:55:03: - DXT: yes 95 09:55:03: - VTC: no 96 09:55:03: * Scissor Rectangle: yes 97 09:55:03: * Hardware Occlusion Query: yes 98 09:55:03: * User clip planes: yes 99 09:55:03: * VET_UBYTE4 vertex element type: yes 100 09:55:03: * Infinite far plane projection: yes 101 09:55:03: * Hardware render-to-texture: yes 102 09:55:03: * Floating point textures: yes 103 09:55:03: * Non-power-of-two textures: yes 104 09:55:03: * Volume textures: yes 105 09:55:03: * Multiple Render Targets: 4 106 09:55:03: * Max Point Size: 8192 107 09:55:03: *************************************** 108 09:55:03: *** D3D9 : Subsystem Initialised OK *** 109 09:55:03: *************************************** 110 09:55:03: ResourceBackgroundQueue - threading disabled 111 09:55:03: Particle Renderer Type 'billboard' registered 112 09:55:03: Particle Renderer Type 'sprite' registered 113 09:55:03: 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 09:55:03: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 09:55:03: Parsing scripts for resource group Autodetect 116 09:55:03: Finished parsing scripts for resource group Autodetect 117 09:55:03: Parsing scripts for resource group Bootstrap 118 09:55:03: Parsing script OgreCore.material 119 09:55:03: Parsing script OgreProfiler.material 120 09:55:03: Parsing script Ogre.fontdef 121 09:55:03: Parsing script OgreDebugPanel.overlay 122 09:55:03: 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 09:55:03: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 124 09:55:03: 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 09:55:03: Font TrebuchetMSBoldusing texture size 512x512 126 09:55:03: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 09:55:03: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 128 09:55:03: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 09:55:03: Parsing script OgreLoadingPanel.overlay 130 09:55:03: Finished parsing scripts for resource group Bootstrap 131 09:55:03: Parsing scripts for resource group General 132 09:55:03: Parsing script GameTools.program 133 09:55:03: Parsing script atlascube.material 134 09:55:03: Parsing script colorcube.material 135 09:55:03: Parsing script difflab.material 136 09:55:04: An exception has been thrown! 137 137 138 138 ----------------------------------- … … 145 145 Line: 779 146 146 Stack unwinding: <<beginning of stack>> 147 15:08:27: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!147 09:55:04: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 148 148 149 149 ----------------------------------- … … 156 156 Line: 779 157 157 Stack unwinding: <<beginning of stack>> 158 15:08:27: An exception has been thrown!158 09:55:04: An exception has been thrown! 159 159 160 160 ----------------------------------- … … 167 167 Line: 779 168 168 Stack unwinding: <<beginning of stack>> 169 15:08:27: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!169 09:55:04: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 170 170 171 171 ----------------------------------- … … 178 178 Line: 779 179 179 Stack unwinding: <<beginning of stack>> 180 15:08:27: An exception has been thrown!180 09:55:04: An exception has been thrown! 181 181 182 182 ----------------------------------- … … 189 189 Line: 779 190 190 Stack unwinding: <<beginning of stack>> 191 15:08:27: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!191 09:55:04: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 192 192 193 193 ----------------------------------- … … 200 200 Line: 779 201 201 Stack unwinding: <<beginning of stack>> 202 15:08:27: An exception has been thrown!202 09:55:04: An exception has been thrown! 203 203 204 204 ----------------------------------- … … 211 211 Line: 779 212 212 Stack unwinding: <<beginning of stack>> 213 15:08:27: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!213 09:55:04: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 214 214 215 215 ----------------------------------- … … 222 222 Line: 779 223 223 Stack unwinding: <<beginning of stack>> 224 15:08:27: An exception has been thrown!224 09:55:04: An exception has been thrown! 225 225 226 226 ----------------------------------- … … 233 233 Line: 779 234 234 Stack unwinding: <<beginning of stack>> 235 15:08:27: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!235 09:55:04: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 236 236 237 237 ----------------------------------- … … 244 244 Line: 779 245 245 Stack unwinding: <<beginning of stack>> 246 15:08:27: An exception has been thrown!246 09:55:04: An exception has been thrown! 247 247 248 248 ----------------------------------- … … 255 255 Line: 779 256 256 Stack unwinding: <<beginning of stack>> 257 15:08:27: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!257 09:55:04: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 258 258 259 259 ----------------------------------- … … 266 266 Line: 779 267 267 Stack unwinding: <<beginning of stack>> 268 15:08:27: An exception has been thrown!268 09:55:04: An exception has been thrown! 269 269 270 270 ----------------------------------- … … 277 277 Line: 779 278 278 Stack unwinding: <<beginning of stack>> 279 15:08:27: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!279 09:55:04: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 280 280 281 281 ----------------------------------- … … 288 288 Line: 779 289 289 Stack unwinding: <<beginning of stack>> 290 15:08:27: An exception has been thrown!290 09:55:04: An exception has been thrown! 291 291 292 292 ----------------------------------- … … 299 299 Line: 779 300 300 Stack unwinding: <<beginning of stack>> 301 15:08:27: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!301 09:55:04: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 302 302 303 303 ----------------------------------- … … 310 310 Line: 779 311 311 Stack unwinding: <<beginning of stack>> 312 15:08:27: An exception has been thrown!312 09:55:04: An exception has been thrown! 313 313 314 314 ----------------------------------- … … 321 321 Line: 779 322 322 Stack unwinding: <<beginning of stack>> 323 15:08:27: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!323 09:55:04: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 324 324 325 325 ----------------------------------- … … 332 332 Line: 779 333 333 Stack unwinding: <<beginning of stack>> 334 15:08:27: An exception has been thrown!334 09:55:04: An exception has been thrown! 335 335 336 336 ----------------------------------- … … 343 343 Line: 779 344 344 Stack unwinding: <<beginning of stack>> 345 15:08:27: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!345 09:55:04: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 346 346 347 347 ----------------------------------- … … 354 354 Line: 779 355 355 Stack unwinding: <<beginning of stack>> 356 15:08:27: An exception has been thrown!356 09:55:04: An exception has been thrown! 357 357 358 358 ----------------------------------- … … 365 365 Line: 779 366 366 Stack unwinding: <<beginning of stack>> 367 15:08:27: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!367 09:55:04: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 368 368 369 369 ----------------------------------- … … 376 376 Line: 779 377 377 Stack unwinding: <<beginning of stack>> 378 15:08:27: An exception has been thrown!378 09:55:04: An exception has been thrown! 379 379 380 380 ----------------------------------- … … 387 387 Line: 779 388 388 Stack unwinding: <<beginning of stack>> 389 15:08:27: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!389 09:55:04: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 390 390 391 391 ----------------------------------- … … 398 398 Line: 779 399 399 Stack unwinding: <<beginning of stack>> 400 15:08:27: An exception has been thrown!400 09:55:04: An exception has been thrown! 401 401 402 402 ----------------------------------- … … 409 409 Line: 779 410 410 Stack unwinding: <<beginning of stack>> 411 15:08:27: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!411 09:55:04: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 412 412 413 413 ----------------------------------- … … 420 420 Line: 779 421 421 Stack unwinding: <<beginning of stack>> 422 15:08:27: An exception has been thrown!422 09:55:04: An exception has been thrown! 423 423 424 424 ----------------------------------- … … 431 431 Line: 779 432 432 Stack unwinding: <<beginning of stack>> 433 15:08:27: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!433 09:55:04: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 434 434 435 435 ----------------------------------- … … 442 442 Line: 779 443 443 Stack unwinding: <<beginning of stack>> 444 15:08:27: An exception has been thrown!444 09:55:04: An exception has been thrown! 445 445 446 446 ----------------------------------- … … 453 453 Line: 779 454 454 Stack unwinding: <<beginning of stack>> 455 15:08:27: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!455 09:55:04: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 456 456 457 457 ----------------------------------- … … 464 464 Line: 779 465 465 Stack unwinding: <<beginning of stack>> 466 15:08:27: An exception has been thrown!466 09:55:04: An exception has been thrown! 467 467 468 468 ----------------------------------- … … 475 475 Line: 779 476 476 Stack unwinding: <<beginning of stack>> 477 15:08:27: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!477 09:55:04: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 478 478 479 479 ----------------------------------- … … 486 486 Line: 779 487 487 Stack unwinding: <<beginning of stack>> 488 15:08:27: An exception has been thrown!488 09:55:04: An exception has been thrown! 489 489 490 490 ----------------------------------- … … 497 497 Line: 779 498 498 Stack unwinding: <<beginning of stack>> 499 15:08:27: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!499 09:55:04: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 500 500 501 501 ----------------------------------- … … 508 508 Line: 779 509 509 Stack unwinding: <<beginning of stack>> 510 15:08:27: An exception has been thrown!510 09:55:04: An exception has been thrown! 511 511 512 512 ----------------------------------- … … 519 519 Line: 779 520 520 Stack unwinding: <<beginning of stack>> 521 15:08:27: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!521 09:55:04: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 522 522 523 523 ----------------------------------- … … 530 530 Line: 779 531 531 Stack unwinding: <<beginning of stack>> 532 15:08:27: An exception has been thrown!532 09:55:04: An exception has been thrown! 533 533 534 534 ----------------------------------- … … 541 541 Line: 779 542 542 Stack unwinding: <<beginning of stack>> 543 15:08:27: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!543 09:55:04: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 544 544 545 545 ----------------------------------- … … 552 552 Line: 779 553 553 Stack unwinding: <<beginning of stack>> 554 15:08:27: An exception has been thrown!554 09:55:04: An exception has been thrown! 555 555 556 556 ----------------------------------- … … 563 563 Line: 779 564 564 Stack unwinding: <<beginning of stack>> 565 15:08:27: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!565 09:55:04: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 566 566 567 567 ----------------------------------- … … 574 574 Line: 779 575 575 Stack unwinding: <<beginning of stack>> 576 15:08:27: An exception has been thrown!576 09:55:04: An exception has been thrown! 577 577 578 578 ----------------------------------- … … 585 585 Line: 779 586 586 Stack unwinding: <<beginning of stack>> 587 15:08:27: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!587 09:55:04: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 588 588 589 589 ----------------------------------- … … 596 596 Line: 779 597 597 Stack unwinding: <<beginning of stack>> 598 15:08:27: Parsing script diffscene.material599 15:08:27: An exception has been thrown!598 09:55:04: Parsing script diffscene.material 599 09:55:04: An exception has been thrown! 600 600 601 601 ----------------------------------- … … 608 608 Line: 779 609 609 Stack unwinding: <<beginning of stack>> 610 15:08:27: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!610 09:55:04: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 611 611 612 612 ----------------------------------- … … 619 619 Line: 779 620 620 Stack unwinding: <<beginning of stack>> 621 15:08:27: An exception has been thrown!621 09:55:04: An exception has been thrown! 622 622 623 623 ----------------------------------- … … 630 630 Line: 779 631 631 Stack unwinding: <<beginning of stack>> 632 15:08:27: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!632 09:55:04: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 633 633 634 634 ----------------------------------- … … 641 641 Line: 779 642 642 Stack unwinding: <<beginning of stack>> 643 15:08:27: An exception has been thrown!643 09:55:04: An exception has been thrown! 644 644 645 645 ----------------------------------- … … 652 652 Line: 779 653 653 Stack unwinding: <<beginning of stack>> 654 15:08:27: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!654 09:55:04: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 655 655 656 656 ----------------------------------- … … 663 663 Line: 779 664 664 Stack unwinding: <<beginning of stack>> 665 15:08:27: An exception has been thrown!665 09:55:04: An exception has been thrown! 666 666 667 667 ----------------------------------- … … 674 674 Line: 779 675 675 Stack unwinding: <<beginning of stack>> 676 15:08:27: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!676 09:55:04: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 677 677 678 678 ----------------------------------- … … 685 685 Line: 779 686 686 Stack unwinding: <<beginning of stack>> 687 15:08:27: An exception has been thrown!687 09:55:04: An exception has been thrown! 688 688 689 689 ----------------------------------- … … 696 696 Line: 779 697 697 Stack unwinding: <<beginning of stack>> 698 15:08:27: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!698 09:55:04: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 699 699 700 700 ----------------------------------- … … 707 707 Line: 779 708 708 Stack unwinding: <<beginning of stack>> 709 15:08:27: An exception has been thrown!709 09:55:04: An exception has been thrown! 710 710 711 711 ----------------------------------- … … 718 718 Line: 779 719 719 Stack unwinding: <<beginning of stack>> 720 15:08:27: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!720 09:55:04: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 721 721 722 722 ----------------------------------- … … 729 729 Line: 779 730 730 Stack unwinding: <<beginning of stack>> 731 15:08:27: An exception has been thrown!731 09:55:04: An exception has been thrown! 732 732 733 733 ----------------------------------- … … 740 740 Line: 779 741 741 Stack unwinding: <<beginning of stack>> 742 15:08:27: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!742 09:55:04: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 743 743 744 744 ----------------------------------- … … 751 751 Line: 779 752 752 Stack unwinding: <<beginning of stack>> 753 15:08:27: An exception has been thrown!753 09:55:04: An exception has been thrown! 754 754 755 755 ----------------------------------- … … 762 762 Line: 779 763 763 Stack unwinding: <<beginning of stack>> 764 15:08:27: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!764 09:55:04: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 765 765 766 766 ----------------------------------- … … 773 773 Line: 779 774 774 Stack unwinding: <<beginning of stack>> 775 15:08:27: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857776 15:08:27: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857777 15:08:27: Parsing script Diffuse.material778 15:08:28: An exception has been thrown!775 09:55:04: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 776 09:55:04: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 777 09:55:04: Parsing script Diffuse.material 778 09:55:04: An exception has been thrown! 779 779 780 780 ----------------------------------- … … 787 787 Line: 779 788 788 Stack unwinding: <<beginning of stack>> 789 15:08:28: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!789 09:55:04: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 790 790 791 791 ----------------------------------- … … 798 798 Line: 779 799 799 Stack unwinding: <<beginning of stack>> 800 15:08:28: An exception has been thrown!800 09:55:05: An exception has been thrown! 801 801 802 802 ----------------------------------- … … 809 809 Line: 779 810 810 Stack unwinding: <<beginning of stack>> 811 15:08:28: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!811 09:55:05: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 812 812 813 813 ----------------------------------- … … 820 820 Line: 779 821 821 Stack unwinding: <<beginning of stack>> 822 15:08:32: An exception has been thrown!822 09:55:08: An exception has been thrown! 823 823 824 824 ----------------------------------- … … 831 831 Line: 779 832 832 Stack unwinding: <<beginning of stack>> 833 15:08:32: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown!833 09:55:08: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 834 834 835 835 ----------------------------------- … … 842 842 Line: 779 843 843 Stack unwinding: <<beginning of stack>> 844 15:08:32: An exception has been thrown!844 09:55:08: An exception has been thrown! 845 845 846 846 ----------------------------------- … … 853 853 Line: 779 854 854 Stack unwinding: <<beginning of stack>> 855 15:08:32: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!855 09:55:08: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 856 856 857 857 ----------------------------------- … … 864 864 Line: 779 865 865 Stack unwinding: <<beginning of stack>> 866 15:08:32: Parsing script EnvMetals.material867 15:08:32: An exception has been thrown!866 09:55:08: Parsing script EnvMetals.material 867 09:55:08: An exception has been thrown! 868 868 869 869 ----------------------------------- … … 876 876 Line: 779 877 877 Stack unwinding: <<beginning of stack>> 878 15:08:32: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!878 09:55:08: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 879 879 880 880 ----------------------------------- … … 887 887 Line: 779 888 888 Stack unwinding: <<beginning of stack>> 889 15:08:32: An exception has been thrown!889 09:55:08: An exception has been thrown! 890 890 891 891 ----------------------------------- … … 898 898 Line: 779 899 899 Stack unwinding: <<beginning of stack>> 900 15:08:32: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!900 09:55:08: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 901 901 902 902 ----------------------------------- … … 909 909 Line: 779 910 910 Stack unwinding: <<beginning of stack>> 911 15:08:32: An exception has been thrown!911 09:55:08: An exception has been thrown! 912 912 913 913 ----------------------------------- … … 920 920 Line: 779 921 921 Stack unwinding: <<beginning of stack>> 922 15:08:32: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!922 09:55:08: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 923 923 924 924 ----------------------------------- … … 931 931 Line: 779 932 932 Stack unwinding: <<beginning of stack>> 933 15:08:32: An exception has been thrown!933 09:55:08: An exception has been thrown! 934 934 935 935 ----------------------------------- … … 942 942 Line: 779 943 943 Stack unwinding: <<beginning of stack>> 944 15:08:32: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!944 09:55:08: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 945 945 946 946 ----------------------------------- … … 953 953 Line: 779 954 954 Stack unwinding: <<beginning of stack>> 955 15:08:32: Parsing script GameTools.material956 15:08:32: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5)957 15:08:32: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend958 15:08:32: An exception has been thrown!955 09:55:08: Parsing script GameTools.material 956 09:55:08: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 957 09:55:08: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 958 09:55:08: An exception has been thrown! 959 959 960 960 ----------------------------------- … … 967 967 Line: 779 968 968 Stack unwinding: <<beginning of stack>> 969 15:08:32: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!969 09:55:08: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 970 970 971 971 ----------------------------------- … … 978 978 Line: 779 979 979 Stack unwinding: <<beginning of stack>> 980 15:08:32: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend981 15:08:32: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.982 15:08:32: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend983 15:08:32: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend984 15:08:32: Parsing script GameTools_HPS.material985 15:08:32: An exception has been thrown!980 09:55:08: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 981 09:55:08: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 982 09:55:08: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 983 09:55:08: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 984 09:55:08: Parsing script GameTools_HPS.material 985 09:55:08: An exception has been thrown! 986 986 987 987 ----------------------------------- … … 994 994 Line: 779 995 995 Stack unwinding: <<beginning of stack>> 996 15:08:32: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!996 09:55:08: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 997 997 998 998 ----------------------------------- … … 1005 1005 Line: 779 1006 1006 Stack unwinding: <<beginning of stack>> 1007 15:08:32: An exception has been thrown!1007 09:55:08: An exception has been thrown! 1008 1008 1009 1009 ----------------------------------- … … 1016 1016 Line: 779 1017 1017 Stack unwinding: <<beginning of stack>> 1018 15:08:32: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1018 09:55:08: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1019 1019 1020 1020 ----------------------------------- … … 1027 1027 Line: 779 1028 1028 Stack unwinding: <<beginning of stack>> 1029 15:08:32: An exception has been thrown!1029 09:55:08: An exception has been thrown! 1030 1030 1031 1031 ----------------------------------- … … 1038 1038 Line: 779 1039 1039 Stack unwinding: <<beginning of stack>> 1040 15:08:32: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1040 09:55:08: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1041 1041 1042 1042 ----------------------------------- … … 1049 1049 Line: 779 1050 1050 Stack unwinding: <<beginning of stack>> 1051 15:08:32: An exception has been thrown!1051 09:55:08: An exception has been thrown! 1052 1052 1053 1053 ----------------------------------- … … 1060 1060 Line: 779 1061 1061 Stack unwinding: <<beginning of stack>> 1062 15:08:32: Error in material HPS_SMOKE_L_Depth at line 144 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1062 09:55:08: Error in material HPS_SMOKE_L_Depth at line 144 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1063 1063 1064 1064 ----------------------------------- … … 1071 1071 Line: 779 1072 1072 Stack unwinding: <<beginning of stack>> 1073 15:08:32: An exception has been thrown!1073 09:55:08: An exception has been thrown! 1074 1074 1075 1075 ----------------------------------- … … 1082 1082 Line: 779 1083 1083 Stack unwinding: <<beginning of stack>> 1084 15:08:32: Error in material HPS_SMOKE_L_Depth at line 146 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1084 09:55:08: Error in material HPS_SMOKE_L_Depth at line 146 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1085 1085 1086 1086 ----------------------------------- … … 1093 1093 Line: 779 1094 1094 Stack unwinding: <<beginning of stack>> 1095 15:08:32: An exception has been thrown!1095 09:55:08: An exception has been thrown! 1096 1096 1097 1097 ----------------------------------- … … 1104 1104 Line: 779 1105 1105 Stack unwinding: <<beginning of stack>> 1106 15:08:32: Error in material HPS_SMOKE_L_Depth at line 148 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1106 09:55:08: Error in material HPS_SMOKE_L_Depth at line 148 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1107 1107 1108 1108 ----------------------------------- … … 1115 1115 Line: 779 1116 1116 Stack unwinding: <<beginning of stack>> 1117 15:08:32: An exception has been thrown!1117 09:55:08: An exception has been thrown! 1118 1118 1119 1119 ----------------------------------- … … 1126 1126 Line: 779 1127 1127 Stack unwinding: <<beginning of stack>> 1128 15:08:32: Error in material HPS_SMOKE_L_Depth at line 149 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1128 09:55:08: Error in material HPS_SMOKE_L_Depth at line 149 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1129 1129 1130 1130 ----------------------------------- … … 1137 1137 Line: 779 1138 1138 Stack unwinding: <<beginning of stack>> 1139 15:08:32: An exception has been thrown!1139 09:55:08: An exception has been thrown! 1140 1140 1141 1141 ----------------------------------- … … 1148 1148 Line: 779 1149 1149 Stack unwinding: <<beginning of stack>> 1150 15:08:32: Error in material HPS_SMOKE_L_Depth at line 153 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1150 09:55:08: Error in material HPS_SMOKE_L_Depth at line 153 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1151 1151 1152 1152 ----------------------------------- … … 1159 1159 Line: 779 1160 1160 Stack unwinding: <<beginning of stack>> 1161 15:08:32: An exception has been thrown!1161 09:55:08: An exception has been thrown! 1162 1162 1163 1163 ----------------------------------- … … 1170 1170 Line: 779 1171 1171 Stack unwinding: <<beginning of stack>> 1172 15:08:32: Error in material HPS_SMOKE_L_Depth_Illum at line 222 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1172 09:55:08: Error in material HPS_SMOKE_L_Depth_Illum at line 222 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1173 1173 1174 1174 ----------------------------------- … … 1181 1181 Line: 779 1182 1182 Stack unwinding: <<beginning of stack>> 1183 15:08:32: An exception has been thrown!1183 09:55:08: An exception has been thrown! 1184 1184 1185 1185 ----------------------------------- … … 1192 1192 Line: 779 1193 1193 Stack unwinding: <<beginning of stack>> 1194 15:08:32: Error in material HPS_SMOKE_L_Depth_Illum at line 231 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1194 09:55:08: Error in material HPS_SMOKE_L_Depth_Illum at line 231 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1195 1195 1196 1196 ----------------------------------- … … 1203 1203 Line: 779 1204 1204 Stack unwinding: <<beginning of stack>> 1205 15:08:32: An exception has been thrown!1205 09:55:08: An exception has been thrown! 1206 1206 1207 1207 ----------------------------------- … … 1214 1214 Line: 779 1215 1215 Stack unwinding: <<beginning of stack>> 1216 15:08:32: Error in material HPS_SMOKE_L_Depth_Illum at line 232 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1216 09:55:08: Error in material HPS_SMOKE_L_Depth_Illum at line 232 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1217 1217 1218 1218 ----------------------------------- … … 1225 1225 Line: 779 1226 1226 Stack unwinding: <<beginning of stack>> 1227 15:08:32: An exception has been thrown!1227 09:55:08: An exception has been thrown! 1228 1228 1229 1229 ----------------------------------- … … 1236 1236 Line: 779 1237 1237 Stack unwinding: <<beginning of stack>> 1238 15:08:32: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1238 09:55:08: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1239 1239 1240 1240 ----------------------------------- … … 1247 1247 Line: 779 1248 1248 Stack unwinding: <<beginning of stack>> 1249 15:08:32: Parsing script GlassHead.material1250 15:08:32: An exception has been thrown!1249 09:55:08: Parsing script GlassHead.material 1250 09:55:08: An exception has been thrown! 1251 1251 1252 1252 ----------------------------------- … … 1259 1259 Line: 779 1260 1260 Stack unwinding: <<beginning of stack>> 1261 15:08:32: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1261 09:55:08: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1262 1262 1263 1263 ----------------------------------- … … 1270 1270 Line: 779 1271 1271 Stack unwinding: <<beginning of stack>> 1272 15:08:32: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.1273 15:08:32: An exception has been thrown!1272 09:55:08: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 1273 09:55:08: An exception has been thrown! 1274 1274 1275 1275 ----------------------------------- … … 1282 1282 Line: 779 1283 1283 Stack unwinding: <<beginning of stack>> 1284 15:08:32: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1284 09:55:08: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1285 1285 1286 1286 ----------------------------------- … … 1293 1293 Line: 779 1294 1294 Stack unwinding: <<beginning of stack>> 1295 15:08:32: An exception has been thrown!1295 09:55:08: An exception has been thrown! 1296 1296 1297 1297 ----------------------------------- … … 1304 1304 Line: 779 1305 1305 Stack unwinding: <<beginning of stack>> 1306 15:08:32: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1306 09:55:08: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1307 1307 1308 1308 ----------------------------------- … … 1315 1315 Line: 779 1316 1316 Stack unwinding: <<beginning of stack>> 1317 15:08:32: An exception has been thrown!1317 09:55:09: An exception has been thrown! 1318 1318 1319 1319 ----------------------------------- … … 1326 1326 Line: 779 1327 1327 Stack unwinding: <<beginning of stack>> 1328 15:08:32: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1328 09:55:09: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1329 1329 1330 1330 ----------------------------------- … … 1337 1337 Line: 779 1338 1338 Stack unwinding: <<beginning of stack>> 1339 15:08:33: Parsing script Glow.material1340 15:08:33: An exception has been thrown!1339 09:55:09: Parsing script Glow.material 1340 09:55:09: An exception has been thrown! 1341 1341 1342 1342 ----------------------------------- … … 1349 1349 Line: 779 1350 1350 Stack unwinding: <<beginning of stack>> 1351 15:08:33: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown!1351 09:55:09: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 1352 1352 1353 1353 ----------------------------------- … … 1360 1360 Line: 779 1361 1361 Stack unwinding: <<beginning of stack>> 1362 15:08:33: Parsing script hangar.material1363 15:08:33: Parsing script kupola.material1364 15:08:33: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1365 15:08:33: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1366 15:08:33: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1367 15:08:33: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1368 15:08:33: Parsing script MetalTeapot.material1369 15:08:33: An exception has been thrown!1362 09:55:09: Parsing script hangar.material 1363 09:55:09: Parsing script kupola.material 1364 09:55:09: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1365 09:55:09: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1366 09:55:09: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1367 09:55:09: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1368 09:55:09: Parsing script MetalTeapot.material 1369 09:55:09: An exception has been thrown! 1370 1370 1371 1371 ----------------------------------- … … 1378 1378 Line: 779 1379 1379 Stack unwinding: <<beginning of stack>> 1380 15:08:33: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1380 09:55:09: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1381 1381 1382 1382 ----------------------------------- … … 1389 1389 Line: 779 1390 1390 Stack unwinding: <<beginning of stack>> 1391 15:08:33: An exception has been thrown!1391 09:55:09: An exception has been thrown! 1392 1392 1393 1393 ----------------------------------- … … 1400 1400 Line: 779 1401 1401 Stack unwinding: <<beginning of stack>> 1402 15:08:33: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1402 09:55:09: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1403 1403 1404 1404 ----------------------------------- … … 1411 1411 Line: 779 1412 1412 Stack unwinding: <<beginning of stack>> 1413 15:08:33: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max'1414 15:08:33: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test1415 15:08:33: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max'1416 15:08:33: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test1417 15:08:42: An exception has been thrown!1413 09:55:09: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 1414 09:55:09: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 1415 09:55:09: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 1416 09:55:09: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 1417 09:55:21: An exception has been thrown! 1418 1418 1419 1419 ----------------------------------- … … 1426 1426 Line: 779 1427 1427 Stack unwinding: <<beginning of stack>> 1428 15:08:42: Error in material MetalTeapotMultipleBounce at line 254 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1428 09:55:21: Error in material MetalTeapotMultipleBounce at line 254 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1429 1429 1430 1430 ----------------------------------- … … 1437 1437 Line: 779 1438 1438 Stack unwinding: <<beginning of stack>> 1439 15:08:42: An exception has been thrown!1439 09:55:21: An exception has been thrown! 1440 1440 1441 1441 ----------------------------------- … … 1448 1448 Line: 779 1449 1449 Stack unwinding: <<beginning of stack>> 1450 15:08:42: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1450 09:55:21: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1451 1451 1452 1452 ----------------------------------- … … 1459 1459 Line: 779 1460 1460 Stack unwinding: <<beginning of stack>> 1461 15:08:42: Parsing script Ogre.material1462 15:08:42: Parsing script Particles.material1463 15:08:42: An exception has been thrown!1461 09:55:21: Parsing script Ogre.material 1462 09:55:21: Parsing script Particles.material 1463 09:55:21: An exception has been thrown! 1464 1464 1465 1465 ----------------------------------- … … 1472 1472 Line: 779 1473 1473 Stack unwinding: <<beginning of stack>> 1474 15:08:42: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!1474 09:55:21: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 1475 1475 1476 1476 ----------------------------------- … … 1483 1483 Line: 779 1484 1484 Stack unwinding: <<beginning of stack>> 1485 15:08:42: An exception has been thrown!1485 09:55:21: An exception has been thrown! 1486 1486 1487 1487 ----------------------------------- … … 1494 1494 Line: 779 1495 1495 Stack unwinding: <<beginning of stack>> 1496 15:08:42: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!1496 09:55:21: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 1497 1497 1498 1498 ----------------------------------- … … 1505 1505 Line: 779 1506 1506 Stack unwinding: <<beginning of stack>> 1507 15:08:42: Parsing script RaytraceDemo.material1508 15:08:42: Parsing script stairs.material1509 15:08:42: Parsing script terito.material1510 15:08:42: Parsing script uvegfolyoso2.material1511 15:08:42: An exception has been thrown!1507 09:55:21: Parsing script RaytraceDemo.material 1508 09:55:21: Parsing script stairs.material 1509 09:55:21: Parsing script terito.material 1510 09:55:21: Parsing script uvegfolyoso2.material 1511 09:55:21: An exception has been thrown! 1512 1512 1513 1513 ----------------------------------- … … 1520 1520 Line: 779 1521 1521 Stack unwinding: <<beginning of stack>> 1522 15:08:42: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1522 09:55:21: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1523 1523 1524 1524 ----------------------------------- … … 1531 1531 Line: 779 1532 1532 Stack unwinding: <<beginning of stack>> 1533 15:08:42: An exception has been thrown!1533 09:55:21: An exception has been thrown! 1534 1534 1535 1535 ----------------------------------- … … 1542 1542 Line: 779 1543 1543 Stack unwinding: <<beginning of stack>> 1544 15:08:42: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1544 09:55:21: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1545 1545 1546 1546 ----------------------------------- … … 1553 1553 Line: 779 1554 1554 Stack unwinding: <<beginning of stack>> 1555 15:08:42: An exception has been thrown!1555 09:55:21: An exception has been thrown! 1556 1556 1557 1557 ----------------------------------- … … 1564 1564 Line: 779 1565 1565 Stack unwinding: <<beginning of stack>> 1566 15:08:42: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1566 09:55:21: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1567 1567 1568 1568 ----------------------------------- … … 1575 1575 Line: 779 1576 1576 Stack unwinding: <<beginning of stack>> 1577 15:08:42: An exception has been thrown!1577 09:55:21: An exception has been thrown! 1578 1578 1579 1579 ----------------------------------- … … 1586 1586 Line: 779 1587 1587 Stack unwinding: <<beginning of stack>> 1588 15:08:42: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1588 09:55:21: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1589 1589 1590 1590 ----------------------------------- … … 1597 1597 Line: 779 1598 1598 Stack unwinding: <<beginning of stack>> 1599 15:08:42: An exception has been thrown!1599 09:55:21: An exception has been thrown! 1600 1600 1601 1601 ----------------------------------- … … 1608 1608 Line: 779 1609 1609 Stack unwinding: <<beginning of stack>> 1610 15:08:42: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1610 09:55:21: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1611 1611 1612 1612 ----------------------------------- … … 1619 1619 Line: 779 1620 1620 Stack unwinding: <<beginning of stack>> 1621 15:08:42: An exception has been thrown!1621 09:55:21: An exception has been thrown! 1622 1622 1623 1623 ----------------------------------- … … 1630 1630 Line: 779 1631 1631 Stack unwinding: <<beginning of stack>> 1632 15:08:42: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1632 09:55:21: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1633 1633 1634 1634 ----------------------------------- … … 1641 1641 Line: 779 1642 1642 Stack unwinding: <<beginning of stack>> 1643 15:08:42: An exception has been thrown!1643 09:55:21: An exception has been thrown! 1644 1644 1645 1645 ----------------------------------- … … 1652 1652 Line: 779 1653 1653 Stack unwinding: <<beginning of stack>> 1654 15:08:42: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1654 09:55:21: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1655 1655 1656 1656 ----------------------------------- … … 1663 1663 Line: 779 1664 1664 Stack unwinding: <<beginning of stack>> 1665 15:08:42: An exception has been thrown!1665 09:55:21: An exception has been thrown! 1666 1666 1667 1667 ----------------------------------- … … 1674 1674 Line: 779 1675 1675 Stack unwinding: <<beginning of stack>> 1676 15:08:42: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1676 09:55:21: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1677 1677 1678 1678 ----------------------------------- … … 1685 1685 Line: 779 1686 1686 Stack unwinding: <<beginning of stack>> 1687 15:08:42: An exception has been thrown!1687 09:55:21: An exception has been thrown! 1688 1688 1689 1689 ----------------------------------- … … 1696 1696 Line: 779 1697 1697 Stack unwinding: <<beginning of stack>> 1698 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1698 09:55:21: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1699 1699 1700 1700 ----------------------------------- … … 1707 1707 Line: 779 1708 1708 Stack unwinding: <<beginning of stack>> 1709 15:08:42: An exception has been thrown!1709 09:55:21: An exception has been thrown! 1710 1710 1711 1711 ----------------------------------- … … 1718 1718 Line: 779 1719 1719 Stack unwinding: <<beginning of stack>> 1720 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1720 09:55:21: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1721 1721 1722 1722 ----------------------------------- … … 1729 1729 Line: 779 1730 1730 Stack unwinding: <<beginning of stack>> 1731 15:08:42: An exception has been thrown!1731 09:55:21: An exception has been thrown! 1732 1732 1733 1733 ----------------------------------- … … 1740 1740 Line: 779 1741 1741 Stack unwinding: <<beginning of stack>> 1742 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1742 09:55:21: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1743 1743 1744 1744 ----------------------------------- … … 1751 1751 Line: 779 1752 1752 Stack unwinding: <<beginning of stack>> 1753 15:08:42: An exception has been thrown!1753 09:55:21: An exception has been thrown! 1754 1754 1755 1755 ----------------------------------- … … 1762 1762 Line: 779 1763 1763 Stack unwinding: <<beginning of stack>> 1764 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1764 09:55:21: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1765 1765 1766 1766 ----------------------------------- … … 1773 1773 Line: 779 1774 1774 Stack unwinding: <<beginning of stack>> 1775 15:08:42: An exception has been thrown!1775 09:55:21: An exception has been thrown! 1776 1776 1777 1777 ----------------------------------- … … 1784 1784 Line: 779 1785 1785 Stack unwinding: <<beginning of stack>> 1786 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1786 09:55:21: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1787 1787 1788 1788 ----------------------------------- … … 1795 1795 Line: 779 1796 1796 Stack unwinding: <<beginning of stack>> 1797 15:08:42: An exception has been thrown!1797 09:55:21: An exception has been thrown! 1798 1798 1799 1799 ----------------------------------- … … 1806 1806 Line: 779 1807 1807 Stack unwinding: <<beginning of stack>> 1808 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1808 09:55:21: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1809 1809 1810 1810 ----------------------------------- … … 1817 1817 Line: 779 1818 1818 Stack unwinding: <<beginning of stack>> 1819 15:08:42: An exception has been thrown!1819 09:55:21: An exception has been thrown! 1820 1820 1821 1821 ----------------------------------- … … 1828 1828 Line: 779 1829 1829 Stack unwinding: <<beginning of stack>> 1830 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1830 09:55:21: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1831 1831 1832 1832 ----------------------------------- … … 1839 1839 Line: 779 1840 1840 Stack unwinding: <<beginning of stack>> 1841 15:08:42: An exception has been thrown!1841 09:55:21: An exception has been thrown! 1842 1842 1843 1843 ----------------------------------- … … 1850 1850 Line: 779 1851 1851 Stack unwinding: <<beginning of stack>> 1852 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1852 09:55:21: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1853 1853 1854 1854 ----------------------------------- … … 1861 1861 Line: 779 1862 1862 Stack unwinding: <<beginning of stack>> 1863 15:08:42: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.367741864 15:08:42: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.367741865 15:08:42: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.512821866 15:08:42: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.2371867 15:08:42: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.2371868 15:08:42: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.512821869 15:08:42: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.940181870 15:08:42: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.940181871 15:08:42: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.01872 15:08:42: Parsing script X3D.material1873 15:08:42: Parsing script GameTools_Glow.compositor1874 15:08:42: Parsing script GameTools_ToneMap.compositor1875 15:08:42: Parsing script sample.fontdef1876 15:08:42: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre1877 15:08:42: Parsing script GameTools.particle1878 15:08:42: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer)1879 15:08:42: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer)1880 15:08:42: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer)1881 15:08:42: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer)1882 15:08:42: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer)1883 15:08:42: Parsing script Compositor.overlay1884 15:08:42: Parsing script DP3.overlay1885 15:08:42: Parsing script Example-CubeMapping.overlay1886 15:08:42: Parsing script Example-DynTex.overlay1887 15:08:42: Parsing script Example-Water.overlay1888 15:08:42: Parsing script FullScreen.overlay1889 15:08:42: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.1890 15:08:42: Parsing script Shadows.overlay1891 15:08:42: Finished parsing scripts for resource group General1892 15:08:42: Parsing scripts for resource group Internal1893 15:08:42: Finished parsing scripts for resource group Internal1894 15:08:42: Mesh: Loading teapot.mesh.1895 15:08:42: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script?1896 15:08:42: Mesh: Loading difflab.mesh.1897 15:08:42: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1.1898 15:08:42: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1.1899 15:08:42: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1.1900 15:08:42: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.1901 15:08:42: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.1902 15:08:42: Creating viewport on target 'rtt/48080064', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01903 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241904 15:08:42: Creating viewport on target 'rtt/48080160', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01905 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241906 15:08:42: Creating viewport on target 'rtt/48080224', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01907 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241908 15:08:42: Creating viewport on target 'rtt/48080320', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01909 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241910 15:08:42: Creating viewport on target 'rtt/48080384', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01911 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241912 15:08:42: Creating viewport on target 'rtt/48080480', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01913 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241914 15:08:42: 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.1915 15:08:42: Creating viewport on target 'rtt/48080896', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01916 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241917 15:08:42: Creating viewport on target 'rtt/48080992', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01918 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241919 15:08:42: Creating viewport on target 'rtt/48081056', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01920 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241921 15:08:42: Creating viewport on target 'rtt/48082208', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01922 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241923 15:08:42: Creating viewport on target 'rtt/48082272', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01924 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241925 15:08:42: Creating viewport on target 'rtt/48082368', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01926 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241927 15:08:42: 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.1928 15:08:42: Creating viewport on target 'rtt/48082912', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01929 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241930 15:08:42: Creating viewport on target 'rtt/48083680', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01931 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241932 15:08:42: Creating viewport on target 'rtt/48083776', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01933 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241934 15:08:42: Creating viewport on target 'rtt/48083840', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01935 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241936 15:08:42: Creating viewport on target 'rtt/48083936', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01937 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241938 15:08:42: Creating viewport on target 'rtt/48084000', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01939 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241940 15:08:42: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded.1941 15:08:42: Creating viewport on target 'rtt/48085376', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01942 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241943 15:08:42: Creating viewport on target 'rtt/48085440', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01944 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241945 15:08:42: Creating viewport on target 'rtt/48085536', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01946 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241947 15:08:42: Creating viewport on target 'rtt/48085600', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01948 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241949 15:08:42: Creating viewport on target 'rtt/48085696', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01950 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241951 15:08:42: Creating viewport on target 'rtt/48085760', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01952 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241953 15:08:42: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded.1954 15:08:42: Win32Input8: DirectInput Activation Starts1955 15:08:42: Win32Input8: Establishing keyboard input.1956 15:08:42: Win32Input8: Keyboard input established.1957 15:08:42: Win32Input8: Initializing mouse input in immediate mode.1958 15:08:42: Win32Input8: Mouse input in immediate mode initialized.1959 15:08:42: Win32Input8: DirectInput OK.1960 15:08:42: Creating viewport on target 'rtt/48152352', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01961 15:08:42: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 5121962 15:08:42: Creating viewport on target 'rtt/48153088', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01963 15:08:42: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 5121964 15:08:42: Creating viewport on target 'rtt/48153632', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01965 15:08:42: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 321966 15:08:42: Creating viewport on target 'rtt/48154208', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01967 15:08:42: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 2561968 15:08:42: 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.1969 15:08:42: 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.1970 15:10:55: Unregistering ResourceManager for type BspLevel1971 15:10:55: Render Target 'rtt/48154208' Average FPS: 0 Best FPS: 0 Worst FPS: 9991972 15:10:55: Render Target 'rtt/48153632' Average FPS: 0 Best FPS: 0 Worst FPS: 9991973 15:10:55: Render Target 'rtt/48153088' Average FPS: 8.84982 Best FPS: 12.7576 Worst FPS: 0.0801154 1974 15:10:55: Render Target 'rtt/48152352' Average FPS: 8.84833 Best FPS: 12.7576 Worst FPS: 0.0801218 1975 15:10:55: Render Target 'rtt/48085376' Average FPS: 0.079936 Best FPS: 0.079936 Worst FPS: 0.079936 1976 15:10:55: Render Target 'rtt/48085440' Average FPS: 0.0799297 Best FPS: 0.0799297 Worst FPS: 0.07992971977 15:10:55: Render Target 'rtt/48085536' Average FPS: 0.0799233 Best FPS: 0.0799233 Worst FPS: 0.0799233 1978 15:10:55: Render Target 'rtt/48085600' Average FPS: 0.0799169 Best FPS: 0.0799169 Worst FPS: 0.0799169 1979 15:10:55: Render Target 'rtt/48085696' Average FPS: 0.0799105 Best FPS: 0.0799105 Worst FPS: 0.0799105 1980 15:10:55: Render Target 'rtt/48085760' Average FPS: 0.0799105 Best FPS: 0.0799105 Worst FPS: 0.0799105 1981 15:10:55: Render Target 'rtt/48082912' Average FPS: 0 Best FPS: 0 Worst FPS: 9991982 15:10:55: Render Target 'rtt/48083680' Average FPS: 0 Best FPS: 0 Worst FPS: 9991983 15:10:55: Render Target 'rtt/48083776' Average FPS: 0 Best FPS: 0 Worst FPS: 9991984 15:10:55: Render Target 'rtt/48083840' Average FPS: 0 Best FPS: 0 Worst FPS: 9991985 15:10:55: Render Target 'rtt/48083936' Average FPS: 0 Best FPS: 0 Worst FPS: 9991986 15:10:55: Render Target 'rtt/48084000' Average FPS: 0 Best FPS: 0 Worst FPS: 9991987 15:10:55: Render Target 'rtt/48080896' Average FPS: 0 Best FPS: 0 Worst FPS: 9991988 15:10:55: Render Target 'rtt/48080992' Average FPS: 0 Best FPS: 0 Worst FPS: 9991989 15:10:55: Render Target 'rtt/48081056' Average FPS: 0 Best FPS: 0 Worst FPS: 9991990 15:10:55: Render Target 'rtt/48082208' Average FPS: 0 Best FPS: 0 Worst FPS: 9991991 15:10:55: Render Target 'rtt/48082272' Average FPS: 0 Best FPS: 0 Worst FPS: 9991992 15:10:55: Render Target 'rtt/48082368' Average FPS: 0 Best FPS: 0 Worst FPS: 9991993 15:10:55: Render Target 'rtt/48080064' Average FPS: 0 Best FPS: 0 Worst FPS: 9991994 15:10:55: Render Target 'rtt/48080160' Average FPS: 0 Best FPS: 0 Worst FPS: 9991995 15:10:55: Render Target 'rtt/48080224' Average FPS: 0 Best FPS: 0 Worst FPS: 9991996 15:10:55: Render Target 'rtt/48080320' Average FPS: 0 Best FPS: 0 Worst FPS: 9991997 15:10:55: Render Target 'rtt/48080384' Average FPS: 0 Best FPS: 0 Worst FPS: 9991998 15:10:55: Render Target 'rtt/48080480' Average FPS: 0 Best FPS: 0 Worst FPS: 9991999 15:10:55: *-*-* OGRE Shutdown2000 15:10:55: Unregistering ResourceManager for type Compositor2001 15:10:55: Unregistering ResourceManager for type Font2002 15:10:55: Unregistering ResourceManager for type Skeleton2003 15:10:55: Unregistering ResourceManager for type Mesh2004 15:10:55: Unregistering ResourceManager for type HighLevelGpuProgram2005 15:10:55: Unloading library .\Plugin_CgProgramManager2006 15:10:55: Unloading library .\Plugin_OctreeSceneManager2007 15:10:55: Unloading library .\Plugin_BSPSceneManager2008 15:10:55: Unloading library .\Plugin_ParticleFX2009 15:10:55: Render Target 'OGRE Render Window' Average FPS: 8.84901 Best FPS: 12.5604 Worst FPS: 0.0400994 2010 15:10:55: D3D9 : Shutting down cleanly.2011 15:10:55: Unregistering ResourceManager for type Texture2012 15:10:55: Unregistering ResourceManager for type GpuProgram2013 15:10:55: D3D9 : Direct3D9 Rendering Subsystem destroyed.2014 15:10:55: Unloading library .\RenderSystem_Direct3D92015 15:10:55: Unregistering ResourceManager for type Material2016 15:10:55: Unloading library OgrePlatform_d.dll1863 09:55:21: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1864 09:55:21: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1865 09:55:21: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1866 09:55:21: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1867 09:55:21: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1868 09:55:21: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1869 09:55:21: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1870 09:55:21: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1871 09:55:21: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1872 09:55:21: Parsing script X3D.material 1873 09:55:21: Parsing script GameTools_Glow.compositor 1874 09:55:21: Parsing script GameTools_ToneMap.compositor 1875 09:55:21: Parsing script sample.fontdef 1876 09:55:21: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1877 09:55:21: Parsing script GameTools.particle 1878 09:55:21: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1879 09:55:21: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1880 09:55:21: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1881 09:55:21: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1882 09:55:21: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1883 09:55:21: Parsing script Compositor.overlay 1884 09:55:21: Parsing script DP3.overlay 1885 09:55:21: Parsing script Example-CubeMapping.overlay 1886 09:55:21: Parsing script Example-DynTex.overlay 1887 09:55:21: Parsing script Example-Water.overlay 1888 09:55:21: Parsing script FullScreen.overlay 1889 09:55:21: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1890 09:55:21: Parsing script Shadows.overlay 1891 09:55:21: Finished parsing scripts for resource group General 1892 09:55:21: Parsing scripts for resource group Internal 1893 09:55:21: Finished parsing scripts for resource group Internal 1894 09:55:21: Mesh: Loading teapot.mesh. 1895 09:55:21: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 1896 09:55:21: Mesh: Loading difflab.mesh. 1897 09:55:21: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1898 09:55:21: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1899 09:55:21: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 1900 09:55:21: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1901 09:55:21: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1902 09:55:21: Creating viewport on target 'rtt/3276704', 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 1903 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1904 09:55:21: Creating viewport on target 'rtt/3276768', 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 1905 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1906 09:55:21: Creating viewport on target 'rtt/48100160', 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 1907 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1908 09:55:21: Creating viewport on target 'rtt/48100224', 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 1909 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1910 09:55:21: Creating viewport on target 'rtt/48100288', 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 1911 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1912 09:55:21: Creating viewport on target 'rtt/48100352', 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 1913 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1914 09:55:21: 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. 1915 09:55:21: Creating viewport on target 'rtt/48101280', 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 1916 09:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1917 09:55:21: Creating viewport on target 'rtt/48101344', 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 1918 09:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1919 09:55:21: Creating viewport on target 'rtt/48101408', 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 1920 09:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1921 09:55:21: Creating viewport on target 'rtt/48101472', 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 1922 09:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1923 09:55:21: Creating viewport on target 'rtt/48101536', 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 1924 09:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1925 09:55:21: Creating viewport on target 'rtt/48101600', 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 1926 09:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1927 09:55:21: 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. 1928 09:55:21: Creating viewport on target 'rtt/48102656', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1929 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1930 09:55:21: Creating viewport on target 'rtt/48102720', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1931 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1932 09:55:21: Creating viewport on target 'rtt/48102784', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1933 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1934 09:55:21: Creating viewport on target 'rtt/48102848', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1935 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1936 09:55:21: Creating viewport on target 'rtt/48102912', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1937 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1938 09:55:21: Creating viewport on target 'rtt/48102976', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1939 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1940 09:55:21: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1941 09:55:21: Creating viewport on target 'rtt/48104000', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1942 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1943 09:55:21: Creating viewport on target 'rtt/48104064', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1944 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1945 09:55:21: Creating viewport on target 'rtt/48104128', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1946 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1947 09:55:21: Creating viewport on target 'rtt/48104192', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1948 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1949 09:55:21: Creating viewport on target 'rtt/48104256', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1950 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1951 09:55:21: Creating viewport on target 'rtt/48104320', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1952 09:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1953 09:55:21: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1954 09:55:21: Win32Input8: DirectInput Activation Starts 1955 09:55:21: Win32Input8: Establishing keyboard input. 1956 09:55:21: Win32Input8: Keyboard input established. 1957 09:55:21: Win32Input8: Initializing mouse input in immediate mode. 1958 09:55:21: Win32Input8: Mouse input in immediate mode initialized. 1959 09:55:21: Win32Input8: DirectInput OK. 1960 09:55:21: Creating viewport on target 'rtt/47956160', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1961 09:55:21: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1962 09:55:21: Creating viewport on target 'rtt/48176768', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1963 09:55:21: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1964 09:55:21: Creating viewport on target 'rtt/48177120', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1965 09:55:21: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 1966 09:55:21: Creating viewport on target 'rtt/48137472', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1967 09:55:21: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1968 09:55:21: 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. 1969 09:55:21: 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. 1970 09:56:15: Unregistering ResourceManager for type BspLevel 1971 09:56:15: Render Target 'rtt/48137472' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1972 09:56:15: Render Target 'rtt/48177120' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1973 09:56:15: Render Target 'rtt/48176768' Average FPS: 2.52633 Best FPS: 5.80431 Worst FPS: 0.0810438 1974 09:56:15: Render Target 'rtt/47956160' Average FPS: 2.52608 Best FPS: 5.7995 Worst FPS: 0.0810537 1975 09:56:15: Render Target 'rtt/48104000' Average FPS: 0.0806842 Best FPS: 0.0806842 Worst FPS: 0.0806842 1976 09:56:15: Render Target 'rtt/48104064' Average FPS: 0.0806777 Best FPS: 0.0806777 Worst FPS: 0.0806777 1977 09:56:15: Render Target 'rtt/48104128' Average FPS: 0.0806712 Best FPS: 0.0806712 Worst FPS: 0.0806712 1978 09:56:15: Render Target 'rtt/48104192' Average FPS: 0.0806712 Best FPS: 0.0806712 Worst FPS: 0.0806712 1979 09:56:15: Render Target 'rtt/48104256' Average FPS: 0.0806647 Best FPS: 0.0806647 Worst FPS: 0.0806647 1980 09:56:15: Render Target 'rtt/48104320' Average FPS: 0.0806582 Best FPS: 0.0806582 Worst FPS: 0.0806582 1981 09:56:15: Render Target 'rtt/48102656' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1982 09:56:15: Render Target 'rtt/48102720' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1983 09:56:15: Render Target 'rtt/48102784' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1984 09:56:15: Render Target 'rtt/48102848' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1985 09:56:15: Render Target 'rtt/48102912' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1986 09:56:15: Render Target 'rtt/48102976' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1987 09:56:15: Render Target 'rtt/48101280' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1988 09:56:15: Render Target 'rtt/48101344' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1989 09:56:15: Render Target 'rtt/48101408' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1990 09:56:15: Render Target 'rtt/48101472' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1991 09:56:15: Render Target 'rtt/48101536' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1992 09:56:15: Render Target 'rtt/48101600' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1993 09:56:15: Render Target 'rtt/3276704' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1994 09:56:15: Render Target 'rtt/3276768' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1995 09:56:15: Render Target 'rtt/48100160' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1996 09:56:15: Render Target 'rtt/48100224' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1997 09:56:15: Render Target 'rtt/48100288' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1998 09:56:15: Render Target 'rtt/48100352' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1999 09:56:15: *-*-* OGRE Shutdown 2000 09:56:15: Unregistering ResourceManager for type Compositor 2001 09:56:15: Unregistering ResourceManager for type Font 2002 09:56:15: Unregistering ResourceManager for type Skeleton 2003 09:56:15: Unregistering ResourceManager for type Mesh 2004 09:56:15: Unregistering ResourceManager for type HighLevelGpuProgram 2005 09:56:15: Unloading library .\Plugin_CgProgramManager 2006 09:56:15: Unloading library .\Plugin_OctreeSceneManager 2007 09:56:15: Unloading library .\Plugin_BSPSceneManager 2008 09:56:15: Unloading library .\Plugin_ParticleFX 2009 09:56:15: Render Target 'OGRE Render Window' Average FPS: 2.53107 Best FPS: 6.73725 Worst FPS: 0.0405252 2010 09:56:17: D3D9 : Shutting down cleanly. 2011 09:56:17: Unregistering ResourceManager for type Texture 2012 09:56:17: Unregistering ResourceManager for type GpuProgram 2013 09:56:17: D3D9 : Direct3D9 Rendering Subsystem destroyed. 2014 09:56:17: Unloading library .\RenderSystem_Direct3D9 2015 09:56:17: Unregistering ResourceManager for type Material 2016 09:56:17: Unloading library OgrePlatform_d.dll -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log
r1885 r1897 1 1 ---------------------------------------------------------------------------------------------------------------------------------- 2 | Memory leak report for: 12/1 3/2006 15:10:55|2 | Memory leak report for: 12/15/2006 09:56:17 | 3 3 ---------------------------------------------------------------------------------------------------------------------------------- 4 4 … … 9 9 Number Reported Reported Actual Actual Unused Method Dealloc Realloc Allocated by 10 10 ------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- --------------------------------------------------- 11 0263 60 0x02155E40 0x00000034 0x02155E30 0x000000540x00000000 new N N ??(0) ??12 0263 61 0x02155ED0 0x00000034 0x02155EC0 0x000000540x00000000 new N N ??(0) ??13 0263 62 0x02155F60 0x00000034 0x02155F50 0x000000540x00000000 new N N ??(0) ??14 0263 63 0x02155FF0 0x00000034 0x02155FE0 0x000000540x00000000 new N N ??(0) ??15 0263 64 0x02156080 0x00000034 0x02156070 0x000000540x00000000 new N N ??(0) ??16 0263 66 0x02156110 0x000000E4 0x02156100 0x00000104 0x00000000 new N N ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati17 0263 67 0x02156250 0x00000034 0x02156240 0x00000054 0x00000000 new N N ??(0) ??18 0263 68 0x021562E0 0x00000034 0x021562D0 0x00000054 0x00000000 new N N ??(0) ??19 0263 69 0x02156370 0x00000034 0x02156360 0x00000054 0x00000000 new N N ??(0) ??20 026 370 0x02156400 0x00000034 0x021563F00x00000054 0x00000000 new N N ??(0) ??21 026 351 0x0215E100 0x00000034 0x0215E0F00x00000054 0x00000000 new N N ??(0) ??22 026 352 0x0215E190 0x00000034 0x0215E1800x00000054 0x00000000 new N N ??(0) ??23 026 353 0x0215E220 0x00000034 0x0215E2100x00000054 0x00000000 new N N ??(0) ??24 026 354 0x0215E2B0 0x00000034 0x0215E2A00x00000054 0x00000000 new N N ??(0) ??25 026 355 0x0215E340 0x00000034 0x0215E3300x00000054 0x00000000 new N N ??(0) ??26 026 356 0x0215E3D0 0x00000034 0x0215E3C00x00000054 0x00000000 new N N ??(0) ??27 026 357 0x0215E460 0x00000034 0x0215E4500x00000054 0x00000000 new N N ??(0) ??28 026 358 0x0215E4F0 0x00000034 0x0215E4E00x00000054 0x00000000 new N N ??(0) ??29 026 359 0x0215E580 0x00000034 0x0215E5700x00000054 0x00000000 new N N ??(0) ??30 026 384 0x0215E610 0x0000000C 0x0215E600 0x0000002C0x00000000 new N N ??(0) ??31 026 334 0x0215EB70 0x00000018 0x0215EB60 0x000000380x00000000 new N N ??(0) ??32 026 335 0x0215EBE8 0x00000018 0x0215EBD8 0x000000380x00000000 new N N ??(0) ??33 026 336 0x0215EC60 0x00000018 0x0215EC50 0x000000380x00000000 new N N ??(0) ??34 026 337 0x0215ECD8 0x00000018 0x0215ECC8 0x000000380x00000000 new N N ??(0) ??35 026 338 0x0215ED50 0x00000018 0x0215ED40 0x000000380x00000000 new N N ??(0) ??36 026 339 0x0215EDC8 0x00000018 0x0215EDB8 0x00000038 0x00000000 new N N ??(0) ??37 026 340 0x0215EE40 0x00000018 0x0215EE30 0x000000380x00000000 new N N ??(0) ??38 026 341 0x0215EEB8 0x00000018 0x0215EEA8 0x000000380x00000000 new N N ??(0) ??39 026 342 0x0215EF30 0x00000018 0x0215EF20 0x000000380x00000000 new N N ??(0) ??40 026 343 0x0215F030 0x00000018 0x0215F020 0x000000380x00000000 new N N ??(0) ??41 026 344 0x0215F0A8 0x00000018 0x0215F098 0x000000380x00000000 new N N ??(0) ??42 026 345 0x0215F120 0x00000018 0x0215F110 0x000000380x00000000 new N N ??(0) ??43 0263 46 0x0215F198 0x00000018 0x0215F188 0x00000038 0x00000000 new N N ??(0) ??44 0263 47 0x0215F210 0x000000E4 0x0215F200 0x00000104 0x00000000 new N N ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati45 0263 48 0x0215F350 0x00000034 0x0215F340 0x000000540x00000000 new N N ??(0) ??46 0263 49 0x0215F3E0 0x00000034 0x0215F3D0 0x000000540x00000000 new N N ??(0) ??47 0263 50 0x0215F470 0x00000034 0x0215F4600x00000054 0x00000000 new N N ??(0) ??48 0263 65 0x0215F500 0x0000000C 0x0215F4F0 0x0000002C0x00000000 new N N ??(0) ??49 0263 15 0x0215F678 0x00000018 0x0215F6680x00000038 0x00000000 new N N ??(0) ??50 0263 19 0x0215FA30 0x00000034 0x0215FA20 0x000000540x00000000 new N N ??(0) ??51 02632 8 0x02167038 0x00000018 0x021670280x00000038 0x00000000 new N N ??(0) ??52 02632 9 0x021670B0 0x00000018 0x021670A0 0x00000038 0x00000000 new N N ??(0) ??53 0 26320 0x021671F8 0x00000034 0x021671E80x00000054 0x00000000 new N N ??(0) ??54 02 9619 0x02168B68 0x00000034 0x02168B58 0x00000054 0x00000000 new N N ??(0) ??55 0263 14 0x0216D388 0x0000000C 0x0216D378 0x0000002C0x00000000 new N N ??(0) ??56 026 424 0x0218E8B0 0x00000034 0x0218E8A00x00000054 0x00000000 new N N ??(0) ??57 026 425 0x0218E9A0 0x0000000C 0x0218E990 0x0000002C0x00000000 new N N ??(0) ??58 026 426 0x0218EA08 0x000000E8 0x0218E9F8 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati59 026 427 0x0218EB50 0x00000034 0x0218EB400x00000054 0x00000000 new N N ??(0) ??60 026 428 0x0218EBE0 0x00000034 0x0218EBD00x00000054 0x00000000 new N N ??(0) ??61 026 429 0x0218ECD0 0x00000034 0x0218ECC00x00000054 0x00000000 new N N ??(0) ??62 026 430 0x0218EDC0 0x00000034 0x0218EDB00x00000054 0x00000000 new N N ??(0) ??63 026 431 0x0218EEB0 0x00000034 0x0218EEA00x00000054 0x00000000 new N N ??(0) ??64 026 432 0x0218EFA0 0x00000034 0x0218EF900x00000054 0x00000000 new N N ??(0) ??65 026 433 0x0218F030 0x00000034 0x0218F0200x00000054 0x00000000 new N N ??(0) ??66 026 434 0x0218F120 0x0000000C 0x0218F110 0x0000002C0x00000000 new N N ??(0) ??67 026 435 0x0218F188 0x00000044 0x0218F178 0x00000064 0x00000000 new N N ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati68 026 436 0x0218F228 0x00000034 0x0218F218 0x00000054 0x00000000 new N N ??(0) ??69 026 437 0x0218F2B8 0x00000034 0x0218F2A8 0x00000054 0x00000000 new N N ??(0) ??70 026 438 0x0218F348 0x0000000C 0x0218F338 0x0000002C 0x00000000 new N N ??(0) ??71 026 439 0x0218F3B0 0x00000044 0x0218F3A0 0x00000064 0x00000000 new N N ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati72 026 440 0x0218F450 0x00000034 0x0218F440 0x000000540x00000000 new N N ??(0) ??73 026 441 0x0218F4E0 0x00000034 0x0218F4D0 0x000000540x00000000 new N N ??(0) ??74 026 442 0x0218F570 0x0000000C 0x0218F560 0x0000002C0x00000000 new N N ??(0) ??75 026 443 0x0218F5D8 0x000000D8 0x0218F5C8 0x000000F8 0x00000000 new N N ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati76 026 444 0x0218F710 0x00000034 0x0218F700 0x000000540x00000000 new N N ??(0) ??77 026 445 0x0218F7A0 0x00000034 0x0218F790 0x000000540x00000000 new N N ??(0) ??78 026 446 0x0218F830 0x00000034 0x0218F820 0x000000540x00000000 new N N ??(0) ??79 026 447 0x0218F8C0 0x00000034 0x0218F8B00x00000054 0x00000000 new N N ??(0) ??80 026 448 0x0218F950 0x00000034 0x0218F9400x00000054 0x00000000 new N N ??(0) ??81 026 449 0x0218F9E0 0x00000034 0x0218F9D0 0x000000540x00000000 new N N ??(0) ??82 026 450 0x0218FA70 0x00000034 0x0218FA60 0x00000054 0x00000000 new N N ??(0) ??83 026 451 0x0218FB00 0x00000034 0x0218FAF00x00000054 0x00000000 new N N ??(0) ??84 026 452 0x0218FB90 0x00000034 0x0218FB800x00000054 0x00000000 new N N ??(0) ??85 026 453 0x0218FC20 0x00000034 0x0218FC100x00000054 0x00000000 new N N ??(0) ??86 026 454 0x0218FCB0 0x00000034 0x0218FCA00x00000054 0x00000000 new N N ??(0) ??87 026 455 0x0218FD40 0x0000000C 0x0218FD30 0x0000002C0x00000000 new N N ??(0) ??88 026 456 0x0218FDA8 0x0000009C 0x0218FD98 0x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati89 026 468 0x0218FEA0 0x0000000C 0x0218FE90 0x0000002C0x00000000 new N N ??(0) ??90 0 07410 0x021B5C70 0x00000050 0x021B5C60 0x000000700x00000000 new N N ??(0) ??91 0 07404 0x021B5D30 0x0000003C 0x021B5D20 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams92 0 07405 0x021B5DC8 0x00000050 0x021B5DB8 0x000000700x00000000 new N N ??(0) ??93 0 07422 0x021B5F38 0x00000050 0x021B5F28 0x000000700x00000000 new N N ??(0) ??94 0 07414 0x021B60D8 0x00000050 0x021B60C8 0x000000700x00000000 new N N ??(0) ??95 0 07418 0x021B61F8 0x00000050 0x021B61E8 0x000000700x00000000 new N N ??(0) ??96 0 07426 0x021B6378 0x00000050 0x021B6368 0x000000700x00000000 new N N ??(0) ??97 007 534 0x021B6428 0x00000050 0x021B6418 0x00000070 0x00000000 new N N ??(0) ??98 0075 28 0x021B6558 0x0000003C 0x021B6548 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams99 007 529 0x021BFA40 0x00000050 0x021BFA30 0x00000070 0x00000000 new N N ??(0) ??100 007 538 0x021BFB50 0x00000050 0x021BFB40 0x00000070 0x00000000 new N N ??(0) ??101 007 542 0x021C7A88 0x00000050 0x021C7A780x00000070 0x00000000 new N N ??(0) ??102 007 546 0x021C7BA8 0x00000050 0x021C7B980x00000070 0x00000000 new N N ??(0) ??103 007 550 0x021C7C58 0x00000050 0x021C7C480x00000070 0x00000000 new N N ??(0) ??104 007 743 0x021C8960 0x00000050 0x021C8950 0x00000070 0x00000000 new N N ??(0) ??105 007 737 0x021C8AC0 0x0000003C 0x021C8AB0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams106 007 738 0x021CB3A8 0x00000050 0x021CB398 0x00000070 0x00000000 new N N ??(0) ??107 007 755 0x021CB4B8 0x00000050 0x021CB4A8 0x00000070 0x00000000 new N N ??(0) ??108 007 747 0x021CB658 0x00000050 0x021CB648 0x00000070 0x00000000 new N N ??(0) ??109 007 751 0x021CB778 0x00000050 0x021CB768 0x00000070 0x00000000 new N N ??(0) ??110 007 759 0x021CB8F8 0x00000050 0x021CB8E8 0x00000070 0x00000000 new N N ??(0) ??111 0 26313 0x021CDBD8 0x000001F8 0x021CDBC8 0x00000218 0x00000000 new N N ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton112 0 26330 0x021CDE30 0x00000018 0x021CDE20 0x00000038 0x00000000 new N N ??(0) ??113 0 26331 0x021CDEA8 0x00000018 0x021CDE98 0x000000380x00000000 new N N ??(0) ??114 0 26332 0x021CDF20 0x00000018 0x021CDF10 0x000000380x00000000 new N N ??(0) ??115 0 26333 0x021CDF98 0x00000018 0x021CDF88 0x000000380x00000000 new N N ??(0) ??116 00 8074 0x021D1008 0x00000050 0x021D0FF80x00000070 0x00000000 new N N ??(0) ??117 00 8068 0x021D1168 0x0000003C 0x021D1158 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams118 0080 69 0x021D3A30 0x00000050 0x021D3A20 0x00000070 0x00000000 new N N ??(0) ??119 00807 8 0x021D3CE0 0x00000050 0x021D3CD0 0x00000070 0x00000000 new N N ??(0) ??120 0080 82 0x021D3E00 0x00000050 0x021D3DF00x00000070 0x00000000 new N N ??(0) ??121 0 08086 0x021D3F20 0x00000050 0x021D3F10 0x000000700x00000000 new N N ??(0) ??122 0080 90 0x021D3FD0 0x00000050 0x021D3FC00x00000070 0x00000000 new N N ??(0) ??123 0 29551 0x021DE200 0x00000034 0x021DE1F0 0x000000540x00000000 new N N ??(0) ??124 00 9329 0x02F28950 0x00000050 0x02F289400x00000070 0x00000000 new N N ??(0) ??125 00 9333 0x02F28A00 0x00000050 0x02F289F00x00000070 0x00000000 new N N ??(0) ??126 0093 43 0x02F28AB0 0x00000050 0x02F28AA0 0x00000070 0x00000000 new N N ??(0) ??127 0093 47 0x02F28B60 0x00000050 0x02F28B50 0x00000070 0x00000000 new N N ??(0) ??128 0093 37 0x02F28C10 0x0000003C 0x02F28C00 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams129 00933 8 0x02F28CA8 0x00000050 0x02F28C98 0x00000070 0x00000000 new N N ??(0) ??130 0093 51 0x02F28DC0 0x00000050 0x02F28DB00x00000070 0x00000000 new N N ??(0) ??131 00935 5 0x02F28FC0 0x00000050 0x02F28FB0 0x00000070 0x00000000 new N N ??(0) ??132 0093 59 0x02F29070 0x00000050 0x02F29060 0x00000070 0x00000000 new N N ??(0) ??133 0093 63 0x02F29120 0x00000050 0x02F29110 0x00000070 0x00000000 new N N ??(0) ??134 0093 23 0x02F2BE80 0x0000003C 0x02F2BE70 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams135 0093 24 0x02F2BF18 0x00000050 0x02F2BF080x00000070 0x00000000 new N N ??(0) ??136 0 10349 0x02F2C090 0x00000050 0x02F2C080 0x00000070 0x00000000 new N N ??(0) ??137 0 10353 0x02F2C140 0x00000050 0x02F2C130 0x00000070 0x00000000 new N N ??(0) ??138 0 10357 0x02F2C1F0 0x00000050 0x02F2C1E0 0x00000070 0x00000000 new N N ??(0) ??139 0 10498 0x02F2E1F8 0x0000003C 0x02F2E1E80x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams140 0 10499 0x02F2E290 0x00000050 0x02F2E2800x00000070 0x00000000 new N N ??(0) ??141 0 10504 0x02F2E340 0x00000050 0x02F2E3300x00000070 0x00000000 new N N ??(0) ??142 0 10508 0x02F2E3F0 0x00000050 0x02F2E3E00x00000070 0x00000000 new N N ??(0) ??143 0 10512 0x02F2E4A0 0x00000050 0x02F2E4900x00000070 0x00000000 new N N ??(0) ??144 0 10516 0x02F2E550 0x0000003C 0x02F2E540 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams145 0 10517 0x02F2E5E8 0x00000050 0x02F2E5D8 0x00000070 0x00000000 new N N ??(0) ??146 0 10522 0x02F2E700 0x00000050 0x02F2E6F0 0x00000070 0x00000000 new N N ??(0) ??147 0 10526 0x02F2E7B0 0x00000050 0x02F2E7A0 0x00000070 0x00000000 new N N ??(0) ??148 0 10530 0x02F2E860 0x00000050 0x02F2E8500x00000070 0x00000000 new N N ??(0) ??149 0 10671 0x02F304B0 0x0000003C 0x02F304A0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams150 009 568 0x02F372C8 0x0000003C 0x02F372B8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams151 009 569 0x02F37360 0x00000050 0x02F373500x00000070 0x00000000 new N N ??(0) ??152 009 574 0x02F387A8 0x00000050 0x02F38798 0x00000070 0x00000000 new N N ??(0) ??153 009 578 0x02F38858 0x00000050 0x02F38848 0x00000070 0x00000000 new N N ??(0) ??154 009 582 0x02F38908 0x00000050 0x02F388F80x00000070 0x00000000 new N N ??(0) ??155 009 586 0x02F389B8 0x00000050 0x02F389A8 0x00000070 0x00000000 new N N ??(0) ??156 009 590 0x02F38A68 0x00000050 0x02F38A58 0x00000070 0x00000000 new N N ??(0) ??157 0 09600 0x02F38B18 0x00000050 0x02F38B08 0x00000070 0x00000000 new N N ??(0) ??158 0 09594 0x02F38BD8 0x0000003C 0x02F38BC8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams159 0 09595 0x02F38C70 0x00000050 0x02F38C600x00000070 0x00000000 new N N ??(0) ??160 0 09608 0x02F38D88 0x00000050 0x02F38D78 0x00000070 0x00000000 new N N ??(0) ??161 0 09604 0x02F38F28 0x00000050 0x02F38F18 0x00000070 0x00000000 new N N ??(0) ??162 0 09612 0x02F38FD8 0x00000050 0x02F38FC80x00000070 0x00000000 new N N ??(0) ??163 0 09616 0x02F39088 0x00000050 0x02F39078 0x00000070 0x00000000 new N N ??(0) ??164 0 09620 0x02F39138 0x00000050 0x02F39128 0x00000070 0x00000000 new N N ??(0) ??165 0 09790 0x02F3E4B8 0x0000003C 0x02F3E4A8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams166 0 09791 0x02F42DC8 0x00000050 0x02F42DB8 0x00000070 0x00000000 new N N ??(0) ??167 0 09796 0x02F42E78 0x00000050 0x02F42E68 0x00000070 0x00000000 new N N ??(0) ??168 009 800 0x02F42F28 0x00000050 0x02F42F18 0x00000070 0x00000000 new N N ??(0) ??169 009 804 0x02F42FD8 0x00000050 0x02F42FC80x00000070 0x00000000 new N N ??(0) ??170 009 808 0x02F43088 0x00000050 0x02F430780x00000070 0x00000000 new N N ??(0) ??171 009 812 0x02F43138 0x00000050 0x02F431280x00000070 0x00000000 new N N ??(0) ??172 009 816 0x02F43248 0x0000003C 0x02F43238 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams173 009 817 0x02F432E0 0x00000050 0x02F432D00x00000070 0x00000000 new N N ??(0) ??174 009 822 0x02F433F8 0x00000050 0x02F433E8 0x00000070 0x00000000 new N N ??(0) ??175 009 826 0x02F434A8 0x00000050 0x02F434980x00000070 0x00000000 new N N ??(0) ??176 009 830 0x02F435B8 0x00000050 0x02F435A8 0x00000070 0x00000000 new N N ??(0) ??177 009 834 0x02F43668 0x00000050 0x02F43658 0x00000070 0x00000000 new N N ??(0) ??178 009 838 0x02F43718 0x00000050 0x02F43708 0x00000070 0x00000000 new N N ??(0) ??179 009 842 0x02F437C8 0x00000050 0x02F437B8 0x00000070 0x00000000 new N N ??(0) ??180 009 985 0x02F449D0 0x0000003C 0x02F449C0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams181 0 10011 0x02F48768 0x0000003C 0x02F48758 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams182 010 012 0x02F48800 0x00000050 0x02F487F0 0x00000070 0x00000000 new N N ??(0) ??183 010 025 0x02F48918 0x00000050 0x02F489080x00000070 0x00000000 new N N ??(0) ??184 010 029 0x02F48B18 0x00000050 0x02F48B080x00000070 0x00000000 new N N ??(0) ??185 010 033 0x02F48BC8 0x00000050 0x02F48BB80x00000070 0x00000000 new N N ??(0) ??186 010 037 0x02F48C78 0x00000050 0x02F48C680x00000070 0x00000000 new N N ??(0) ??187 010 021 0x02F4D378 0x00000050 0x02F4D368 0x00000070 0x00000000 new N N ??(0) ??188 0 09986 0x02F55B58 0x00000050 0x02F55B48 0x00000070 0x00000000 new N N ??(0) ??189 0 09991 0x02F55C08 0x00000050 0x02F55BF80x00000070 0x00000000 new N N ??(0) ??190 0 09995 0x02F55CB8 0x00000050 0x02F55CA80x00000070 0x00000000 new N N ??(0) ??191 0 09999 0x02F55D68 0x00000050 0x02F55D580x00000070 0x00000000 new N N ??(0) ??192 0 10003 0x02F55E18 0x00000050 0x02F55E08 0x000000700x00000000 new N N ??(0) ??193 0 10007 0x02F55EC8 0x00000050 0x02F55EB8 0x000000700x00000000 new N N ??(0) ??194 0 10017 0x02F55F78 0x00000050 0x02F55F68 0x00000070 0x00000000 new N N ??(0) ??195 0101 44 0x02F567B8 0x0000003C 0x02F567A8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams196 01014 5 0x02F5ACF0 0x00000050 0x02F5ACE00x00000070 0x00000000 new N N ??(0) ??197 0101 50 0x02F5ADA0 0x00000050 0x02F5AD90 0x00000070 0x00000000 new N N ??(0) ??198 01015 4 0x02F5AE50 0x00000050 0x02F5AE400x00000070 0x00000000 new N N ??(0) ??199 01015 8 0x02F5AF00 0x00000050 0x02F5AEF00x00000070 0x00000000 new N N ??(0) ??200 01016 2 0x02F5AFB0 0x0000003C 0x02F5AFA0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams201 01016 3 0x02F5B048 0x00000050 0x02F5B038 0x00000070 0x00000000 new N N ??(0) ??202 01016 8 0x02F5B160 0x00000050 0x02F5B150 0x00000070 0x00000000 new N N ??(0) ??203 01017 2 0x02F5B210 0x00000050 0x02F5B2000x00000070 0x00000000 new N N ??(0) ??204 01017 6 0x02F5B2C0 0x00000050 0x02F5B2B00x00000070 0x00000000 new N N ??(0) ??205 0 10344 0x02F631D0 0x00000050 0x02F631C0 0x00000070 0x00000000 new N N ??(0) ??206 01032 5 0x02F63B10 0x0000003C 0x02F63B000x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams207 01032 6 0x02F63BA8 0x00000050 0x02F63B980x00000070 0x00000000 new N N ??(0) ??208 01033 1 0x02F63CB8 0x00000050 0x02F63CA80x00000070 0x00000000 new N N ??(0) ??209 01033 5 0x02F63D68 0x00000050 0x02F63D580x00000070 0x00000000 new N N ??(0) ??210 0103 39 0x02F63E18 0x00000050 0x02F63E080x00000070 0x00000000 new N N ??(0) ??211 01034 3 0x02F63EC8 0x0000003C 0x02F63EB80x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams212 010 672 0x02F641A0 0x00000050 0x02F641900x00000070 0x00000000 new N N ??(0) ??213 010 677 0x02F642B0 0x00000050 0x02F642A0 0x00000070 0x00000000 new N N ??(0) ??214 010 681 0x02F64360 0x00000050 0x02F64350 0x00000070 0x00000000 new N N ??(0) ??215 010 685 0x02F64410 0x00000050 0x02F64400 0x00000070 0x00000000 new N N ??(0) ??216 010 689 0x02F644C0 0x0000003C 0x02F644B0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams217 010 690 0x02F64558 0x00000050 0x02F64548 0x00000070 0x00000000 new N N ??(0) ??218 010 695 0x02F64670 0x00000050 0x02F64660 0x00000070 0x00000000 new N N ??(0) ??219 010 699 0x02F64720 0x00000050 0x02F64710 0x00000070 0x00000000 new N N ??(0) ??220 010 703 0x02F647D0 0x00000050 0x02F647C0 0x00000070 0x00000000 new N N ??(0) ??221 0 29617 0x02F71EA8 0x00000018 0x02F71E98 0x00000038 0x00000000 new N N ??(0) ??222 01 1188 0x02F73440 0x0000003C 0x02F73430 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams223 01 1194 0x02F73BB8 0x00000050 0x02F73BA80x00000070 0x00000000 new N N ??(0) ??224 01 1189 0x02F74000 0x00000050 0x02F73FF0 0x00000070 0x00000000 new N N ??(0) ??225 0 29591 0x02F778C0 0x00000018 0x02F778B0 0x000000380x00000000 new N N ??(0) ??226 029 893 0x02F87480 0x00000220 0x02F87470 0x00000240 0x00000000 new N N ogrerenderingrun.cpp(204) OgreRenderingRun::renderFullscreenQuad227 01 2212 0x02F940F0 0x0000003C 0x02F940E0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams228 01 2213 0x02F94188 0x00000050 0x02F94178 0x00000070 0x00000000 new N N ??(0) ??229 01 2218 0x02F942F8 0x00000050 0x02F942E80x00000070 0x00000000 new N N ??(0) ??230 0 12222 0x02F94408 0x00000050 0x02F943F8 0x000000700x00000000 new N N ??(0) ??231 0 12226 0x02F944B8 0x00000050 0x02F944A8 0x000000700x00000000 new N N ??(0) ??232 0 12401 0x02F96048 0x00000050 0x02F96038 0x00000070 0x00000000 new N N ??(0) ??233 0 12413 0x02F964F0 0x0000003C 0x02F964E0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams234 012 409 0x02F965D0 0x00000050 0x02F965C00x00000070 0x00000000 new N N ??(0) ??235 012 414 0x02F96780 0x00000050 0x02F96770 0x00000070 0x00000000 new N N ??(0) ??236 012 391 0x02F97760 0x0000003C 0x02F97750 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams237 012 392 0x02F9FC78 0x00000050 0x02F9FC68 0x00000070 0x00000000 new N N ??(0) ??238 012 397 0x02F9FDE8 0x00000050 0x02F9FDD80x00000070 0x00000000 new N N ??(0) ??239 01240 5 0x02F9FEF8 0x00000050 0x02F9FEE80x00000070 0x00000000 new N N ??(0) ??240 0124 19 0x02F9FFA8 0x00000050 0x02F9FF980x00000070 0x00000000 new N N ??(0) ??241 012 657 0x02FA04C0 0x0000003C 0x02FA04B0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams242 012 658 0x02FA0558 0x00000050 0x02FA0548 0x00000070 0x00000000 new N N ??(0) ??243 012 663 0x02FA0670 0x00000050 0x02FA06600x00000070 0x00000000 new N N ??(0) ??244 012 667 0x02FA0720 0x0000003C 0x02FA0710 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams245 012 668 0x02FA07B8 0x00000050 0x02FA07A8 0x00000070 0x00000000 new N N ??(0) ??246 012 673 0x02FA0868 0x00000050 0x02FA08580x00000070 0x00000000 new N N ??(0) ??247 012 677 0x02FA0918 0x00000050 0x02FA09080x00000070 0x00000000 new N N ??(0) ??248 01263 5 0x02FA5A98 0x0000003C 0x02FA5A88 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams249 01263 6 0x02FA8BA0 0x00000050 0x02FA8B900x00000070 0x00000000 new N N ??(0) ??250 01264 1 0x02FA8CB0 0x00000050 0x02FA8CA00x00000070 0x00000000 new N N ??(0) ??251 01264 5 0x02FA8DC0 0x00000050 0x02FA8DB00x00000070 0x00000000 new N N ??(0) ??252 0126 49 0x02FA8E70 0x00000050 0x02FA8E600x00000070 0x00000000 new N N ??(0) ??253 01265 3 0x02FA8F20 0x00000050 0x02FA8F100x00000070 0x00000000 new N N ??(0) ??254 01 3458 0x02FB29A8 0x0000003C 0x02FB2998 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams255 01 3459 0x02FC1358 0x00000050 0x02FC13480x00000070 0x00000000 new N N ??(0) ??256 01 3464 0x02FC1408 0x00000050 0x02FC13F8 0x00000070 0x00000000 new N N ??(0) ??257 01 3468 0x02FC14B8 0x00000050 0x02FC14A8 0x00000070 0x00000000 new N N ??(0) ??258 01 3472 0x02FC1568 0x00000050 0x02FC15580x00000070 0x00000000 new N N ??(0) ??259 01 3476 0x02FC1618 0x0000003C 0x02FC1608 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams260 01 3477 0x02FC16B0 0x00000050 0x02FC16A00x00000070 0x00000000 new N N ??(0) ??261 0134 94 0x02FC17C8 0x0000003C 0x02FC17B8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams262 0134 82 0x02FC1868 0x00000050 0x02FC1858 0x00000070 0x00000000 new N N ??(0) ??263 0134 86 0x02FC1918 0x00000050 0x02FC1908 0x00000070 0x00000000 new N N ??(0) ??264 0134 90 0x02FC19C8 0x00000050 0x02FC19B8 0x00000070 0x00000000 new N N ??(0) ??265 0134 95 0x02FC1A78 0x00000050 0x02FC1A680x00000070 0x00000000 new N N ??(0) ??266 013 500 0x02FC1B28 0x00000050 0x02FC1B180x00000070 0x00000000 new N N ??(0) ??267 013 504 0x02FC1BD8 0x00000050 0x02FC1BC80x00000070 0x00000000 new N N ??(0) ??268 013 508 0x02FC1DB8 0x00000050 0x02FC1DA80x00000070 0x00000000 new N N ??(0) ??269 013 512 0x02FC1EC8 0x00000050 0x02FC1EB8 0x00000070 0x00000000 new N N ??(0) ??270 013 516 0x02FC1FD8 0x00000050 0x02FC1FC8 0x00000070 0x00000000 new N N ??(0) ??271 0135 20 0x02FC2088 0x00000050 0x02FC20780x00000070 0x00000000 new N N ??(0) ??272 0 26324 0x02FCBD90 0x00000018 0x02FCBD80 0x000000380x00000000 new N N ??(0) ??273 0 26325 0x02FCBE08 0x00000018 0x02FCBDF8 0x000000380x00000000 new N N ??(0) ??274 0 29550 0x02FD1BB8 0x00000034 0x02FD1BA8 0x000000540x00000000 new N N ??(0) ??275 0 29553 0x02FD78F0 0x00000034 0x02FD78E0 0x000000540x00000000 new N N ??(0) ??276 0 29529 0x02FE85A8 0x00000234 0x02FE8598 0x000002540x00000000 new N N ??(0) ??277 01 4519 0x02FECDF0 0x0000003C 0x02FECDE0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams278 01 4520 0x02FECE88 0x00000050 0x02FECE780x00000070 0x00000000 new N N ??(0) ??279 0 14525 0x02FEE6C8 0x00000050 0x02FEE6B8 0x00000070 0x00000000 new N N ??(0) ??280 0 14529 0x02FEE848 0x00000050 0x02FEE838 0x00000070 0x00000000 new N N ??(0) ??281 0 14533 0x02FEE9D8 0x00000050 0x02FEE9C8 0x000000700x00000000 new N N ??(0) ??282 0 14537 0x02FEEAF8 0x00000050 0x02FEEAE8 0x000000700x00000000 new N N ??(0) ??283 0145 41 0x02FEEBA8 0x00000050 0x02FEEB98 0x00000070 0x00000000 new N N ??(0) ??284 0 29549 0x02FEEC58 0x00000018 0x02FEEC48 0x000000380x00000000 new N N ??(0) ??285 0 30589 0x02FFAF48 0x00000034 0x02FFAF38 0x000000540x00000000 new N N ??(0) ??286 01 5093 0x02FFCD78 0x0000003C 0x02FFCD68 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams287 01 5094 0x02FFCE10 0x00000050 0x02FFCE000x00000070 0x00000000 new N N ??(0) ??288 01 5099 0x02FFCF20 0x00000050 0x02FFCF100x00000070 0x00000000 new N N ??(0) ??289 01 5103 0x02FFCFD0 0x00000050 0x02FFCFC00x00000070 0x00000000 new N N ??(0) ??290 0 15107 0x02FFD080 0x00000050 0x02FFD070 0x000000700x00000000 new N N ??(0) ??291 015 111 0x02FFD130 0x0000003C 0x02FFD120 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams292 015 112 0x02FFD1C8 0x00000050 0x02FFD1B80x00000070 0x00000000 new N N ??(0) ??293 0151 17 0x02FFD2E0 0x00000050 0x02FFD2D0 0x00000070 0x00000000 new N N ??(0) ??294 0151 21 0x02FFD390 0x00000050 0x02FFD380 0x00000070 0x00000000 new N N ??(0) ??295 0151 25 0x02FFD440 0x00000050 0x02FFD430 0x00000070 0x00000000 new N N ??(0) ??296 015 839 0x0300AA88 0x0000003C 0x0300AA780x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams297 015 734 0x0300AB28 0x00000050 0x0300AB18 0x00000070 0x00000000 new N N ??(0) ??298 015 739 0x0300ABD8 0x00000050 0x0300ABC80x00000070 0x00000000 new N N ??(0) ??299 015 743 0x0300AC88 0x00000050 0x0300AC780x00000070 0x00000000 new N N ??(0) ??300 015 747 0x0300AD38 0x00000050 0x0300AD280x00000070 0x00000000 new N N ??(0) ??301 0157 51 0x0300ADE8 0x00000050 0x0300ADD8 0x00000070 0x00000000 new N N ??(0) ??302 0157 55 0x0300AE98 0x00000050 0x0300AE88 0x00000070 0x00000000 new N N ??(0) ??303 0157 60 0x0300AF48 0x00000050 0x0300AF38 0x00000070 0x00000000 new N N ??(0) ??304 0 15765 0x0300B060 0x00000050 0x0300B050 0x000000700x00000000 new N N ??(0) ??305 0157 69 0x0300B110 0x00000050 0x0300B1000x00000070 0x00000000 new N N ??(0) ??306 0157 73 0x0300B1C0 0x00000050 0x0300B1B00x00000070 0x00000000 new N N ??(0) ??307 0157 77 0x0300B270 0x00000050 0x0300B2600x00000070 0x00000000 new N N ??(0) ??308 0157 81 0x0300B320 0x00000050 0x0300B3100x00000070 0x00000000 new N N ??(0) ??309 0157 85 0x0300B3D0 0x0000003C 0x0300B3C0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams310 0157 86 0x0300B468 0x00000050 0x0300B458 0x00000070 0x00000000 new N N ??(0) ??311 0157 91 0x0300B580 0x00000050 0x0300B5700x00000070 0x00000000 new N N ??(0) ??312 0157 95 0x0300B630 0x00000050 0x0300B6200x00000070 0x00000000 new N N ??(0) ??313 0157 99 0x0300B6E0 0x00000050 0x0300B6D00x00000070 0x00000000 new N N ??(0) ??314 015 803 0x0300B790 0x00000050 0x0300B7800x00000070 0x00000000 new N N ??(0) ??315 015 807 0x0300B840 0x00000050 0x0300B8300x00000070 0x00000000 new N N ??(0) ??316 015 811 0x0300B8F0 0x00000050 0x0300B8E0 0x00000070 0x00000000 new N N ??(0) ??317 015 831 0x0300B9A0 0x00000050 0x0300B990 0x00000070 0x00000000 new N N ??(0) ??318 01584 0 0x0300BAF0 0x00000050 0x0300BAE0 0x00000070 0x00000000 new N N ??(0) ??319 015 845 0x0300BBA0 0x00000050 0x0300BB900x00000070 0x00000000 new N N ??(0) ??320 015 849 0x0300BC50 0x00000050 0x0300BC400x00000070 0x00000000 new N N ??(0) ??321 0158 53 0x0300BD00 0x00000050 0x0300BCF00x00000070 0x00000000 new N N ??(0) ??322 0158 57 0x0300BDB0 0x00000050 0x0300BDA00x00000070 0x00000000 new N N ??(0) ??323 0158 61 0x0300BE60 0x00000050 0x0300BE500x00000070 0x00000000 new N N ??(0) ??324 0158 65 0x0300BF10 0x00000050 0x0300BF000x00000070 0x00000000 new N N ??(0) ??325 0158 69 0x0300BFC0 0x00000050 0x0300BFB00x00000070 0x00000000 new N N ??(0) ??326 0158 73 0x0300C070 0x00000050 0x0300C0600x00000070 0x00000000 new N N ??(0) ??327 0158 77 0x0300C120 0x00000050 0x0300C1100x00000070 0x00000000 new N N ??(0) ??328 0158 81 0x0300C1D0 0x00000050 0x0300C1C00x00000070 0x00000000 new N N ??(0) ??329 0158 85 0x0300C280 0x00000050 0x0300C2700x00000070 0x00000000 new N N ??(0) ??330 0158 89 0x0300C330 0x00000050 0x0300C3200x00000070 0x00000000 new N N ??(0) ??331 015 733 0x0300F850 0x0000003C 0x0300F840 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams332 015 759 0x0300F8E8 0x0000003C 0x0300F8D8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams333 0158 15 0x03017C38 0x00000050 0x03017C28 0x00000070 0x00000000 new N N ??(0) ??334 0158 19 0x03017CE8 0x00000050 0x03017CD8 0x00000070 0x00000000 new N N ??(0) ??335 0158 23 0x03017D98 0x00000050 0x03017D88 0x00000070 0x00000000 new N N ??(0) ??336 0158 27 0x03017E48 0x00000050 0x03017E38 0x00000070 0x00000000 new N N ??(0) ??337 0158 35 0x03017EF8 0x00000050 0x03017EE8 0x00000070 0x00000000 new N N ??(0) ??338 0 29547 0x03018078 0x00000104 0x03018068 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight339 029 618 0x03019AE8 0x000000D4 0x03019AD8 0x000000F4 0x00000000 new N N ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu340 0 29643 0x0301B5D8 0x00000018 0x0301B5C8 0x000000380x00000000 new N N ??(0) ??341 0 27557 0x0301E2F0 0x00000034 0x0301E2E0 0x000000540x00000000 new N N ??(0) ??342 01 6684 0x03031808 0x0000003C 0x030317F8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams343 01 6685 0x03031948 0x00000050 0x03031938 0x00000070 0x00000000 new N N ??(0) ??344 01 6690 0x03031A58 0x00000050 0x03031A48 0x00000070 0x00000000 new N N ??(0) ??345 0 16694 0x03031B68 0x00000050 0x03031B58 0x000000700x00000000 new N N ??(0) ??346 02 9548 0x03037818 0x00000018 0x03037808 0x000000380x00000000 new N N ??(0) ??347 0 29552 0x03038F18 0x00000104 0x03038F08 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight348 0 26404 0x03062230 0x0000000C 0x03062220 0x0000002C0x00000000 new N N ??(0) ??349 0 26395 0x03066EB8 0x00000034 0x03066EA8 0x000000540x00000000 new N N ??(0) ??350 0 26396 0x03066F48 0x00000034 0x03066F38 0x000000540x00000000 new N N ??(0) ??351 026 397 0x03066FD8 0x00000034 0x03066FC8 0x00000054 0x00000000 new N N ??(0) ??352 026 398 0x03067068 0x00000034 0x030670580x00000054 0x00000000 new N N ??(0) ??353 026 399 0x030670F8 0x00000034 0x030670E80x00000054 0x00000000 new N N ??(0) ??354 0264 00 0x03067188 0x00000034 0x030671780x00000054 0x00000000 new N N ??(0) ??355 0264 01 0x03067218 0x00000034 0x030672080x00000054 0x00000000 new N N ??(0) ??356 0264 02 0x030672A8 0x00000034 0x030672980x00000054 0x00000000 new N N ??(0) ??357 0264 03 0x03067338 0x00000034 0x030673280x00000054 0x00000000 new N N ??(0) ??358 0264 09 0x030673C8 0x00000034 0x030673B8 0x000000540x00000000 new N N ??(0) ??359 0264 10 0x03067458 0x00000034 0x03067448 0x00000054 0x00000000 new N N ??(0) ??360 0264 11 0x03067548 0x00000034 0x03067538 0x00000054 0x00000000 new N N ??(0) ??361 0264 12 0x03067638 0x00000034 0x03067628 0x00000054 0x00000000 new N N ??(0) ??362 0264 13 0x03067728 0x00000034 0x03067718 0x000000540x00000000 new N N ??(0) ??363 0264 14 0x03067818 0x00000034 0x03067808 0x00000054 0x00000000 new N N ??(0) ??364 0264 15 0x03067908 0x00000034 0x030678F80x00000054 0x00000000 new N N ??(0) ??365 0264 16 0x03067998 0x00000034 0x030679880x00000054 0x00000000 new N N ??(0) ??366 0264 17 0x03067A28 0x00000034 0x03067A18 0x000000540x00000000 new N N ??(0) ??367 0264 18 0x03067AB8 0x00000034 0x03067AA8 0x00000054 0x00000000 new N N ??(0) ??368 0264 19 0x03067BA8 0x0000000C 0x03067B98 0x0000002C0x00000000 new N N ??(0) ??369 0264 20 0x03067C10 0x00000084 0x03067C00 0x000000A4 0x00000000 new N N ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati370 0264 21 0x03067CF0 0x00000034 0x03067CE0 0x00000054 0x00000000 new N N ??(0) ??371 0264 22 0x03067D80 0x00000034 0x03067D70 0x00000054 0x00000000 new N N ??(0) ??372 0264 23 0x03067E70 0x00000034 0x03067E60 0x00000054 0x00000000 new N N ??(0) ??373 026 321 0x030A3518 0x00000018 0x030A3508 0x000000380x00000000 new N N ??(0) ??374 026 323 0x030A3590 0x00000018 0x030A3580 0x000000380x00000000 new N N ??(0) ??375 026 322 0x030A4D90 0x00000008 0x030A4D80 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati376 026 326 0x030A4EC0 0x00000018 0x030A4EB0 0x000000380x00000000 new N N ??(0) ??377 026 327 0x030A4F38 0x00000018 0x030A4F28 0x000000380x00000000 new N N ??(0) ??378 0263 71 0x030A5280 0x00000034 0x030A5270 0x000000540x00000000 new N N ??(0) ??379 0263 72 0x030A5310 0x00000034 0x030A5300 0x000000540x00000000 new N N ??(0) ??380 0263 73 0x030A53A0 0x00000034 0x030A5390 0x000000540x00000000 new N N ??(0) ??381 0263 74 0x030A5430 0x00000034 0x030A5420 0x000000540x00000000 new N N ??(0) ??382 0263 75 0x030A54C0 0x00000034 0x030A54B0 0x000000540x00000000 new N N ??(0) ??383 0263 76 0x030A5550 0x00000034 0x030A5540 0x000000540x00000000 new N N ??(0) ??384 0263 77 0x030A55E0 0x00000034 0x030A55D0 0x00000054 0x00000000 new N N ??(0) ??385 02637 8 0x030A5670 0x00000034 0x030A5660 0x00000054 0x00000000 new N N ??(0) ??386 02637 9 0x030A5700 0x00000034 0x030A56F0 0x00000054 0x00000000 new N N ??(0) ??387 0263 80 0x030A5790 0x00000034 0x030A5780 0x00000054 0x00000000 new N N ??(0) ??388 0263 81 0x030A5820 0x00000034 0x030A5810 0x00000054 0x00000000 new N N ??(0) ??389 0263 82 0x030A58B0 0x00000034 0x030A58A0 0x00000054 0x00000000 new N N ??(0) ??390 0263 83 0x030A5940 0x00000034 0x030A5930 0x00000054 0x00000000 new N N ??(0) ??391 0263 85 0x030A59D0 0x000000E8 0x030A59C0 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati392 0263 86 0x030A5B18 0x00000034 0x030A5B080x00000054 0x00000000 new N N ??(0) ??393 0263 87 0x030A5BA8 0x00000034 0x030A5B980x00000054 0x00000000 new N N ??(0) ??394 0263 88 0x030A5C38 0x00000034 0x030A5C280x00000054 0x00000000 new N N ??(0) ??395 02638 9 0x030A5CC8 0x00000034 0x030A5CB80x00000054 0x00000000 new N N ??(0) ??396 0263 90 0x030A5D58 0x00000034 0x030A5D480x00000054 0x00000000 new N N ??(0) ??397 0263 91 0x030A5DE8 0x00000034 0x030A5DD80x00000054 0x00000000 new N N ??(0) ??398 0263 92 0x030A5E78 0x00000034 0x030A5E680x00000054 0x00000000 new N N ??(0) ??399 02 6393 0x030A5F08 0x00000034 0x030A5EF8 0x00000054 0x00000000 new N N ??(0) ??400 026 394 0x030A5F98 0x00000034 0x030A5F880x00000054 0x00000000 new N N ??(0) ??401 02 7068 0x030ADC68 0x00000018 0x030ADC58 0x000000380x00000000 new N N ??(0) ??402 02640 5 0x030ADD10 0x0000009C 0x030ADD000x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati403 02640 6 0x030ADE08 0x00000034 0x030ADDF80x00000054 0x00000000 new N N ??(0) ??404 02640 7 0x030ADE98 0x00000034 0x030ADE880x00000054 0x00000000 new N N ??(0) ??405 0264 08 0x030ADF28 0x00000034 0x030ADF180x00000054 0x00000000 new N N ??(0) ??406 026457 0x030 AE018 0x00000034 0x030AE008 0x000000540x00000000 new N N ??(0) ??407 026458 0x030 AE0A8 0x00000034 0x030AE098 0x00000054 0x00000000 new N N ??(0) ??408 026459 0x030 AE138 0x00000034 0x030AE1280x00000054 0x00000000 new N N ??(0) ??409 026460 0x030 AE1C8 0x00000034 0x030AE1B80x00000054 0x00000000 new N N ??(0) ??410 026461 0x030 AE258 0x00000034 0x030AE2480x00000054 0x00000000 new N N ??(0) ??411 026462 0x030 AE2E8 0x00000034 0x030AE2D80x00000054 0x00000000 new N N ??(0) ??412 026463 0x030 AE378 0x00000034 0x030AE3680x00000054 0x00000000 new N N ??(0) ??413 026464 0x030 AE468 0x00000034 0x030AE4580x00000054 0x00000000 new N N ??(0) ??414 026465 0x030 AE4F8 0x00000034 0x030AE4E80x00000054 0x00000000 new N N ??(0) ??415 026466 0x030 AE588 0x00000034 0x030AE5780x00000054 0x00000000 new N N ??(0) ??416 026467 0x030 AE618 0x00000034 0x030AE6080x00000054 0x00000000 new N N ??(0) ??417 02646 9 0x030AE708 0x00000034 0x030AE6F8 0x00000054 0x00000000 new N N reflectiontest.h(302) RaytraceDemoApplication::createScene418 026 589 0x030B0760 0x00000030 0x030B0750 0x00000050 0x00000000 new N N framecapture.h(87) FrameCapture::addAnimableNode419 026 591 0x030B07F0 0x00000030 0x030B07E0 0x00000050 0x00000000 new N N framecapture.h(87) FrameCapture::addAnimableNode420 026 592 0x030B0880 0x00000008 0x030B0870 0x00000028 0x00000000 new N N ??(0) ??421 026 316 0x030B6640 0x0000000C 0x030B6630 0x0000002C 0x00000000 new N N ??(0) ??422 02 9592 0x030F9058 0x000000E8 0x030F9048 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu423 02 9593 0x030F91A0 0x00000034 0x030F9190 0x000000540x00000000 new N N ??(0) ??424 02 7097 0x030FB0B0 0x00000034 0x030FB0A0 0x000000540x00000000 new N N ??(0) ??425 02707 2 0x03109C58 0x00000004 0x03109C48 0x00000024 0x00000000 new N N ??(0) ??426 0270 73 0x03109CB8 0x00000018 0x03109CA8 0x00000038 0x00000000 new N N ??(0) ??427 0270 95 0x03109D30 0x00000108 0x03109D20 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory:428 0270 96 0x03109E98 0x00000134 0x03109E88 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM429 0270 64 0x0310CAE8 0x000000C4 0x0310CAD8 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques430 0270 66 0x0310CC08 0x00000020 0x0310CBF8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques431 0270 67 0x0310CC88 0x00000104 0x0310CC78 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques432 0270 69 0x0310CE98 0x00000018 0x0310CE880x00000038 0x00000000 new N N ??(0) ??433 0270 70 0x0310CF10 0x00000034 0x0310CF00 0x00000054 0x00000000 new N N ??(0) ??434 0270 71 0x0310CFA0 0x0000000C 0x0310CF90 0x0000002C 0x00000000 new N N ??(0) ??435 027 217 0x0310E008 0x00000018 0x0310DFF8 0x000000380x00000000 new N N ??(0) ??436 027 240 0x0310E100 0x00000108 0x0310E0F0 0x00000128 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(110) OgreDistanceCubeMapRenderTechniqueFacto437 0272 41 0x0310E328 0x00000134 0x0310E318 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM438 027242 0x031 0E5D8 0x00000034 0x0310E5C8 0x00000054 0x00000000 new N N ??(0) ??439 02 6317 0x03110078 0x00000018 0x03110068 0x00000038 0x00000000 new N N ??(0) ??440 02 6318 0x031109A0 0x00000018 0x03110990 0x000000380x00000000 new N N ??(0) ??441 027 360 0x0314F560 0x00000018 0x0314F550 0x000000380x00000000 new N N ??(0) ??442 0273 97 0x0315BC78 0x00000108 0x0315BC68 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory:443 02739 8 0x0315BDE0 0x00000134 0x0315BDD0 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM444 027 399 0x0315BF70 0x00000034 0x0315BF60 0x00000054 0x00000000 new N N ??(0) ??445 027 517 0x0315F308 0x00000018 0x0315F2F8 0x000000380x00000000 new N N ??(0) ??446 02768 1 0x0315F400 0x00000020 0x0315F3F0 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques447 0275 55 0x0315F4B0 0x00000108 0x0315F4A0 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory:448 027 556 0x0315F618 0x00000134 0x0315F608 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM449 027 770 0x03163EE8 0x0000000C 0x03163ED8 0x0000002C 0x00000000 new N N ??(0) ??450 027 686 0x03164BA8 0x0000000C 0x03164B98 0x0000002C 0x00000000 new N N ??(0) ??451 027 678 0x03166250 0x00000010 0x03166240 0x000000300x00000000 new N N ??(0) ??452 02 7675 0x031664B0 0x00000018 0x031664A0 0x000000380x00000000 new N N ??(0) ??453 02767 9 0x03166680 0x000000C4 0x03166670 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques454 02768 2 0x031667A0 0x00000104 0x03166790 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques455 02768 3 0x03166900 0x00000018 0x031668F0 0x00000038 0x00000000 new N N ??(0) ??456 02768 4 0x03166978 0x00000018 0x03166968 0x00000038 0x00000000 new N N ??(0) ??457 02768 5 0x031669F0 0x00000034 0x031669E0 0x000000540x00000000 new N N ??(0) ??458 02768 8 0x03166A80 0x00000018 0x03166A70 0x000000380x00000000 new N N ??(0) ??459 027 700 0x03166AF8 0x000000E4 0x03166AE8 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF460 0277 96 0x03166C38 0x00000004 0x03166C28 0x00000024 0x00000000 new N N ??(0) ??461 02779 7 0x031674C0 0x000000C4 0x031674B0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques462 027801 0x031 675E0 0x00000018 0x031675D0 0x00000038 0x00000000 new N N ??(0) ??463 0278 13 0x03167658 0x000000E4 0x03167648 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF464 027 900 0x03167798 0x00000004 0x03167788 0x00000024 0x00000000 new N N ??(0) ??465 02790 3 0x031677F8 0x00000020 0x031677E8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques466 027 874 0x03167B70 0x0000000C 0x03167B60 0x0000002C 0x00000000 new N N ??(0) ??467 027 977 0x03169808 0x0000000C 0x031697F80x0000002C 0x00000000 new N N ??(0) ??468 027 799 0x03175F60 0x00000020 0x03175F50 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques469 02790 1 0x03176E20 0x000000C4 0x03176E10 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques470 02790 5 0x03176FA8 0x00000018 0x03176F98 0x00000038 0x00000000 new N N ??(0) ??471 02791 7 0x03177020 0x000000E4 0x03177010 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF472 028 003 0x03177160 0x00000004 0x03177150 0x00000024 0x00000000 new N N ??(0) ??473 02800 4 0x0317A078 0x000000C4 0x0317A0680x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques474 02800 6 0x0317A198 0x00000020 0x0317A1880x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques475 0280 08 0x0317A218 0x00000018 0x0317A2080x00000038 0x00000000 new N N ??(0) ??476 02802 0 0x0317A290 0x000000E4 0x0317A2800x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF477 0281 08 0x0317A3D0 0x00000004 0x0317A3C00x00000024 0x00000000 new N N ??(0) ??478 02811 1 0x0317A430 0x00000020 0x0317A4200x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques479 02808 2 0x0317B680 0x0000000C 0x0317B670 0x0000002C 0x00000000 new N N ??(0) ??480 0281 09 0x0317D2A0 0x000000C4 0x0317D290 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques481 02832 1 0x0317D3C0 0x00000018 0x0317D3B0 0x00000038 0x00000000 new N N ??(0) ??482 02811 3 0x0317D438 0x00000018 0x0317D428 0x00000038 0x00000000 new N N ??(0) ??483 02812 5 0x0317D4B0 0x000000E4 0x0317D4A00x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF484 028 212 0x03185250 0x00000004 0x031852400x00000024 0x00000000 new N N ??(0) ??485 02818 6 0x031855B8 0x0000000C 0x031855A80x0000002C 0x00000000 new N N ??(0) ??486 02821 3 0x03188170 0x000000C4 0x03188160 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques487 02821 5 0x03188290 0x00000020 0x03188280 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques488 02821 6 0x03188310 0x00000018 0x03188300 0x00000038 0x00000000 new N N ??(0) ??489 0282 28 0x03188388 0x000000E4 0x03188378 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF490 028 316 0x031884C8 0x00000004 0x031884B8 0x00000024 0x00000000 new N N ??(0) ??491 02829 0 0x03189778 0x0000000C 0x031897680x0000002C 0x00000000 new N N ??(0) ??492 02831 7 0x0318B398 0x000000C4 0x0318B3880x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques493 0283 19 0x0318B4B8 0x00000020 0x0318B4A80x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques494 02863 1 0x0318B538 0x00000018 0x0318B5280x00000038 0x00000000 new N N ??(0) ??495 02833 3 0x0318B5B8 0x000000E4 0x0318B5A80x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF496 028 421 0x0318B6F8 0x00000004 0x0318B6E80x00000024 0x00000000 new N N ??(0) ??497 02839 5 0x0318C9D8 0x0000000C 0x0318C9C8 0x0000002C 0x00000000 new N N ??(0) ??498 02842 2 0x0318E5F8 0x000000C4 0x0318E5E80x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques499 02842 4 0x0318E718 0x00000020 0x0318E7080x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques500 02842 5 0x0318E798 0x00000018 0x0318E7880x00000038 0x00000000 new N N ??(0) ??501 02843 7 0x0318E810 0x000000E4 0x0318E8000x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF502 028 524 0x0318E950 0x00000004 0x0318E9400x00000024 0x00000000 new N N ??(0) ??503 028 498 0x0318ECB8 0x0000000C 0x0318ECA80x0000002C 0x00000000 new N N ??(0) ??504 02860 0 0x03190B58 0x0000000C 0x03190B48 0x0000002C 0x00000000 new N N ??(0) ??505 02852 5 0x031994A8 0x000000C4 0x03199498 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques506 02852 7 0x031995C8 0x00000020 0x031995B8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques507 0285 28 0x03199648 0x00000018 0x03199638 0x00000038 0x00000000 new N N ??(0) ??508 02854 0 0x031996C0 0x000000E4 0x031996B0 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF509 028 626 0x03199800 0x00000004 0x031997F0 0x00000024 0x00000000 new N N ??(0) ??510 02862 7 0x0319C760 0x000000C4 0x0319C750 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques511 0286 29 0x0319C880 0x00000020 0x0319C870 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques512 02863 0 0x0319C900 0x00000034 0x0319C8F0 0x00000054 0x00000000 new N N ??(0) ??513 02864 3 0x0319C990 0x000000E4 0x0319C980 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF514 028 731 0x0319CAD0 0x00000004 0x0319CAC0 0x00000024 0x00000000 new N N ??(0) ??515 02870 5 0x0319DDB0 0x0000000C 0x0319DDA00x0000002C 0x00000000 new N N ??(0) ??516 02873 2 0x0319F9D0 0x000000C4 0x0319F9C00x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques517 02873 4 0x0319FAF0 0x00000020 0x0319FAE00x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques518 02873 5 0x0319FB70 0x00000018 0x0319FB600x00000038 0x00000000 new N N ??(0) ??519 02874 7 0x0319FBE8 0x000000E4 0x0319FBD80x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF520 028 834 0x0319FD28 0x00000004 0x0319FD180x00000024 0x00000000 new N N ??(0) ??521 0288 08 0x031A0090 0x0000000C 0x031A00800x0000002C 0x00000000 new N N ??(0) ??522 02891 0 0x031A1F30 0x0000000C 0x031A1F200x0000002C 0x00000000 new N N ??(0) ??523 02883 5 0x031A2C48 0x000000C4 0x031A2C38 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques524 02883 7 0x031A2D68 0x00000020 0x031A2D58 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques525 0288 38 0x031A2DE8 0x00000018 0x031A2DD8 0x00000038 0x00000000 new N N ??(0) ??526 02885 0 0x031A2E60 0x000000E4 0x031A2E50 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF527 02 8936 0x031A2FA0 0x00000004 0x031A2F90 0x00000024 0x00000000 new N N ??(0) ??11 026344 0x0214DE48 0x00000018 0x0214DE38 0x00000038 0x00000000 new N N ??(0) ?? 12 026345 0x0214DEB0 0x00000018 0x0214DEA0 0x00000038 0x00000000 new N N ??(0) ?? 13 026346 0x0214DF18 0x00000018 0x0214DF08 0x00000038 0x00000000 new N N ??(0) ?? 14 026347 0x0214DF80 0x00000018 0x0214DF70 0x00000038 0x00000000 new N N ??(0) ?? 15 026348 0x0214DFE8 0x00000018 0x0214DFD8 0x00000038 0x00000000 new N N ??(0) ?? 16 026349 0x0214E050 0x000000E4 0x0214E040 0x00000104 0x00000000 new N N ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 17 026350 0x0214E180 0x00000034 0x0214E170 0x00000054 0x00000000 new N N ??(0) ?? 18 026351 0x0214E200 0x00000034 0x0214E1F0 0x00000054 0x00000000 new N N ??(0) ?? 19 026352 0x0214E280 0x00000034 0x0214E270 0x00000054 0x00000000 new N N ??(0) ?? 20 026400 0x02155F58 0x00000034 0x02155F48 0x00000054 0x00000000 new N N ??(0) ?? 21 026401 0x02155FD8 0x00000034 0x02155FC8 0x00000054 0x00000000 new N N ??(0) ?? 22 026402 0x02156058 0x00000034 0x02156048 0x00000054 0x00000000 new N N ??(0) ?? 23 026403 0x021560D8 0x00000034 0x021560C8 0x00000054 0x00000000 new N N ??(0) ?? 24 026410 0x02156158 0x00000034 0x02156148 0x00000054 0x00000000 new N N ??(0) ?? 25 026411 0x021561D8 0x00000034 0x021561C8 0x00000054 0x00000000 new N N ??(0) ?? 26 026412 0x02156258 0x00000034 0x02156248 0x00000054 0x00000000 new N N ??(0) ?? 27 026413 0x02156328 0x00000034 0x02156318 0x00000054 0x00000000 new N N ??(0) ?? 28 026414 0x021563F8 0x00000034 0x021563E8 0x00000054 0x00000000 new N N ??(0) ?? 29 026415 0x021564C8 0x00000034 0x021564B8 0x00000054 0x00000000 new N N ??(0) ?? 30 026416 0x02156598 0x00000034 0x02156588 0x00000054 0x00000000 new N N ??(0) ?? 31 026417 0x02156668 0x00000034 0x02156658 0x00000054 0x00000000 new N N ??(0) ?? 32 026418 0x021566E8 0x00000034 0x021566D8 0x00000054 0x00000000 new N N ??(0) ?? 33 026419 0x02156768 0x00000034 0x02156758 0x00000054 0x00000000 new N N ??(0) ?? 34 026420 0x021567E8 0x00000034 0x021567D8 0x00000054 0x00000000 new N N ??(0) ?? 35 026421 0x021568B8 0x0000000C 0x021568A8 0x0000002C 0x00000000 new N N ??(0) ?? 36 026422 0x02156910 0x00000084 0x02156900 0x000000A4 0x00000000 new N N ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 37 026423 0x021569E0 0x00000034 0x021569D0 0x00000054 0x00000000 new N N ??(0) ?? 38 026424 0x02156A60 0x00000034 0x02156A50 0x00000054 0x00000000 new N N ??(0) ?? 39 026425 0x02156B30 0x00000034 0x02156B20 0x00000054 0x00000000 new N N ??(0) ?? 40 026426 0x02156C00 0x00000034 0x02156BF0 0x00000054 0x00000000 new N N ??(0) ?? 41 026427 0x02156CD0 0x0000000C 0x02156CC0 0x0000002C 0x00000000 new N N ??(0) ?? 42 026429 0x02156D28 0x00000034 0x02156D18 0x00000054 0x00000000 new N N ??(0) ?? 43 026315 0x02156E30 0x000001F8 0x02156E20 0x00000218 0x00000000 new N N ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 44 026336 0x02157078 0x00000018 0x02157068 0x00000038 0x00000000 new N N ??(0) ?? 45 026337 0x021570E0 0x00000018 0x021570D0 0x00000038 0x00000000 new N N ??(0) ?? 46 026338 0x02157148 0x00000018 0x02157138 0x00000038 0x00000000 new N N ??(0) ?? 47 026322 0x02157278 0x00000034 0x02157268 0x00000054 0x00000000 new N N ??(0) ?? 48 026334 0x02157698 0x00000018 0x02157688 0x00000038 0x00000000 new N N ??(0) ?? 49 026335 0x02157700 0x00000018 0x021576F0 0x00000038 0x00000000 new N N ??(0) ?? 50 026328 0x02157818 0x00000018 0x02157808 0x00000038 0x00000000 new N N ??(0) ?? 51 026329 0x02157880 0x00000018 0x02157870 0x00000038 0x00000000 new N N ??(0) ?? 52 026320 0x02157FA0 0x00000018 0x02157F90 0x00000038 0x00000000 new N N ??(0) ?? 53 030591 0x02160A30 0x00000034 0x02160A20 0x00000054 0x00000000 new N N ??(0) ?? 54 026324 0x021696E8 0x00000008 0x021696D8 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 55 026321 0x02184760 0x00000034 0x02184750 0x00000054 0x00000000 new N N ??(0) ?? 56 026353 0x02185438 0x00000034 0x02185428 0x00000054 0x00000000 new N N ??(0) ?? 57 026354 0x021854B8 0x00000034 0x021854A8 0x00000054 0x00000000 new N N ??(0) ?? 58 026355 0x02185538 0x00000034 0x02185528 0x00000054 0x00000000 new N N ??(0) ?? 59 026356 0x021855B8 0x00000034 0x021855A8 0x00000054 0x00000000 new N N ??(0) ?? 60 026357 0x02185638 0x00000034 0x02185628 0x00000054 0x00000000 new N N ??(0) ?? 61 026358 0x021856B8 0x00000034 0x021856A8 0x00000054 0x00000000 new N N ??(0) ?? 62 026359 0x02185738 0x00000034 0x02185728 0x00000054 0x00000000 new N N ??(0) ?? 63 026360 0x021857B8 0x00000034 0x021857A8 0x00000054 0x00000000 new N N ??(0) ?? 64 026361 0x02185838 0x00000034 0x02185828 0x00000054 0x00000000 new N N ??(0) ?? 65 026362 0x021858B8 0x00000034 0x021858A8 0x00000054 0x00000000 new N N ??(0) ?? 66 026363 0x02185938 0x00000034 0x02185928 0x00000054 0x00000000 new N N ??(0) ?? 67 026364 0x021859B8 0x00000034 0x021859A8 0x00000054 0x00000000 new N N ??(0) ?? 68 026365 0x02185A38 0x00000034 0x02185A28 0x00000054 0x00000000 new N N ??(0) ?? 69 026366 0x02185AB8 0x00000034 0x02185AA8 0x00000054 0x00000000 new N N ??(0) ?? 70 026367 0x02185B38 0x0000000C 0x02185B28 0x0000002C 0x00000000 new N N ??(0) ?? 71 026369 0x02185B90 0x00000034 0x02185B80 0x00000054 0x00000000 new N N ??(0) ?? 72 026323 0x02185E50 0x00000018 0x02185E40 0x00000038 0x00000000 new N N ??(0) ?? 73 026325 0x02185EB8 0x00000018 0x02185EA8 0x00000038 0x00000000 new N N ??(0) ?? 74 026339 0x02185FC0 0x00000018 0x02185FB0 0x00000038 0x00000000 new N N ??(0) ?? 75 026340 0x02186028 0x00000018 0x02186018 0x00000038 0x00000000 new N N ??(0) ?? 76 026341 0x02186090 0x00000018 0x02186080 0x00000038 0x00000000 new N N ??(0) ?? 77 026342 0x021860F8 0x00000018 0x021860E8 0x00000038 0x00000000 new N N ??(0) ?? 78 026343 0x02186160 0x00000018 0x02186150 0x00000038 0x00000000 new N N ??(0) ?? 79 026384 0x02186888 0x00000034 0x02186878 0x00000054 0x00000000 new N N ??(0) ?? 80 026385 0x02186908 0x00000034 0x021868F8 0x00000054 0x00000000 new N N ??(0) ?? 81 026386 0x02186988 0x0000000C 0x02186978 0x0000002C 0x00000000 new N N ??(0) ?? 82 026387 0x021869E0 0x000000E8 0x021869D0 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 83 026388 0x02186B18 0x00000034 0x02186B08 0x00000054 0x00000000 new N N ??(0) ?? 84 026389 0x02186B98 0x00000034 0x02186B88 0x00000054 0x00000000 new N N ??(0) ?? 85 026390 0x02186C18 0x00000034 0x02186C08 0x00000054 0x00000000 new N N ??(0) ?? 86 026391 0x02186C98 0x00000034 0x02186C88 0x00000054 0x00000000 new N N ??(0) ?? 87 026392 0x02186D18 0x00000034 0x02186D08 0x00000054 0x00000000 new N N ??(0) ?? 88 026393 0x02186D98 0x00000034 0x02186D88 0x00000054 0x00000000 new N N ??(0) ?? 89 026394 0x02186E18 0x00000034 0x02186E08 0x00000054 0x00000000 new N N ??(0) ?? 90 026395 0x02186E98 0x00000034 0x02186E88 0x00000054 0x00000000 new N N ??(0) ?? 91 026396 0x02186F18 0x00000034 0x02186F08 0x00000054 0x00000000 new N N ??(0) ?? 92 026397 0x02186F98 0x00000034 0x02186F88 0x00000054 0x00000000 new N N ??(0) ?? 93 026398 0x02187018 0x00000034 0x02187008 0x00000054 0x00000000 new N N ??(0) ?? 94 026399 0x02187098 0x00000034 0x02187088 0x00000054 0x00000000 new N N ??(0) ?? 95 026332 0x021A56F0 0x00000018 0x021A56E0 0x00000038 0x00000000 new N N ??(0) ?? 96 026333 0x021A5758 0x00000018 0x021A5748 0x00000038 0x00000000 new N N ??(0) ?? 97 007412 0x021AE778 0x00000050 0x021AE768 0x00000070 0x00000000 new N N ??(0) ?? 98 007530 0x021AF098 0x0000003C 0x021AF088 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 99 007406 0x021AF138 0x0000003C 0x021AF128 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 100 007407 0x021AF1C0 0x00000050 0x021AF1B0 0x00000070 0x00000000 new N N ??(0) ?? 101 007416 0x021AF410 0x00000050 0x021AF400 0x00000070 0x00000000 new N N ??(0) ?? 102 007420 0x021AF550 0x00000050 0x021AF540 0x00000070 0x00000000 new N N ??(0) ?? 103 007424 0x021AF6A0 0x00000050 0x021AF690 0x00000070 0x00000000 new N N ??(0) ?? 104 007428 0x021AF740 0x00000050 0x021AF730 0x00000070 0x00000000 new N N ??(0) ?? 105 007531 0x021AF7E0 0x00000050 0x021AF7D0 0x00000070 0x00000000 new N N ??(0) ?? 106 007536 0x021B9A78 0x00000050 0x021B9A68 0x00000070 0x00000000 new N N ??(0) ?? 107 007544 0x021B9B18 0x00000050 0x021B9B08 0x00000070 0x00000000 new N N ??(0) ?? 108 007540 0x021B9BC8 0x00000050 0x021B9BB8 0x00000070 0x00000000 new N N ??(0) ?? 109 007548 0x021B9CC8 0x00000050 0x021B9CB8 0x00000070 0x00000000 new N N ??(0) ?? 110 007552 0x021B9E28 0x00000050 0x021B9E18 0x00000070 0x00000000 new N N ??(0) ?? 111 007745 0x021BAB00 0x00000050 0x021BAAF0 0x00000070 0x00000000 new N N ??(0) ?? 112 007739 0x021BAC30 0x0000003C 0x021BAC20 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 113 007740 0x021BD1A0 0x00000050 0x021BD190 0x00000070 0x00000000 new N N ??(0) ?? 114 007757 0x021BD290 0x00000050 0x021BD280 0x00000070 0x00000000 new N N ??(0) ?? 115 007749 0x021BD3F0 0x00000050 0x021BD3E0 0x00000070 0x00000000 new N N ??(0) ?? 116 007753 0x021BD4F0 0x00000050 0x021BD4E0 0x00000070 0x00000000 new N N ??(0) ?? 117 007761 0x021BD640 0x00000050 0x021BD630 0x00000070 0x00000000 new N N ??(0) ?? 118 008070 0x021C0870 0x0000003C 0x021C0860 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 119 008076 0x021C0950 0x00000050 0x021C0940 0x00000070 0x00000000 new N N ??(0) ?? 120 008071 0x021C2EE8 0x00000050 0x021C2ED8 0x00000070 0x00000000 new N N ??(0) ?? 121 026319 0x021C3028 0x00000018 0x021C3018 0x00000038 0x00000000 new N N ??(0) ?? 122 008088 0x021C4038 0x00000050 0x021C4028 0x00000070 0x00000000 new N N ??(0) ?? 123 008080 0x021C40E8 0x00000050 0x021C40D8 0x00000070 0x00000000 new N N ??(0) ?? 124 008084 0x021C4238 0x00000050 0x021C4228 0x00000070 0x00000000 new N N ??(0) ?? 125 008092 0x021C4388 0x00000050 0x021C4378 0x00000070 0x00000000 new N N ??(0) ?? 126 009331 0x021DE270 0x00000050 0x021DE260 0x00000070 0x00000000 new N N ??(0) ?? 127 009335 0x021DE310 0x00000050 0x021DE300 0x00000070 0x00000000 new N N ??(0) ?? 128 009345 0x021DE3B0 0x00000050 0x021DE3A0 0x00000070 0x00000000 new N N ??(0) ?? 129 009339 0x021DE450 0x0000003C 0x021DE440 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 130 009340 0x021DE4D8 0x00000050 0x021DE4C8 0x00000070 0x00000000 new N N ??(0) ?? 131 009353 0x021DE5D0 0x00000050 0x021DE5C0 0x00000070 0x00000000 new N N ??(0) ?? 132 009349 0x021DE730 0x00000050 0x021DE720 0x00000070 0x00000000 new N N ??(0) ?? 133 009357 0x021DE7D0 0x00000050 0x021DE7C0 0x00000070 0x00000000 new N N ??(0) ?? 134 009361 0x021DE870 0x00000050 0x021DE860 0x00000070 0x00000000 new N N ??(0) ?? 135 009365 0x021DE910 0x00000050 0x021DE900 0x00000070 0x00000000 new N N ??(0) ?? 136 009570 0x021DF930 0x0000003C 0x021DF920 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 137 009326 0x02F19B20 0x00000050 0x02F19B10 0x00000070 0x00000000 new N N ??(0) ?? 138 009325 0x02F1A8D8 0x0000003C 0x02F1A8C8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 139 009792 0x02F1B8A0 0x0000003C 0x02F1B890 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 140 009793 0x02F1B928 0x00000050 0x02F1B918 0x00000070 0x00000000 new N N ??(0) ?? 141 009798 0x02F1B9C8 0x00000050 0x02F1B9B8 0x00000070 0x00000000 new N N ??(0) ?? 142 009802 0x02F1BA68 0x00000050 0x02F1BA58 0x00000070 0x00000000 new N N ??(0) ?? 143 009806 0x02F1BB08 0x00000050 0x02F1BAF8 0x00000070 0x00000000 new N N ??(0) ?? 144 009810 0x02F1BBA8 0x00000050 0x02F1BB98 0x00000070 0x00000000 new N N ??(0) ?? 145 009814 0x02F1BC48 0x00000050 0x02F1BC38 0x00000070 0x00000000 new N N ??(0) ?? 146 009818 0x02F1BD38 0x0000003C 0x02F1BD28 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 147 009819 0x02F1BDC0 0x00000050 0x02F1BDB0 0x00000070 0x00000000 new N N ??(0) ?? 148 009824 0x02F1BEB8 0x00000050 0x02F1BEA8 0x00000070 0x00000000 new N N ??(0) ?? 149 009828 0x02F1BF58 0x00000050 0x02F1BF48 0x00000070 0x00000000 new N N ??(0) ?? 150 009832 0x02F1C048 0x00000050 0x02F1C038 0x00000070 0x00000000 new N N ??(0) ?? 151 009836 0x02F1C0E8 0x00000050 0x02F1C0D8 0x00000070 0x00000000 new N N ??(0) ?? 152 009840 0x02F1C188 0x00000050 0x02F1C178 0x00000070 0x00000000 new N N ??(0) ?? 153 009844 0x02F1C228 0x00000050 0x02F1C218 0x00000070 0x00000000 new N N ??(0) ?? 154 009993 0x02F1C6C0 0x00000050 0x02F1C6B0 0x00000070 0x00000000 new N N ??(0) ?? 155 009987 0x02F1C9F0 0x0000003C 0x02F1C9E0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 156 009997 0x02F1D338 0x00000050 0x02F1D328 0x00000070 0x00000000 new N N ??(0) ?? 157 010001 0x02F1D3D8 0x00000050 0x02F1D3C8 0x00000070 0x00000000 new N N ??(0) ?? 158 010005 0x02F1D478 0x00000050 0x02F1D468 0x00000070 0x00000000 new N N ??(0) ?? 159 010009 0x02F1D518 0x00000050 0x02F1D508 0x00000070 0x00000000 new N N ??(0) ?? 160 010019 0x02F1D5B8 0x00000050 0x02F1D5A8 0x00000070 0x00000000 new N N ??(0) ?? 161 010013 0x02F1D658 0x0000003C 0x02F1D648 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 162 010014 0x02F1D6E0 0x00000050 0x02F1D6D0 0x00000070 0x00000000 new N N ??(0) ?? 163 010027 0x02F1D7D8 0x00000050 0x02F1D7C8 0x00000070 0x00000000 new N N ??(0) ?? 164 010023 0x02F1D938 0x00000050 0x02F1D928 0x00000070 0x00000000 new N N ??(0) ?? 165 010031 0x02F1D9D8 0x00000050 0x02F1D9C8 0x00000070 0x00000000 new N N ??(0) ?? 166 010035 0x02F1DA78 0x00000050 0x02F1DA68 0x00000070 0x00000000 new N N ??(0) ?? 167 010039 0x02F1DB18 0x00000050 0x02F1DB08 0x00000070 0x00000000 new N N ??(0) ?? 168 009571 0x02F21C58 0x00000050 0x02F21C48 0x00000070 0x00000000 new N N ??(0) ?? 169 009576 0x02F22730 0x00000050 0x02F22720 0x00000070 0x00000000 new N N ??(0) ?? 170 009580 0x02F227D0 0x00000050 0x02F227C0 0x00000070 0x00000000 new N N ??(0) ?? 171 009584 0x02F22870 0x00000050 0x02F22860 0x00000070 0x00000000 new N N ??(0) ?? 172 009588 0x02F22910 0x00000050 0x02F22900 0x00000070 0x00000000 new N N ??(0) ?? 173 009592 0x02F25F38 0x00000050 0x02F25F28 0x00000070 0x00000000 new N N ??(0) ?? 174 009596 0x02F26028 0x0000003C 0x02F26018 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 175 009597 0x02F260B0 0x00000050 0x02F260A0 0x00000070 0x00000000 new N N ??(0) ?? 176 009602 0x02F261A8 0x00000050 0x02F26198 0x00000070 0x00000000 new N N ??(0) ?? 177 009606 0x02F26248 0x00000050 0x02F26238 0x00000070 0x00000000 new N N ??(0) ?? 178 009610 0x02F26338 0x00000050 0x02F26328 0x00000070 0x00000000 new N N ??(0) ?? 179 009614 0x02F263D8 0x00000050 0x02F263C8 0x00000070 0x00000000 new N N ??(0) ?? 180 009618 0x02F26478 0x00000050 0x02F26468 0x00000070 0x00000000 new N N ??(0) ?? 181 009622 0x02F26518 0x00000050 0x02F26508 0x00000070 0x00000000 new N N ??(0) ?? 182 010673 0x02F28148 0x0000003C 0x02F28138 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 183 010674 0x02F281D0 0x00000050 0x02F281C0 0x00000070 0x00000000 new N N ??(0) ?? 184 010679 0x02F282C0 0x00000050 0x02F282B0 0x00000070 0x00000000 new N N ??(0) ?? 185 010683 0x02F28360 0x00000050 0x02F28350 0x00000070 0x00000000 new N N ??(0) ?? 186 010687 0x02F28400 0x00000050 0x02F283F0 0x00000070 0x00000000 new N N ??(0) ?? 187 010691 0x02F284A0 0x0000003C 0x02F28490 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 188 010692 0x02F28528 0x00000050 0x02F28518 0x00000070 0x00000000 new N N ??(0) ?? 189 010697 0x02F28620 0x00000050 0x02F28610 0x00000070 0x00000000 new N N ??(0) ?? 190 010701 0x02F286C0 0x00000050 0x02F286B0 0x00000070 0x00000000 new N N ??(0) ?? 191 010705 0x02F28760 0x00000050 0x02F28750 0x00000070 0x00000000 new N N ??(0) ?? 192 029553 0x02F29EB8 0x00000034 0x02F29EA8 0x00000054 0x00000000 new N N ??(0) ?? 193 029619 0x02F3ABE8 0x00000018 0x02F3ABD8 0x00000038 0x00000000 new N N ??(0) ?? 194 009988 0x02F42F08 0x00000050 0x02F42EF8 0x00000070 0x00000000 new N N ??(0) ?? 195 010170 0x02F434B8 0x00000050 0x02F434A8 0x00000070 0x00000000 new N N ??(0) ?? 196 010147 0x02F435A8 0x00000050 0x02F43598 0x00000070 0x00000000 new N N ??(0) ?? 197 010146 0x02F43F90 0x0000003C 0x02F43F80 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 198 010152 0x02F47A08 0x00000050 0x02F479F8 0x00000070 0x00000000 new N N ??(0) ?? 199 010156 0x02F47AA8 0x00000050 0x02F47A98 0x00000070 0x00000000 new N N ??(0) ?? 200 010160 0x02F47B48 0x00000050 0x02F47B38 0x00000070 0x00000000 new N N ??(0) ?? 201 010164 0x02F47BE8 0x0000003C 0x02F47BD8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 202 010165 0x02F47C70 0x00000050 0x02F47C60 0x00000070 0x00000000 new N N ??(0) ?? 203 010174 0x02F47E88 0x00000050 0x02F47E78 0x00000070 0x00000000 new N N ??(0) ?? 204 010178 0x02F47F28 0x00000050 0x02F47F18 0x00000070 0x00000000 new N N ??(0) ?? 205 029620 0x02F4CA88 0x000000D4 0x02F4CA78 0x000000F4 0x00000000 new N N ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 206 010327 0x02F4CFA8 0x0000003C 0x02F4CF98 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 207 010328 0x02F4D030 0x00000050 0x02F4D020 0x00000070 0x00000000 new N N ??(0) ?? 208 010333 0x02F4D120 0x00000050 0x02F4D110 0x00000070 0x00000000 new N N ??(0) ?? 209 010337 0x02F4D1C0 0x00000050 0x02F4D1B0 0x00000070 0x00000000 new N N ??(0) ?? 210 010341 0x02F4D260 0x00000050 0x02F4D250 0x00000070 0x00000000 new N N ??(0) ?? 211 010345 0x02F4D300 0x0000003C 0x02F4D2F0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 212 010346 0x02F4D388 0x00000050 0x02F4D378 0x00000070 0x00000000 new N N ??(0) ?? 213 010351 0x02F4D480 0x00000050 0x02F4D470 0x00000070 0x00000000 new N N ??(0) ?? 214 010355 0x02F4D520 0x00000050 0x02F4D510 0x00000070 0x00000000 new N N ??(0) ?? 215 010359 0x02F4D5C0 0x00000050 0x02F4D5B0 0x00000070 0x00000000 new N N ??(0) ?? 216 010501 0x02F51610 0x00000050 0x02F51600 0x00000070 0x00000000 new N N ??(0) ?? 217 010500 0x02F51EE8 0x0000003C 0x02F51ED8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 218 010506 0x02F52820 0x00000050 0x02F52810 0x00000070 0x00000000 new N N ??(0) ?? 219 010510 0x02F528C0 0x00000050 0x02F528B0 0x00000070 0x00000000 new N N ??(0) ?? 220 010514 0x02F52960 0x00000050 0x02F52950 0x00000070 0x00000000 new N N ??(0) ?? 221 010518 0x02F52A00 0x0000003C 0x02F529F0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 222 010519 0x02F52B90 0x00000050 0x02F52B80 0x00000070 0x00000000 new N N ??(0) ?? 223 010524 0x02F52C30 0x00000050 0x02F52C20 0x00000070 0x00000000 new N N ??(0) ?? 224 010528 0x02F52CD0 0x00000050 0x02F52CC0 0x00000070 0x00000000 new N N ??(0) ?? 225 010532 0x02F52D70 0x00000050 0x02F52D60 0x00000070 0x00000000 new N N ??(0) ?? 226 029593 0x02F5DD00 0x00000018 0x02F5DCF0 0x00000038 0x00000000 new N N ??(0) ?? 227 011190 0x02F5E4D0 0x0000003C 0x02F5E4C0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 228 011191 0x02F5E558 0x00000050 0x02F5E548 0x00000070 0x00000000 new N N ??(0) ?? 229 011196 0x02F60140 0x00000050 0x02F60130 0x00000070 0x00000000 new N N ??(0) ?? 230 029621 0x02F75168 0x00000034 0x02F75158 0x00000054 0x00000000 new N N ??(0) ?? 231 029531 0x02F77BF0 0x00000234 0x02F77BE0 0x00000254 0x00000000 new N N ??(0) ?? 232 029594 0x02F7CBB8 0x000000E8 0x02F7CBA8 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 233 029552 0x02F7D270 0x00000034 0x02F7D260 0x00000054 0x00000000 new N N ??(0) ?? 234 012224 0x02F7D6A8 0x00000050 0x02F7D698 0x00000070 0x00000000 new N N ??(0) ?? 235 012214 0x02F7DD70 0x0000003C 0x02F7DD60 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 236 012215 0x02F7DDF8 0x00000050 0x02F7DDE8 0x00000070 0x00000000 new N N ??(0) ?? 237 012220 0x02F7DF78 0x00000050 0x02F7DF68 0x00000070 0x00000000 new N N ??(0) ?? 238 012228 0x02F7F000 0x00000050 0x02F7EFF0 0x00000070 0x00000000 new N N ??(0) ?? 239 012403 0x02F7FC90 0x00000050 0x02F7FC80 0x00000070 0x00000000 new N N ??(0) ?? 240 012407 0x02F7FD30 0x00000050 0x02F7FD20 0x00000070 0x00000000 new N N ??(0) ?? 241 012411 0x02F7FDD0 0x00000050 0x02F7FDC0 0x00000070 0x00000000 new N N ??(0) ?? 242 012415 0x02F7FE70 0x0000003C 0x02F7FE60 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 243 012416 0x02F7FEF8 0x00000050 0x02F7FEE8 0x00000070 0x00000000 new N N ??(0) ?? 244 012421 0x02F7FFF0 0x00000050 0x02F7FFE0 0x00000070 0x00000000 new N N ??(0) ?? 245 012393 0x02F81A40 0x0000003C 0x02F81A30 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 246 012394 0x02F89EF0 0x00000050 0x02F89EE0 0x00000070 0x00000000 new N N ??(0) ?? 247 012399 0x02F89F90 0x00000050 0x02F89F80 0x00000070 0x00000000 new N N ??(0) ?? 248 012637 0x02F8A4F8 0x0000003C 0x02F8A4E8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 249 012638 0x02F8B608 0x00000050 0x02F8B5F8 0x00000070 0x00000000 new N N ??(0) ?? 250 012643 0x02F8B738 0x00000050 0x02F8B728 0x00000070 0x00000000 new N N ??(0) ?? 251 012647 0x02F8B7D8 0x00000050 0x02F8B7C8 0x00000070 0x00000000 new N N ??(0) ?? 252 012651 0x02F8B878 0x00000050 0x02F8B868 0x00000070 0x00000000 new N N ??(0) ?? 253 012655 0x02F8B918 0x00000050 0x02F8B908 0x00000070 0x00000000 new N N ??(0) ?? 254 012659 0x02F8BA08 0x0000003C 0x02F8B9F8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 255 012660 0x02F8BA90 0x00000050 0x02F8BA80 0x00000070 0x00000000 new N N ??(0) ?? 256 012665 0x02F8BB88 0x00000050 0x02F8BB78 0x00000070 0x00000000 new N N ??(0) ?? 257 012669 0x02F8BC28 0x0000003C 0x02F8BC18 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 258 012670 0x02F8BCB0 0x00000050 0x02F8BCA0 0x00000070 0x00000000 new N N ??(0) ?? 259 012675 0x02F8BDA8 0x00000050 0x02F8BD98 0x00000070 0x00000000 new N N ??(0) ?? 260 012679 0x02F8BE48 0x00000050 0x02F8BE38 0x00000070 0x00000000 new N N ??(0) ?? 261 013461 0x02F9B828 0x00000050 0x02F9B818 0x00000070 0x00000000 new N N ??(0) ?? 262 013470 0x02F9B8C8 0x00000050 0x02F9B8B8 0x00000070 0x00000000 new N N ??(0) ?? 263 013474 0x02F9B968 0x00000050 0x02F9B958 0x00000070 0x00000000 new N N ??(0) ?? 264 013478 0x02F9BA08 0x0000003C 0x02F9B9F8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 265 013479 0x02F9BA90 0x00000050 0x02F9BA80 0x00000070 0x00000000 new N N ??(0) ?? 266 013484 0x02F9BB30 0x00000050 0x02F9BB20 0x00000070 0x00000000 new N N ??(0) ?? 267 013488 0x02F9BBD0 0x00000050 0x02F9BBC0 0x00000070 0x00000000 new N N ??(0) ?? 268 013492 0x02F9BC70 0x00000050 0x02F9BC60 0x00000070 0x00000000 new N N ??(0) ?? 269 013496 0x02F9BD10 0x0000003C 0x02F9BD00 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 270 013497 0x02F9BD98 0x00000050 0x02F9BD88 0x00000070 0x00000000 new N N ??(0) ?? 271 013502 0x02F9BE90 0x00000050 0x02F9BE80 0x00000070 0x00000000 new N N ??(0) ?? 272 013506 0x02F9BF30 0x00000050 0x02F9BF20 0x00000070 0x00000000 new N N ??(0) ?? 273 013510 0x02F9C020 0x00000050 0x02F9C010 0x00000070 0x00000000 new N N ??(0) ?? 274 013514 0x02F9C160 0x00000050 0x02F9C150 0x00000070 0x00000000 new N N ??(0) ?? 275 013518 0x02F9C250 0x00000050 0x02F9C240 0x00000070 0x00000000 new N N ??(0) ?? 276 013522 0x02F9C2F0 0x00000050 0x02F9C2E0 0x00000070 0x00000000 new N N ??(0) ?? 277 013460 0x02FA2D00 0x0000003C 0x02FA2CF0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 278 013466 0x02FABF90 0x00000050 0x02FABF80 0x00000070 0x00000000 new N N ??(0) ?? 279 029549 0x02FBBE88 0x00000104 0x02FBBE78 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight 280 029554 0x02FBE6B0 0x00000104 0x02FBE6A0 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight 281 029555 0x02FD23F0 0x00000034 0x02FD23E0 0x00000054 0x00000000 new N N ??(0) ?? 282 029645 0x02FD2AD8 0x00000018 0x02FD2AC8 0x00000038 0x00000000 new N N ??(0) ?? 283 014521 0x02FD2F38 0x0000003C 0x02FD2F28 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 284 014522 0x02FD2FC0 0x00000050 0x02FD2FB0 0x00000070 0x00000000 new N N ??(0) ?? 285 014527 0x02FD4768 0x00000050 0x02FD4758 0x00000070 0x00000000 new N N ??(0) ?? 286 014531 0x02FD48F8 0x00000050 0x02FD48E8 0x00000070 0x00000000 new N N ??(0) ?? 287 014535 0x02FD4A88 0x00000050 0x02FD4A78 0x00000070 0x00000000 new N N ??(0) ?? 288 014539 0x02FD4B88 0x00000050 0x02FD4B78 0x00000070 0x00000000 new N N ??(0) ?? 289 014543 0x02FD4C28 0x00000050 0x02FD4C18 0x00000070 0x00000000 new N N ??(0) ?? 290 029551 0x02FE1A70 0x00000018 0x02FE1A60 0x00000038 0x00000000 new N N ??(0) ?? 291 015095 0x02FE2970 0x0000003C 0x02FE2960 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 292 015096 0x02FE2A90 0x00000050 0x02FE2A80 0x00000070 0x00000000 new N N ??(0) ?? 293 015101 0x02FE2B30 0x00000050 0x02FE2B20 0x00000070 0x00000000 new N N ??(0) ?? 294 015105 0x02FE2BD0 0x00000050 0x02FE2BC0 0x00000070 0x00000000 new N N ??(0) ?? 295 015109 0x02FE2C70 0x00000050 0x02FE2C60 0x00000070 0x00000000 new N N ??(0) ?? 296 015113 0x02FE2D10 0x0000003C 0x02FE2D00 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 297 015114 0x02FE2D98 0x00000050 0x02FE2D88 0x00000070 0x00000000 new N N ??(0) ?? 298 015119 0x02FE2F20 0x00000050 0x02FE2F10 0x00000070 0x00000000 new N N ??(0) ?? 299 015123 0x02FE2FC0 0x00000050 0x02FE2FB0 0x00000070 0x00000000 new N N ??(0) ?? 300 015127 0x02FE3060 0x00000050 0x02FE3050 0x00000070 0x00000000 new N N ??(0) ?? 301 015735 0x02FE6348 0x0000003C 0x02FE6338 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 302 015761 0x02FF0628 0x0000003C 0x02FF0618 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 303 015736 0x02FF06B8 0x00000050 0x02FF06A8 0x00000070 0x00000000 new N N ??(0) ?? 304 026404 0x02FF0758 0x00000034 0x02FF0748 0x00000054 0x00000000 new N N ??(0) ?? 305 015741 0x02FF07E8 0x00000050 0x02FF07D8 0x00000070 0x00000000 new N N ??(0) ?? 306 015745 0x02FF0888 0x00000050 0x02FF0878 0x00000070 0x00000000 new N N ??(0) ?? 307 015749 0x02FF0928 0x00000050 0x02FF0918 0x00000070 0x00000000 new N N ??(0) ?? 308 015753 0x02FF09C8 0x00000050 0x02FF09B8 0x00000070 0x00000000 new N N ??(0) ?? 309 015757 0x02FF0A68 0x00000050 0x02FF0A58 0x00000070 0x00000000 new N N ??(0) ?? 310 015762 0x02FF0B08 0x00000050 0x02FF0AF8 0x00000070 0x00000000 new N N ??(0) ?? 311 015767 0x02FF0BA8 0x00000050 0x02FF0B98 0x00000070 0x00000000 new N N ??(0) ?? 312 015771 0x02FF0C48 0x00000050 0x02FF0C38 0x00000070 0x00000000 new N N ??(0) ?? 313 015775 0x02FF0CE8 0x00000050 0x02FF0CD8 0x00000070 0x00000000 new N N ??(0) ?? 314 015779 0x02FF0D88 0x00000050 0x02FF0D78 0x00000070 0x00000000 new N N ??(0) ?? 315 015783 0x02FF0E28 0x00000050 0x02FF0E18 0x00000070 0x00000000 new N N ??(0) ?? 316 015787 0x02FF0EC8 0x0000003C 0x02FF0EB8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 317 015788 0x02FF0F50 0x00000050 0x02FF0F40 0x00000070 0x00000000 new N N ??(0) ?? 318 015841 0x02FF1048 0x0000003C 0x02FF1038 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 319 015793 0x02FF10D8 0x00000050 0x02FF10C8 0x00000070 0x00000000 new N N ??(0) ?? 320 015797 0x02FF1178 0x00000050 0x02FF1168 0x00000070 0x00000000 new N N ??(0) ?? 321 015801 0x02FF1218 0x00000050 0x02FF1208 0x00000070 0x00000000 new N N ??(0) ?? 322 015805 0x02FF12B8 0x00000050 0x02FF12A8 0x00000070 0x00000000 new N N ??(0) ?? 323 015829 0x02FF1358 0x00000050 0x02FF1348 0x00000070 0x00000000 new N N ??(0) ?? 324 015833 0x02FF13F8 0x00000050 0x02FF13E8 0x00000070 0x00000000 new N N ??(0) ?? 325 015837 0x02FF1498 0x00000050 0x02FF1488 0x00000070 0x00000000 new N N ??(0) ?? 326 015842 0x02FF1538 0x00000050 0x02FF1528 0x00000070 0x00000000 new N N ??(0) ?? 327 015847 0x02FF1668 0x00000050 0x02FF1658 0x00000070 0x00000000 new N N ??(0) ?? 328 015851 0x02FF1708 0x00000050 0x02FF16F8 0x00000070 0x00000000 new N N ??(0) ?? 329 015855 0x02FF17A8 0x00000050 0x02FF1798 0x00000070 0x00000000 new N N ??(0) ?? 330 015859 0x02FF1848 0x00000050 0x02FF1838 0x00000070 0x00000000 new N N ??(0) ?? 331 015863 0x02FF18E8 0x00000050 0x02FF18D8 0x00000070 0x00000000 new N N ??(0) ?? 332 015867 0x02FF1988 0x00000050 0x02FF1978 0x00000070 0x00000000 new N N ??(0) ?? 333 015871 0x02FF1A28 0x00000050 0x02FF1A18 0x00000070 0x00000000 new N N ??(0) ?? 334 015875 0x02FF1AC8 0x00000050 0x02FF1AB8 0x00000070 0x00000000 new N N ??(0) ?? 335 015879 0x02FF1B68 0x00000050 0x02FF1B58 0x00000070 0x00000000 new N N ??(0) ?? 336 015883 0x02FF1C08 0x00000050 0x02FF1BF8 0x00000070 0x00000000 new N N ??(0) ?? 337 015887 0x02FF1CA8 0x00000050 0x02FF1C98 0x00000070 0x00000000 new N N ??(0) ?? 338 015891 0x02FF1DD8 0x00000050 0x02FF1DC8 0x00000070 0x00000000 new N N ??(0) ?? 339 029550 0x02FF3F78 0x00000018 0x02FF3F68 0x00000038 0x00000000 new N N ??(0) ?? 340 015809 0x02FFBCF8 0x00000050 0x02FFBCE8 0x00000070 0x00000000 new N N ??(0) ?? 341 015813 0x02FFBD98 0x00000050 0x02FFBD88 0x00000070 0x00000000 new N N ??(0) ?? 342 015817 0x02FFBE38 0x00000050 0x02FFBE28 0x00000070 0x00000000 new N N ??(0) ?? 343 015821 0x02FFBED8 0x00000050 0x02FFBEC8 0x00000070 0x00000000 new N N ??(0) ?? 344 015825 0x02FFBF78 0x00000050 0x02FFBF68 0x00000070 0x00000000 new N N ??(0) ?? 345 029595 0x02FFECE0 0x00000034 0x02FFECD0 0x00000054 0x00000000 new N N ??(0) ?? 346 027559 0x03002A40 0x00000034 0x03002A30 0x00000054 0x00000000 new N N ??(0) ?? 347 016686 0x03014FD0 0x0000003C 0x03014FC0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 348 016687 0x03015058 0x00000050 0x03015048 0x00000070 0x00000000 new N N ??(0) ?? 349 016692 0x03015198 0x00000050 0x03015188 0x00000070 0x00000000 new N N ??(0) ?? 350 016696 0x03015288 0x00000050 0x03015278 0x00000070 0x00000000 new N N ??(0) ?? 351 026428 0x030400F8 0x000000E8 0x030400E8 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 352 026430 0x03040230 0x00000034 0x03040220 0x00000054 0x00000000 new N N ??(0) ?? 353 026431 0x03040300 0x00000034 0x030402F0 0x00000054 0x00000000 new N N ??(0) ?? 354 026432 0x030403D0 0x00000034 0x030403C0 0x00000054 0x00000000 new N N ??(0) ?? 355 026433 0x030404A0 0x00000034 0x03040490 0x00000054 0x00000000 new N N ??(0) ?? 356 026434 0x03040570 0x00000034 0x03040560 0x00000054 0x00000000 new N N ??(0) ?? 357 026435 0x030405F0 0x00000034 0x030405E0 0x00000054 0x00000000 new N N ??(0) ?? 358 026436 0x030406C0 0x0000000C 0x030406B0 0x0000002C 0x00000000 new N N ??(0) ?? 359 026437 0x03040718 0x00000044 0x03040708 0x00000064 0x00000000 new N N ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 360 026438 0x030407A8 0x00000034 0x03040798 0x00000054 0x00000000 new N N ??(0) ?? 361 026439 0x03040828 0x00000034 0x03040818 0x00000054 0x00000000 new N N ??(0) ?? 362 026440 0x030408A8 0x0000000C 0x03040898 0x0000002C 0x00000000 new N N ??(0) ?? 363 026441 0x03040900 0x00000044 0x030408F0 0x00000064 0x00000000 new N N ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 364 026442 0x03040990 0x00000034 0x03040980 0x00000054 0x00000000 new N N ??(0) ?? 365 026443 0x03040A10 0x00000034 0x03040A00 0x00000054 0x00000000 new N N ??(0) ?? 366 026444 0x03040A90 0x0000000C 0x03040A80 0x0000002C 0x00000000 new N N ??(0) ?? 367 026445 0x03040AE8 0x000000D8 0x03040AD8 0x000000F8 0x00000000 new N N ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 368 026446 0x03040C10 0x00000034 0x03040C00 0x00000054 0x00000000 new N N ??(0) ?? 369 026447 0x03040C90 0x00000034 0x03040C80 0x00000054 0x00000000 new N N ??(0) ?? 370 026448 0x03040D10 0x00000034 0x03040D00 0x00000054 0x00000000 new N N ??(0) ?? 371 026449 0x03040D90 0x00000034 0x03040D80 0x00000054 0x00000000 new N N ??(0) ?? 372 026450 0x03040E10 0x00000034 0x03040E00 0x00000054 0x00000000 new N N ??(0) ?? 373 026451 0x03040E90 0x00000034 0x03040E80 0x00000054 0x00000000 new N N ??(0) ?? 374 026452 0x03040F10 0x00000034 0x03040F00 0x00000054 0x00000000 new N N ??(0) ?? 375 026453 0x03040F90 0x00000034 0x03040F80 0x00000054 0x00000000 new N N ??(0) ?? 376 026454 0x03041010 0x00000034 0x03041000 0x00000054 0x00000000 new N N ??(0) ?? 377 026455 0x03041090 0x00000034 0x03041080 0x00000054 0x00000000 new N N ??(0) ?? 378 026316 0x03081440 0x0000000C 0x03081430 0x0000002C 0x00000000 new N N ??(0) ?? 379 026330 0x030814F0 0x00000018 0x030814E0 0x00000038 0x00000000 new N N ??(0) ?? 380 026331 0x03081558 0x00000018 0x03081548 0x00000038 0x00000000 new N N ??(0) ?? 381 026326 0x03081660 0x00000018 0x03081650 0x00000038 0x00000000 new N N ??(0) ?? 382 026327 0x030816C8 0x00000018 0x030816B8 0x00000038 0x00000000 new N N ??(0) ?? 383 026317 0x03081F78 0x00000018 0x03081F68 0x00000038 0x00000000 new N N ??(0) ?? 384 026368 0x03082800 0x000000E4 0x030827F0 0x00000104 0x00000000 new N N ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 385 026370 0x03082930 0x00000034 0x03082920 0x00000054 0x00000000 new N N ??(0) ?? 386 026371 0x030829B0 0x00000034 0x030829A0 0x00000054 0x00000000 new N N ??(0) ?? 387 026372 0x03082A30 0x00000034 0x03082A20 0x00000054 0x00000000 new N N ??(0) ?? 388 026373 0x03082AB0 0x00000034 0x03082AA0 0x00000054 0x00000000 new N N ??(0) ?? 389 026374 0x03082B30 0x00000034 0x03082B20 0x00000054 0x00000000 new N N ??(0) ?? 390 026375 0x03082BB0 0x00000034 0x03082BA0 0x00000054 0x00000000 new N N ??(0) ?? 391 026376 0x03082C30 0x00000034 0x03082C20 0x00000054 0x00000000 new N N ??(0) ?? 392 026377 0x03082CB0 0x00000034 0x03082CA0 0x00000054 0x00000000 new N N ??(0) ?? 393 026378 0x03082D30 0x00000034 0x03082D20 0x00000054 0x00000000 new N N ??(0) ?? 394 026379 0x03082DB0 0x00000034 0x03082DA0 0x00000054 0x00000000 new N N ??(0) ?? 395 026380 0x03082E30 0x00000034 0x03082E20 0x00000054 0x00000000 new N N ??(0) ?? 396 026381 0x03082EB0 0x00000034 0x03082EA0 0x00000054 0x00000000 new N N ??(0) ?? 397 026382 0x03082F30 0x00000034 0x03082F20 0x00000054 0x00000000 new N N ??(0) ?? 398 026383 0x03082FB0 0x00000034 0x03082FA0 0x00000054 0x00000000 new N N ??(0) ?? 399 027068 0x0308AC68 0x00000020 0x0308AC58 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 400 026405 0x0308AD00 0x00000034 0x0308ACF0 0x00000054 0x00000000 new N N ??(0) ?? 401 026406 0x0308AD80 0x0000000C 0x0308AD70 0x0000002C 0x00000000 new N N ??(0) ?? 402 026407 0x0308ADD8 0x0000009C 0x0308ADC8 0x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 403 026408 0x0308AEC0 0x00000034 0x0308AEB0 0x00000054 0x00000000 new N N ??(0) ?? 404 026409 0x0308AF40 0x00000034 0x0308AF30 0x00000054 0x00000000 new N N ??(0) ?? 405 026456 0x0308B010 0x00000034 0x0308B000 0x00000054 0x00000000 new N N ??(0) ?? 406 026457 0x0308B090 0x0000000C 0x0308B080 0x0000002C 0x00000000 new N N ??(0) ?? 407 026458 0x0308B0E8 0x0000009C 0x0308B0D8 0x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 408 026459 0x0308B1D0 0x00000034 0x0308B1C0 0x00000054 0x00000000 new N N ??(0) ?? 409 026460 0x0308B250 0x00000034 0x0308B240 0x00000054 0x00000000 new N N ??(0) ?? 410 026461 0x0308B2D0 0x00000034 0x0308B2C0 0x00000054 0x00000000 new N N ??(0) ?? 411 026462 0x0308B350 0x00000034 0x0308B340 0x00000054 0x00000000 new N N ??(0) ?? 412 026463 0x0308B3D0 0x00000034 0x0308B3C0 0x00000054 0x00000000 new N N ??(0) ?? 413 026464 0x0308B450 0x00000034 0x0308B440 0x00000054 0x00000000 new N N ??(0) ?? 414 026465 0x0308B520 0x00000034 0x0308B510 0x00000054 0x00000000 new N N ??(0) ?? 415 026466 0x0308B5F0 0x00000034 0x0308B5E0 0x00000054 0x00000000 new N N ??(0) ?? 416 026467 0x0308B670 0x00000034 0x0308B660 0x00000054 0x00000000 new N N ??(0) ?? 417 026468 0x0308B6F0 0x00000034 0x0308B6E0 0x00000054 0x00000000 new N N ??(0) ?? 418 026469 0x0308B770 0x00000034 0x0308B760 0x00000054 0x00000000 new N N ??(0) ?? 419 026470 0x0308B840 0x0000000C 0x0308B830 0x0000002C 0x00000000 new N N ??(0) ?? 420 026471 0x0308B898 0x00000034 0x0308B888 0x00000054 0x00000000 new N N reflectiontest.h(302) RaytraceDemoApplication::createScene 421 026591 0x0308D148 0x00000030 0x0308D138 0x00000050 0x00000000 new N N framecapture.h(87) FrameCapture::addAnimableNode 422 026593 0x0308D1C8 0x00000030 0x0308D1B8 0x00000050 0x00000000 new N N framecapture.h(87) FrameCapture::addAnimableNode 423 026594 0x0308D248 0x00000008 0x0308D238 0x00000028 0x00000000 new N N ??(0) ?? 424 026318 0x03093A20 0x0000000C 0x03093A10 0x0000002C 0x00000000 new N N ??(0) ?? 425 027074 0x0310D6E8 0x00000004 0x0310D6D8 0x00000024 0x00000000 new N N ??(0) ?? 426 027066 0x03111098 0x000000C4 0x03111088 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 427 027069 0x03118E78 0x00000104 0x03118E68 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 428 027070 0x03118FC8 0x00000018 0x03118FB8 0x00000038 0x00000000 new N N ??(0) ?? 429 027071 0x03119030 0x00000018 0x03119020 0x00000038 0x00000000 new N N ??(0) ?? 430 027072 0x03119098 0x00000034 0x03119088 0x00000054 0x00000000 new N N ??(0) ?? 431 027073 0x03119118 0x0000000C 0x03119108 0x0000002C 0x00000000 new N N ??(0) ?? 432 027075 0x03119170 0x00000018 0x03119160 0x00000038 0x00000000 new N N ??(0) ?? 433 027097 0x031191D8 0x00000108 0x031191C8 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 434 027098 0x03119330 0x00000134 0x03119320 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 435 027099 0x03119500 0x00000034 0x031194F0 0x00000054 0x00000000 new N N ??(0) ?? 436 027680 0x03120818 0x00000010 0x03120808 0x00000030 0x00000000 new N N ??(0) ?? 437 027219 0x03120AA0 0x00000018 0x03120A90 0x00000038 0x00000000 new N N ??(0) ?? 438 027242 0x03120B78 0x00000108 0x03120B68 0x00000128 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(110) OgreDistanceCubeMapRenderTechniqueFacto 439 027243 0x03120E10 0x00000134 0x03120E00 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 440 027244 0x03121088 0x00000034 0x03121078 0x00000054 0x00000000 new N N ??(0) ?? 441 027798 0x031283E8 0x00000004 0x031283D8 0x00000024 0x00000000 new N N ??(0) ?? 442 027362 0x03128670 0x00000018 0x03128660 0x00000038 0x00000000 new N N ??(0) ?? 443 027399 0x03136C28 0x00000108 0x03136C18 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 444 027400 0x03136D80 0x00000134 0x03136D70 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 445 027401 0x03136F00 0x00000034 0x03136EF0 0x00000054 0x00000000 new N N ??(0) ?? 446 027688 0x03137088 0x0000000C 0x03137078 0x0000002C 0x00000000 new N N ??(0) ?? 447 027519 0x03137C00 0x00000018 0x03137BF0 0x00000038 0x00000000 new N N ??(0) ?? 448 027683 0x03137CD8 0x00000020 0x03137CC8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 449 027557 0x03137D78 0x00000108 0x03137D68 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 450 027558 0x03137ED0 0x00000134 0x03137EC0 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 451 027772 0x0313AA00 0x0000000C 0x0313A9F0 0x0000002C 0x00000000 new N N ??(0) ?? 452 028005 0x0313D6F8 0x00000004 0x0313D6E8 0x00000024 0x00000000 new N N ??(0) ?? 453 027677 0x0313E4F8 0x00000018 0x0313E4E8 0x00000038 0x00000000 new N N ??(0) ?? 454 027681 0x0313E698 0x000000C4 0x0313E688 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 455 027684 0x0313E7A8 0x00000104 0x0313E798 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 456 027685 0x0313E8F8 0x00000018 0x0313E8E8 0x00000038 0x00000000 new N N ??(0) ?? 457 027686 0x0313E960 0x00000018 0x0313E950 0x00000038 0x00000000 new N N ??(0) ?? 458 027687 0x0313E9C8 0x00000034 0x0313E9B8 0x00000054 0x00000000 new N N ??(0) ?? 459 027690 0x0313EA48 0x00000018 0x0313EA38 0x00000038 0x00000000 new N N ??(0) ?? 460 027702 0x0313EED0 0x000000E4 0x0313EEC0 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 461 027799 0x0314B650 0x000000C4 0x0314B640 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 462 027801 0x0314B760 0x00000020 0x0314B750 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 463 027803 0x0314B7D0 0x00000018 0x0314B7C0 0x00000038 0x00000000 new N N ??(0) ?? 464 027815 0x0314B838 0x000000E4 0x0314B828 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 465 027902 0x0314B968 0x00000004 0x0314B958 0x00000024 0x00000000 new N N ??(0) ?? 466 027905 0x0314B9B8 0x00000020 0x0314B9A8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 467 027876 0x0314BCE0 0x0000000C 0x0314BCD0 0x0000002C 0x00000000 new N N ??(0) ?? 468 027979 0x0314D810 0x0000000C 0x0314D800 0x0000002C 0x00000000 new N N ??(0) ?? 469 027903 0x0314E3C0 0x000000C4 0x0314E3B0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 470 027907 0x0314E528 0x00000018 0x0314E518 0x00000038 0x00000000 new N N ??(0) ?? 471 027919 0x0314E590 0x000000E4 0x0314E580 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 472 028214 0x0314E6C0 0x00000004 0x0314E6B0 0x00000024 0x00000000 new N N ??(0) ?? 473 028006 0x03151100 0x000000C4 0x031510F0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 474 028008 0x03151210 0x00000020 0x03151200 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 475 028010 0x03151280 0x00000018 0x03151270 0x00000038 0x00000000 new N N ??(0) ?? 476 028022 0x031512E8 0x000000E4 0x031512D8 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 477 028110 0x03151418 0x00000004 0x03151408 0x00000024 0x00000000 new N N ??(0) ?? 478 028113 0x03151468 0x00000020 0x03151458 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 479 028084 0x03152520 0x0000000C 0x03152510 0x0000002C 0x00000000 new N N ??(0) ?? 480 028111 0x03153E50 0x000000C4 0x03153E40 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 481 028323 0x03153F60 0x00000018 0x03153F50 0x00000038 0x00000000 new N N ??(0) ?? 482 028115 0x03153FC8 0x00000018 0x03153FB8 0x00000038 0x00000000 new N N ??(0) ?? 483 028127 0x0315BC68 0x000000E4 0x0315BC58 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 484 028318 0x0315BD98 0x00000004 0x0315BD88 0x00000024 0x00000000 new N N ??(0) ?? 485 028188 0x0315C0B0 0x0000000C 0x0315C0A0 0x0000002C 0x00000000 new N N ??(0) ?? 486 028215 0x0315E7E0 0x000000C4 0x0315E7D0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 487 028217 0x0315E8F0 0x00000020 0x0315E8E0 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 488 028218 0x0315E960 0x00000018 0x0315E950 0x00000038 0x00000000 new N N ??(0) ?? 489 028230 0x0315E9C8 0x000000E4 0x0315E9B8 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 490 028423 0x0315EAF8 0x00000004 0x0315EAE8 0x00000024 0x00000000 new N N ??(0) ?? 491 028292 0x0315FBF0 0x0000000C 0x0315FBE0 0x0000002C 0x00000000 new N N ??(0) ?? 492 028319 0x03161520 0x000000C4 0x03161510 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 493 028321 0x03161630 0x00000020 0x03161620 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 494 028633 0x031616A0 0x00000018 0x03161690 0x00000038 0x00000000 new N N ??(0) ?? 495 028335 0x03161710 0x000000E4 0x03161700 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 496 028526 0x03161840 0x00000004 0x03161830 0x00000024 0x00000000 new N N ??(0) ?? 497 028397 0x03162938 0x0000000C 0x03162928 0x0000002C 0x00000000 new N N ??(0) ?? 498 028424 0x03164280 0x000000C4 0x03164270 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 499 028426 0x03164390 0x00000020 0x03164380 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 500 028427 0x03164400 0x00000018 0x031643F0 0x00000038 0x00000000 new N N ??(0) ?? 501 028439 0x03164468 0x000000E4 0x03164458 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 502 028628 0x03164598 0x00000004 0x03164588 0x00000024 0x00000000 new N N ??(0) ?? 503 028500 0x031648B0 0x0000000C 0x031648A0 0x0000002C 0x00000000 new N N ??(0) ?? 504 028602 0x03166448 0x0000000C 0x03166438 0x0000002C 0x00000000 new N N ??(0) ?? 505 028527 0x0316EC58 0x000000C4 0x0316EC48 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 506 028529 0x0316ED68 0x00000020 0x0316ED58 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 507 028530 0x0316EDD8 0x00000018 0x0316EDC8 0x00000038 0x00000000 new N N ??(0) ?? 508 028542 0x0316EE40 0x000000E4 0x0316EE30 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 509 028733 0x0316EF70 0x00000004 0x0316EF60 0x00000024 0x00000000 new N N ??(0) ?? 510 028629 0x031719B0 0x000000C4 0x031719A0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 511 028631 0x03171AC0 0x00000020 0x03171AB0 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 512 028632 0x03171B30 0x00000034 0x03171B20 0x00000054 0x00000000 new N N ??(0) ?? 513 028645 0x03171BB0 0x000000E4 0x03171BA0 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 514 028836 0x03171CE0 0x00000004 0x03171CD0 0x00000024 0x00000000 new N N ??(0) ?? 515 028707 0x03172DD8 0x0000000C 0x03172DC8 0x0000002C 0x00000000 new N N ??(0) ?? 516 028734 0x03174708 0x000000C4 0x031746F8 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 517 028736 0x03174818 0x00000020 0x03174808 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 518 028737 0x03174888 0x00000018 0x03174878 0x00000038 0x00000000 new N N ??(0) ?? 519 028749 0x031748F0 0x000000E4 0x031748E0 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 520 028938 0x03174A20 0x00000004 0x03174A10 0x00000024 0x00000000 new N N ??(0) ?? 521 028810 0x03174D38 0x0000000C 0x03174D28 0x0000002C 0x00000000 new N N ??(0) ?? 522 028912 0x031768B8 0x0000000C 0x031768A8 0x0000002C 0x00000000 new N N ??(0) ?? 523 028837 0x03177488 0x000000C4 0x03177478 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 524 028839 0x03177598 0x00000020 0x03177588 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 525 028840 0x03177608 0x00000018 0x031775F8 0x00000038 0x00000000 new N N ??(0) ?? 526 028852 0x03177670 0x000000E4 0x03177660 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 527 029895 0x03189358 0x00000220 0x03189348 0x00000240 0x00000000 new N N ogrerenderingrun.cpp(204) OgreRenderingRun::renderFullscreenQuad -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log
r1885 r1897 1 1 -------------------------------------------------------------------------------- 2 2 3 OgreMemory.log - Memory logging file created on Wed Dec 13 15:08:2520063 OgreMemory.log - Memory logging file created on Fri Dec 15 09:55:02 2006 4 4 5 5 -------------------------------------------------------------------------------- -
GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log
r1885 r1897 1 1 6:19:17: Creating resource group General2 1 6:19:17: Creating resource group Internal3 1 6:19:17: Creating resource group Autodetect4 1 6:19:17: Registering ResourceManager for type Material5 1 6:19:17: Registering ResourceManager for type Mesh6 1 6:19:17: Registering ResourceManager for type Skeleton7 1 6:19:17: MovableObjectFactory for type 'ParticleSystem' registered.8 1 6:19:17: Loading library OgrePlatform.dll9 1 6:19:17: OverlayElementFactory for type Panel registered.10 1 6:19:17: OverlayElementFactory for type BorderPanel registered.11 1 6:19:17: OverlayElementFactory for type TextArea registered.12 1 6:19:17: Registering ResourceManager for type Font13 1 6:19:17: ArchiveFactory for archive type FileSystem registered.14 1 6:19:17: ArchiveFactory for archive type Zip registered.15 1 6:19:17: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 200516 1 6:19:17: 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 raw17 1 6:19:17: Registering ResourceManager for type HighLevelGpuProgram18 1 6:19:17: Registering ResourceManager for type Compositor19 1 6:19:17: MovableObjectFactory for type 'Entity' registered.20 1 6:19:17: MovableObjectFactory for type 'Light' registered.21 1 6:19:17: MovableObjectFactory for type 'BillboardSet' registered.22 1 6:19:17: MovableObjectFactory for type 'ManualObject' registered.23 1 6:19:17: MovableObjectFactory for type 'BillboardChain' registered.24 1 6:19:17: MovableObjectFactory for type 'RibbonTrail' registered.25 1 6:19:17: Loading library .\RenderSystem_Direct3D926 1 6:19:17: D3D9 : Direct3D9 Rendering Subsystem created.27 1 6:19:17: D3D9: Driver Detection Starts28 1 6:19:17: D3D9: Driver Detection Ends29 1 6:19:17: Loading library .\Plugin_ParticleFX30 1 6:19:17: Particle Emitter Type 'Point' registered31 1 6:19:17: Particle Emitter Type 'Box' registered32 1 6:19:17: Particle Emitter Type 'Ellipsoid' registered33 1 6:19:17: Particle Emitter Type 'Cylinder' registered34 1 6:19:17: Particle Emitter Type 'Ring' registered35 1 6:19:17: Particle Emitter Type 'HollowEllipsoid' registered36 1 6:19:17: Particle Affector Type 'LinearForce' registered37 1 6:19:17: Particle Affector Type 'ColourFader' registered38 1 6:19:17: Particle Affector Type 'ColourFader2' registered39 1 6:19:17: Particle Affector Type 'ColourImage' registered40 1 6:19:17: Particle Affector Type 'ColourInterpolator' registered41 1 6:19:17: Particle Affector Type 'Scaler' registered42 1 6:19:17: Particle Affector Type 'Rotator' registered43 1 6:19:17: Particle Affector Type 'DirectionRandomiser' registered44 1 6:19:17: Particle Affector Type 'DeflectorPlane' registered45 1 6:19:17: Loading library .\Plugin_BSPSceneManager46 1 6:19:17: Registering ResourceManager for type BspLevel47 1 6:19:17: Loading library .\Plugin_OctreeSceneManager48 1 6:19:17: Loading library .\Plugin_CgProgramManager49 1 6:19:17: *-*-* OGRE Initialising50 1 6:19:17: *-*-* Version 1.2.0 (Dagon)51 1 6:19:17: Creating resource group Bootstrap52 1 6:19:17: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'53 1 6:19:17: Added resource location '../../Media' of type 'FileSystem' to resource group 'General'54 1 6:19:17: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General'55 1 6:19:17: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General'56 1 6:19:17: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General'57 1 6:19:17: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General'58 1 6:19:17: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General'59 1 6:19:17: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General'60 1 6:19:17: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General'61 1 6:19:17: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General'62 1 6:19:17: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'63 1 6:19:17: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General'64 1 6:19:17: D3D9 : RenderSystem Option: Allow NVPerfHUD = No65 1 6:19:17: D3D9 : RenderSystem Option: Anti aliasing = Level 466 1 6:19:17: D3D9 : RenderSystem Option: Floating-point mode = Fastest67 1 6:19:17: D3D9 : RenderSystem Option: Full Screen = No68 1 6:19:17: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX269 1 6:19:17: D3D9 : RenderSystem Option: VSync = No70 1 6:19:17: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour71 1 6:19:18: D3D9 : Subsystem Initialising72 1 6:19:18: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false73 1 6:19:18: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp74 1 6:19:18: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.75 1 6:19:18: Registering ResourceManager for type Texture76 1 6:19:18: Registering ResourceManager for type GpuProgram77 1 6:19:18: RenderSystem capabilities78 1 6:19:18: -------------------------79 1 6:19:18: * Hardware generation of mipmaps: yes80 1 6:19:18: * Texture blending: yes81 1 6:19:18: * Anisotropic texture filtering: yes82 1 6:19:18: * Dot product texture operation: yes83 1 6:19:18: * Cube mapping: yes84 1 6:19:18: * Hardware stencil buffer: yes85 1 6:19:18: - Stencil depth: 886 1 6:19:18: - Two sided stencil support: yes87 1 6:19:18: - Wrap stencil values: yes88 1 6:19:18: * Hardware vertex / index buffers: yes89 1 6:19:18: * Vertex programs: yes90 1 6:19:18: - Max vertex program version: vs_3_091 1 6:19:18: * Fragment programs: yes92 1 6:19:18: - Max fragment program version: ps_3_093 1 6:19:18: * Texture Compression: yes94 1 6:19:18: - DXT: yes95 1 6:19:18: - VTC: no96 1 6:19:18: * Scissor Rectangle: yes97 1 6:19:18: * Hardware Occlusion Query: yes98 1 6:19:18: * User clip planes: yes99 1 6:19:18: * VET_UBYTE4 vertex element type: yes100 1 6:19:18: * Infinite far plane projection: yes101 1 6:19:18: * Hardware render-to-texture: yes102 1 6:19:18: * Floating point textures: yes103 1 6:19:18: * Non-power-of-two textures: yes104 1 6:19:18: * Volume textures: yes105 1 6:19:18: * Multiple Render Targets: 4106 1 6:19:18: * Max Point Size: 8192107 1 6:19:18: ***************************************108 1 6:19:18: *** D3D9 : Subsystem Initialised OK ***109 1 6:19:18: ***************************************110 1 6:19:18: ResourceBackgroundQueue - threading disabled111 1 6:19:18: Particle Renderer Type 'billboard' registered112 1 6:19:18: Particle Renderer Type 'sprite' registered113 1 6:19:18: 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: 0114 1 6:19:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600115 1 6:19:18: Parsing scripts for resource group Autodetect116 1 6:19:18: Finished parsing scripts for resource group Autodetect117 1 6:19:18: Parsing scripts for resource group Bootstrap118 1 6:19:18: Parsing script OgreCore.material119 1 6:19:18: Parsing script OgreProfiler.material120 1 6:19:18: Parsing script Ogre.fontdef121 1 6:19:18: Parsing script OgreDebugPanel.overlay122 1 6:19:18: 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 1 6:19:18: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.124 1 6:19:18: 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 1 6:19:18: Font TrebuchetMSBoldusing texture size 512x512126 1 6:19:18: Info: Freetype returned null for character 160 in font TrebuchetMSBold127 1 6:19:18: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.128 1 6:19:18: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.129 1 6:19:18: Parsing script OgreLoadingPanel.overlay130 1 6:19:18: Finished parsing scripts for resource group Bootstrap131 1 6:19:18: Parsing scripts for resource group General132 1 6:19:18: Parsing script GameTools.program133 1 6:19:18: Parsing script atlascube.material134 1 6:19:18: Parsing script colorcube.material135 1 6:19:18: Parsing script difflab.material136 1 6:19:19: An exception has been thrown!1 10:31:31: Creating resource group General 2 10:31:31: Creating resource group Internal 3 10:31:31: Creating resource group Autodetect 4 10:31:31: Registering ResourceManager for type Material 5 10:31:31: Registering ResourceManager for type Mesh 6 10:31:31: Registering ResourceManager for type Skeleton 7 10:31:31: MovableObjectFactory for type 'ParticleSystem' registered. 8 10:31:31: Loading library OgrePlatform.dll 9 10:31:31: OverlayElementFactory for type Panel registered. 10 10:31:31: OverlayElementFactory for type BorderPanel registered. 11 10:31:31: OverlayElementFactory for type TextArea registered. 12 10:31:31: Registering ResourceManager for type Font 13 10:31:31: ArchiveFactory for archive type FileSystem registered. 14 10:31:31: ArchiveFactory for archive type Zip registered. 15 10:31:31: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 10:31:31: 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 10:31:31: Registering ResourceManager for type HighLevelGpuProgram 18 10:31:31: Registering ResourceManager for type Compositor 19 10:31:31: MovableObjectFactory for type 'Entity' registered. 20 10:31:31: MovableObjectFactory for type 'Light' registered. 21 10:31:31: MovableObjectFactory for type 'BillboardSet' registered. 22 10:31:31: MovableObjectFactory for type 'ManualObject' registered. 23 10:31:31: MovableObjectFactory for type 'BillboardChain' registered. 24 10:31:31: MovableObjectFactory for type 'RibbonTrail' registered. 25 10:31:31: Loading library .\RenderSystem_Direct3D9 26 10:31:31: D3D9 : Direct3D9 Rendering Subsystem created. 27 10:31:31: D3D9: Driver Detection Starts 28 10:31:31: D3D9: Driver Detection Ends 29 10:31:31: Loading library .\Plugin_ParticleFX 30 10:31:31: Particle Emitter Type 'Point' registered 31 10:31:31: Particle Emitter Type 'Box' registered 32 10:31:31: Particle Emitter Type 'Ellipsoid' registered 33 10:31:31: Particle Emitter Type 'Cylinder' registered 34 10:31:31: Particle Emitter Type 'Ring' registered 35 10:31:31: Particle Emitter Type 'HollowEllipsoid' registered 36 10:31:31: Particle Affector Type 'LinearForce' registered 37 10:31:31: Particle Affector Type 'ColourFader' registered 38 10:31:31: Particle Affector Type 'ColourFader2' registered 39 10:31:31: Particle Affector Type 'ColourImage' registered 40 10:31:31: Particle Affector Type 'ColourInterpolator' registered 41 10:31:31: Particle Affector Type 'Scaler' registered 42 10:31:31: Particle Affector Type 'Rotator' registered 43 10:31:31: Particle Affector Type 'DirectionRandomiser' registered 44 10:31:31: Particle Affector Type 'DeflectorPlane' registered 45 10:31:31: Loading library .\Plugin_BSPSceneManager 46 10:31:31: Registering ResourceManager for type BspLevel 47 10:31:31: Loading library .\Plugin_OctreeSceneManager 48 10:31:31: Loading library .\Plugin_CgProgramManager 49 10:31:31: *-*-* OGRE Initialising 50 10:31:31: *-*-* Version 1.2.0 (Dagon) 51 10:31:31: Creating resource group Bootstrap 52 10:31:31: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 10:31:31: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 10:31:31: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 10:31:31: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 10:31:31: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 10:31:31: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 10:31:31: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 10:31:31: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 10:31:31: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 10:31:31: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 10:31:31: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 10:31:31: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 10:31:31: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 10:31:31: D3D9 : RenderSystem Option: Anti aliasing = Level 4 66 10:31:31: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 10:31:31: D3D9 : RenderSystem Option: Full Screen = No 68 10:31:31: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 69 10:31:31: D3D9 : RenderSystem Option: VSync = No 70 10:31:31: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 10:31:32: D3D9 : Subsystem Initialising 72 10:31:32: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 10:31:32: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 10:31:32: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 10:31:32: Registering ResourceManager for type Texture 76 10:31:32: Registering ResourceManager for type GpuProgram 77 10:31:32: RenderSystem capabilities 78 10:31:32: ------------------------- 79 10:31:32: * Hardware generation of mipmaps: yes 80 10:31:32: * Texture blending: yes 81 10:31:32: * Anisotropic texture filtering: yes 82 10:31:32: * Dot product texture operation: yes 83 10:31:32: * Cube mapping: yes 84 10:31:32: * Hardware stencil buffer: yes 85 10:31:32: - Stencil depth: 8 86 10:31:32: - Two sided stencil support: yes 87 10:31:32: - Wrap stencil values: yes 88 10:31:32: * Hardware vertex / index buffers: yes 89 10:31:32: * Vertex programs: yes 90 10:31:32: - Max vertex program version: vs_3_0 91 10:31:32: * Fragment programs: yes 92 10:31:32: - Max fragment program version: ps_3_0 93 10:31:32: * Texture Compression: yes 94 10:31:32: - DXT: yes 95 10:31:32: - VTC: no 96 10:31:32: * Scissor Rectangle: yes 97 10:31:32: * Hardware Occlusion Query: yes 98 10:31:32: * User clip planes: yes 99 10:31:32: * VET_UBYTE4 vertex element type: yes 100 10:31:32: * Infinite far plane projection: yes 101 10:31:32: * Hardware render-to-texture: yes 102 10:31:32: * Floating point textures: yes 103 10:31:32: * Non-power-of-two textures: yes 104 10:31:32: * Volume textures: yes 105 10:31:32: * Multiple Render Targets: 4 106 10:31:32: * Max Point Size: 8192 107 10:31:32: *************************************** 108 10:31:32: *** D3D9 : Subsystem Initialised OK *** 109 10:31:32: *************************************** 110 10:31:32: ResourceBackgroundQueue - threading disabled 111 10:31:32: Particle Renderer Type 'billboard' registered 112 10:31:32: Particle Renderer Type 'sprite' registered 113 10:31:32: 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 10:31:32: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 10:31:32: Parsing scripts for resource group Autodetect 116 10:31:32: Finished parsing scripts for resource group Autodetect 117 10:31:32: Parsing scripts for resource group Bootstrap 118 10:31:32: Parsing script OgreCore.material 119 10:31:32: Parsing script OgreProfiler.material 120 10:31:32: Parsing script Ogre.fontdef 121 10:31:32: Parsing script OgreDebugPanel.overlay 122 10:31:32: 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 10:31:32: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 124 10:31:32: 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 10:31:32: Font TrebuchetMSBoldusing texture size 512x512 126 10:31:32: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 10:31:32: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 128 10:31:32: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 10:31:32: Parsing script OgreLoadingPanel.overlay 130 10:31:32: Finished parsing scripts for resource group Bootstrap 131 10:31:32: Parsing scripts for resource group General 132 10:31:32: Parsing script GameTools.program 133 10:31:32: Parsing script atlascube.material 134 10:31:32: Parsing script colorcube.material 135 10:31:32: Parsing script difflab.material 136 10:31:32: An exception has been thrown! 137 137 138 138 ----------------------------------- … … 145 145 Line: 779 146 146 Stack unwinding: <<beginning of stack>> 147 1 6:19:19: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!147 10:31:32: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 148 148 149 149 ----------------------------------- … … 156 156 Line: 779 157 157 Stack unwinding: <<beginning of stack>> 158 1 6:19:19: An exception has been thrown!158 10:31:32: An exception has been thrown! 159 159 160 160 ----------------------------------- … … 167 167 Line: 779 168 168 Stack unwinding: <<beginning of stack>> 169 1 6:19:19: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!169 10:31:32: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 170 170 171 171 ----------------------------------- … … 178 178 Line: 779 179 179 Stack unwinding: <<beginning of stack>> 180 1 6:19:19: An exception has been thrown!180 10:31:32: An exception has been thrown! 181 181 182 182 ----------------------------------- … … 189 189 Line: 779 190 190 Stack unwinding: <<beginning of stack>> 191 1 6:19:19: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!191 10:31:32: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 192 192 193 193 ----------------------------------- … … 200 200 Line: 779 201 201 Stack unwinding: <<beginning of stack>> 202 1 6:19:19: An exception has been thrown!202 10:31:32: An exception has been thrown! 203 203 204 204 ----------------------------------- … … 211 211 Line: 779 212 212 Stack unwinding: <<beginning of stack>> 213 1 6:19:19: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!213 10:31:32: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 214 214 215 215 ----------------------------------- … … 222 222 Line: 779 223 223 Stack unwinding: <<beginning of stack>> 224 1 6:19:19: An exception has been thrown!224 10:31:32: An exception has been thrown! 225 225 226 226 ----------------------------------- … … 233 233 Line: 779 234 234 Stack unwinding: <<beginning of stack>> 235 1 6:19:19: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!235 10:31:32: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 236 236 237 237 ----------------------------------- … … 244 244 Line: 779 245 245 Stack unwinding: <<beginning of stack>> 246 1 6:19:19: An exception has been thrown!246 10:31:32: An exception has been thrown! 247 247 248 248 ----------------------------------- … … 255 255 Line: 779 256 256 Stack unwinding: <<beginning of stack>> 257 1 6:19:19: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!257 10:31:32: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 258 258 259 259 ----------------------------------- … … 266 266 Line: 779 267 267 Stack unwinding: <<beginning of stack>> 268 1 6:19:19: An exception has been thrown!268 10:31:32: An exception has been thrown! 269 269 270 270 ----------------------------------- … … 277 277 Line: 779 278 278 Stack unwinding: <<beginning of stack>> 279 1 6:19:19: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!279 10:31:32: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 280 280 281 281 ----------------------------------- … … 288 288 Line: 779 289 289 Stack unwinding: <<beginning of stack>> 290 1 6:19:19: An exception has been thrown!290 10:31:32: An exception has been thrown! 291 291 292 292 ----------------------------------- … … 299 299 Line: 779 300 300 Stack unwinding: <<beginning of stack>> 301 1 6:19:19: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!301 10:31:32: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 302 302 303 303 ----------------------------------- … … 310 310 Line: 779 311 311 Stack unwinding: <<beginning of stack>> 312 1 6:19:19: An exception has been thrown!312 10:31:32: An exception has been thrown! 313 313 314 314 ----------------------------------- … … 321 321 Line: 779 322 322 Stack unwinding: <<beginning of stack>> 323 1 6:19:19: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!323 10:31:32: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 324 324 325 325 ----------------------------------- … … 332 332 Line: 779 333 333 Stack unwinding: <<beginning of stack>> 334 1 6:19:19: An exception has been thrown!334 10:31:32: An exception has been thrown! 335 335 336 336 ----------------------------------- … … 343 343 Line: 779 344 344 Stack unwinding: <<beginning of stack>> 345 1 6:19:19: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!345 10:31:32: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 346 346 347 347 ----------------------------------- … … 354 354 Line: 779 355 355 Stack unwinding: <<beginning of stack>> 356 1 6:19:19: An exception has been thrown!356 10:31:32: An exception has been thrown! 357 357 358 358 ----------------------------------- … … 365 365 Line: 779 366 366 Stack unwinding: <<beginning of stack>> 367 1 6:19:19: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!367 10:31:32: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 368 368 369 369 ----------------------------------- … … 376 376 Line: 779 377 377 Stack unwinding: <<beginning of stack>> 378 1 6:19:19: An exception has been thrown!378 10:31:32: An exception has been thrown! 379 379 380 380 ----------------------------------- … … 387 387 Line: 779 388 388 Stack unwinding: <<beginning of stack>> 389 1 6:19:19: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!389 10:31:32: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 390 390 391 391 ----------------------------------- … … 398 398 Line: 779 399 399 Stack unwinding: <<beginning of stack>> 400 1 6:19:19: An exception has been thrown!400 10:31:32: An exception has been thrown! 401 401 402 402 ----------------------------------- … … 409 409 Line: 779 410 410 Stack unwinding: <<beginning of stack>> 411 1 6:19:19: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!411 10:31:32: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 412 412 413 413 ----------------------------------- … … 420 420 Line: 779 421 421 Stack unwinding: <<beginning of stack>> 422 1 6:19:19: An exception has been thrown!422 10:31:32: An exception has been thrown! 423 423 424 424 ----------------------------------- … … 431 431 Line: 779 432 432 Stack unwinding: <<beginning of stack>> 433 1 6:19:19: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!433 10:31:32: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 434 434 435 435 ----------------------------------- … … 442 442 Line: 779 443 443 Stack unwinding: <<beginning of stack>> 444 1 6:19:19: An exception has been thrown!444 10:31:32: An exception has been thrown! 445 445 446 446 ----------------------------------- … … 453 453 Line: 779 454 454 Stack unwinding: <<beginning of stack>> 455 1 6:19:19: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!455 10:31:32: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 456 456 457 457 ----------------------------------- … … 464 464 Line: 779 465 465 Stack unwinding: <<beginning of stack>> 466 1 6:19:19: An exception has been thrown!466 10:31:32: An exception has been thrown! 467 467 468 468 ----------------------------------- … … 475 475 Line: 779 476 476 Stack unwinding: <<beginning of stack>> 477 1 6:19:19: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!477 10:31:32: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 478 478 479 479 ----------------------------------- … … 486 486 Line: 779 487 487 Stack unwinding: <<beginning of stack>> 488 1 6:19:19: An exception has been thrown!488 10:31:32: An exception has been thrown! 489 489 490 490 ----------------------------------- … … 497 497 Line: 779 498 498 Stack unwinding: <<beginning of stack>> 499 1 6:19:19: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!499 10:31:32: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 500 500 501 501 ----------------------------------- … … 508 508 Line: 779 509 509 Stack unwinding: <<beginning of stack>> 510 1 6:19:19: An exception has been thrown!510 10:31:32: An exception has been thrown! 511 511 512 512 ----------------------------------- … … 519 519 Line: 779 520 520 Stack unwinding: <<beginning of stack>> 521 1 6:19:19: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!521 10:31:32: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 522 522 523 523 ----------------------------------- … … 530 530 Line: 779 531 531 Stack unwinding: <<beginning of stack>> 532 1 6:19:19: An exception has been thrown!532 10:31:32: An exception has been thrown! 533 533 534 534 ----------------------------------- … … 541 541 Line: 779 542 542 Stack unwinding: <<beginning of stack>> 543 1 6:19:19: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!543 10:31:32: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 544 544 545 545 ----------------------------------- … … 552 552 Line: 779 553 553 Stack unwinding: <<beginning of stack>> 554 1 6:19:19: An exception has been thrown!554 10:31:32: An exception has been thrown! 555 555 556 556 ----------------------------------- … … 563 563 Line: 779 564 564 Stack unwinding: <<beginning of stack>> 565 1 6:19:19: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!565 10:31:32: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 566 566 567 567 ----------------------------------- … … 574 574 Line: 779 575 575 Stack unwinding: <<beginning of stack>> 576 1 6:19:19: An exception has been thrown!576 10:31:32: An exception has been thrown! 577 577 578 578 ----------------------------------- … … 585 585 Line: 779 586 586 Stack unwinding: <<beginning of stack>> 587 1 6:19:19: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!587 10:31:32: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 588 588 589 589 ----------------------------------- … … 596 596 Line: 779 597 597 Stack unwinding: <<beginning of stack>> 598 1 6:19:19: Parsing script diffscene.material599 1 6:19:19: An exception has been thrown!598 10:31:32: Parsing script diffscene.material 599 10:31:32: An exception has been thrown! 600 600 601 601 ----------------------------------- … … 608 608 Line: 779 609 609 Stack unwinding: <<beginning of stack>> 610 1 6:19:19: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!610 10:31:32: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 611 611 612 612 ----------------------------------- … … 619 619 Line: 779 620 620 Stack unwinding: <<beginning of stack>> 621 1 6:19:19: An exception has been thrown!621 10:31:32: An exception has been thrown! 622 622 623 623 ----------------------------------- … … 630 630 Line: 779 631 631 Stack unwinding: <<beginning of stack>> 632 1 6:19:19: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!632 10:31:32: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 633 633 634 634 ----------------------------------- … … 641 641 Line: 779 642 642 Stack unwinding: <<beginning of stack>> 643 1 6:19:19: An exception has been thrown!643 10:31:32: An exception has been thrown! 644 644 645 645 ----------------------------------- … … 652 652 Line: 779 653 653 Stack unwinding: <<beginning of stack>> 654 1 6:19:19: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!654 10:31:32: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 655 655 656 656 ----------------------------------- … … 663 663 Line: 779 664 664 Stack unwinding: <<beginning of stack>> 665 1 6:19:19: An exception has been thrown!665 10:31:32: An exception has been thrown! 666 666 667 667 ----------------------------------- … … 674 674 Line: 779 675 675 Stack unwinding: <<beginning of stack>> 676 1 6:19:19: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!676 10:31:32: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 677 677 678 678 ----------------------------------- … … 685 685 Line: 779 686 686 Stack unwinding: <<beginning of stack>> 687 1 6:19:19: An exception has been thrown!687 10:31:32: An exception has been thrown! 688 688 689 689 ----------------------------------- … … 696 696 Line: 779 697 697 Stack unwinding: <<beginning of stack>> 698 1 6:19:19: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!698 10:31:32: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 699 699 700 700 ----------------------------------- … … 707 707 Line: 779 708 708 Stack unwinding: <<beginning of stack>> 709 1 6:19:19: An exception has been thrown!709 10:31:32: An exception has been thrown! 710 710 711 711 ----------------------------------- … … 718 718 Line: 779 719 719 Stack unwinding: <<beginning of stack>> 720 1 6:19:19: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!720 10:31:32: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 721 721 722 722 ----------------------------------- … … 729 729 Line: 779 730 730 Stack unwinding: <<beginning of stack>> 731 1 6:19:19: An exception has been thrown!731 10:31:32: An exception has been thrown! 732 732 733 733 ----------------------------------- … … 740 740 Line: 779 741 741 Stack unwinding: <<beginning of stack>> 742 1 6:19:19: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!742 10:31:32: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 743 743 744 744 ----------------------------------- … … 751 751 Line: 779 752 752 Stack unwinding: <<beginning of stack>> 753 1 6:19:19: An exception has been thrown!753 10:31:32: An exception has been thrown! 754 754 755 755 ----------------------------------- … … 762 762 Line: 779 763 763 Stack unwinding: <<beginning of stack>> 764 1 6:19:19: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!764 10:31:32: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 765 765 766 766 ----------------------------------- … … 773 773 Line: 779 774 774 Stack unwinding: <<beginning of stack>> 775 1 6:19:19: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857776 1 6:19:19: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857777 1 6:19:19: Parsing script Diffuse.material778 1 6:19:19: An exception has been thrown!775 10:31:32: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 776 10:31:32: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 777 10:31:32: Parsing script Diffuse.material 778 10:31:33: An exception has been thrown! 779 779 780 780 ----------------------------------- … … 787 787 Line: 779 788 788 Stack unwinding: <<beginning of stack>> 789 1 6:19:19: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!789 10:31:33: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 790 790 791 791 ----------------------------------- … … 798 798 Line: 779 799 799 Stack unwinding: <<beginning of stack>> 800 1 6:19:20: An exception has been thrown!800 10:31:33: An exception has been thrown! 801 801 802 802 ----------------------------------- … … 809 809 Line: 779 810 810 Stack unwinding: <<beginning of stack>> 811 1 6:19:20: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!811 10:31:33: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 812 812 813 813 ----------------------------------- … … 820 820 Line: 779 821 821 Stack unwinding: <<beginning of stack>> 822 1 6:19:23: An exception has been thrown!822 10:31:37: An exception has been thrown! 823 823 824 824 ----------------------------------- … … 831 831 Line: 779 832 832 Stack unwinding: <<beginning of stack>> 833 1 6:19:23: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown!833 10:31:37: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 834 834 835 835 ----------------------------------- … … 842 842 Line: 779 843 843 Stack unwinding: <<beginning of stack>> 844 1 6:19:23: An exception has been thrown!844 10:31:37: An exception has been thrown! 845 845 846 846 ----------------------------------- … … 853 853 Line: 779 854 854 Stack unwinding: <<beginning of stack>> 855 1 6:19:23: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!855 10:31:37: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 856 856 857 857 ----------------------------------- … … 864 864 Line: 779 865 865 Stack unwinding: <<beginning of stack>> 866 1 6:19:24: Parsing script EnvMetals.material867 1 6:19:24: An exception has been thrown!866 10:31:37: Parsing script EnvMetals.material 867 10:31:37: An exception has been thrown! 868 868 869 869 ----------------------------------- … … 876 876 Line: 779 877 877 Stack unwinding: <<beginning of stack>> 878 1 6:19:24: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!878 10:31:37: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 879 879 880 880 ----------------------------------- … … 887 887 Line: 779 888 888 Stack unwinding: <<beginning of stack>> 889 1 6:19:24: An exception has been thrown!889 10:31:37: An exception has been thrown! 890 890 891 891 ----------------------------------- … … 898 898 Line: 779 899 899 Stack unwinding: <<beginning of stack>> 900 1 6:19:24: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!900 10:31:37: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 901 901 902 902 ----------------------------------- … … 909 909 Line: 779 910 910 Stack unwinding: <<beginning of stack>> 911 1 6:19:24: An exception has been thrown!911 10:31:37: An exception has been thrown! 912 912 913 913 ----------------------------------- … … 920 920 Line: 779 921 921 Stack unwinding: <<beginning of stack>> 922 1 6:19:24: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!922 10:31:37: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 923 923 924 924 ----------------------------------- … … 931 931 Line: 779 932 932 Stack unwinding: <<beginning of stack>> 933 1 6:19:24: An exception has been thrown!933 10:31:37: An exception has been thrown! 934 934 935 935 ----------------------------------- … … 942 942 Line: 779 943 943 Stack unwinding: <<beginning of stack>> 944 1 6:19:24: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!944 10:31:37: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 945 945 946 946 ----------------------------------- … … 953 953 Line: 779 954 954 Stack unwinding: <<beginning of stack>> 955 1 6:19:24: Parsing script GameTools.material956 1 6:19:24: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5)957 1 6:19:24: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend958 1 6:19:24: An exception has been thrown!955 10:31:37: Parsing script GameTools.material 956 10:31:37: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 957 10:31:37: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 958 10:31:37: An exception has been thrown! 959 959 960 960 ----------------------------------- … … 967 967 Line: 779 968 968 Stack unwinding: <<beginning of stack>> 969 1 6:19:24: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!969 10:31:37: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 970 970 971 971 ----------------------------------- … … 978 978 Line: 779 979 979 Stack unwinding: <<beginning of stack>> 980 1 6:19:24: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend981 1 6:19:24: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.982 1 6:19:24: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend983 1 6:19:24: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend984 1 6:19:24: Parsing script GameTools_HPS.material985 1 6:19:24: An exception has been thrown!980 10:31:37: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 981 10:31:37: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 982 10:31:37: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 983 10:31:37: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 984 10:31:37: Parsing script GameTools_HPS.material 985 10:31:37: An exception has been thrown! 986 986 987 987 ----------------------------------- … … 994 994 Line: 779 995 995 Stack unwinding: <<beginning of stack>> 996 1 6:19:24: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!996 10:31:37: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 997 997 998 998 ----------------------------------- … … 1005 1005 Line: 779 1006 1006 Stack unwinding: <<beginning of stack>> 1007 1 6:19:24: An exception has been thrown!1007 10:31:37: An exception has been thrown! 1008 1008 1009 1009 ----------------------------------- … … 1016 1016 Line: 779 1017 1017 Stack unwinding: <<beginning of stack>> 1018 1 6:19:24: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1018 10:31:37: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1019 1019 1020 1020 ----------------------------------- … … 1027 1027 Line: 779 1028 1028 Stack unwinding: <<beginning of stack>> 1029 1 6:19:24: An exception has been thrown!1029 10:31:37: An exception has been thrown! 1030 1030 1031 1031 ----------------------------------- … … 1038 1038 Line: 779 1039 1039 Stack unwinding: <<beginning of stack>> 1040 1 6:19:24: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1040 10:31:37: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1041 1041 1042 1042 ----------------------------------- … … 1049 1049 Line: 779 1050 1050 Stack unwinding: <<beginning of stack>> 1051 1 6:19:24: An exception has been thrown!1051 10:31:37: An exception has been thrown! 1052 1052 1053 1053 ----------------------------------- … … 1060 1060 Line: 779 1061 1061 Stack unwinding: <<beginning of stack>> 1062 1 6:19:24: Error in material HPS_SMOKE_L_Depth at line 144 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1062 10:31:37: Error in material HPS_SMOKE_L_Depth at line 144 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1063 1063 1064 1064 ----------------------------------- … … 1071 1071 Line: 779 1072 1072 Stack unwinding: <<beginning of stack>> 1073 1 6:19:24: An exception has been thrown!1073 10:31:37: An exception has been thrown! 1074 1074 1075 1075 ----------------------------------- … … 1082 1082 Line: 779 1083 1083 Stack unwinding: <<beginning of stack>> 1084 1 6:19:24: Error in material HPS_SMOKE_L_Depth at line 146 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1084 10:31:37: Error in material HPS_SMOKE_L_Depth at line 146 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1085 1085 1086 1086 ----------------------------------- … … 1093 1093 Line: 779 1094 1094 Stack unwinding: <<beginning of stack>> 1095 1 6:19:24: An exception has been thrown!1095 10:31:37: An exception has been thrown! 1096 1096 1097 1097 ----------------------------------- … … 1104 1104 Line: 779 1105 1105 Stack unwinding: <<beginning of stack>> 1106 1 6:19:24: Error in material HPS_SMOKE_L_Depth at line 148 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1106 10:31:37: Error in material HPS_SMOKE_L_Depth at line 148 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1107 1107 1108 1108 ----------------------------------- … … 1115 1115 Line: 779 1116 1116 Stack unwinding: <<beginning of stack>> 1117 1 6:19:24: An exception has been thrown!1117 10:31:37: An exception has been thrown! 1118 1118 1119 1119 ----------------------------------- … … 1126 1126 Line: 779 1127 1127 Stack unwinding: <<beginning of stack>> 1128 1 6:19:24: Error in material HPS_SMOKE_L_Depth at line 149 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1128 10:31:37: Error in material HPS_SMOKE_L_Depth at line 149 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1129 1129 1130 1130 ----------------------------------- … … 1137 1137 Line: 779 1138 1138 Stack unwinding: <<beginning of stack>> 1139 1 6:19:24: An exception has been thrown!1139 10:31:37: An exception has been thrown! 1140 1140 1141 1141 ----------------------------------- … … 1148 1148 Line: 779 1149 1149 Stack unwinding: <<beginning of stack>> 1150 1 6:19:24: Error in material HPS_SMOKE_L_Depth at line 153 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1150 10:31:37: Error in material HPS_SMOKE_L_Depth at line 153 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1151 1151 1152 1152 ----------------------------------- … … 1159 1159 Line: 779 1160 1160 Stack unwinding: <<beginning of stack>> 1161 1 6:19:24: An exception has been thrown!1161 10:31:37: An exception has been thrown! 1162 1162 1163 1163 ----------------------------------- … … 1170 1170 Line: 779 1171 1171 Stack unwinding: <<beginning of stack>> 1172 1 6:19:24: Error in material HPS_SMOKE_L_Depth_Illum at line 222 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1172 10:31:37: Error in material HPS_SMOKE_L_Depth_Illum at line 222 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1173 1173 1174 1174 ----------------------------------- … … 1181 1181 Line: 779 1182 1182 Stack unwinding: <<beginning of stack>> 1183 1 6:19:24: An exception has been thrown!1183 10:31:37: An exception has been thrown! 1184 1184 1185 1185 ----------------------------------- … … 1192 1192 Line: 779 1193 1193 Stack unwinding: <<beginning of stack>> 1194 1 6:19:24: Error in material HPS_SMOKE_L_Depth_Illum at line 231 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1194 10:31:37: Error in material HPS_SMOKE_L_Depth_Illum at line 231 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1195 1195 1196 1196 ----------------------------------- … … 1203 1203 Line: 779 1204 1204 Stack unwinding: <<beginning of stack>> 1205 1 6:19:24: An exception has been thrown!1205 10:31:37: An exception has been thrown! 1206 1206 1207 1207 ----------------------------------- … … 1214 1214 Line: 779 1215 1215 Stack unwinding: <<beginning of stack>> 1216 1 6:19:24: Error in material HPS_SMOKE_L_Depth_Illum at line 232 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1216 10:31:37: Error in material HPS_SMOKE_L_Depth_Illum at line 232 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1217 1217 1218 1218 ----------------------------------- … … 1225 1225 Line: 779 1226 1226 Stack unwinding: <<beginning of stack>> 1227 1 6:19:24: An exception has been thrown!1227 10:31:37: An exception has been thrown! 1228 1228 1229 1229 ----------------------------------- … … 1236 1236 Line: 779 1237 1237 Stack unwinding: <<beginning of stack>> 1238 1 6:19:24: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1238 10:31:37: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1239 1239 1240 1240 ----------------------------------- … … 1247 1247 Line: 779 1248 1248 Stack unwinding: <<beginning of stack>> 1249 1 6:19:24: Parsing script GlassHead.material1250 1 6:19:24: An exception has been thrown!1249 10:31:37: Parsing script GlassHead.material 1250 10:31:37: An exception has been thrown! 1251 1251 1252 1252 ----------------------------------- … … 1259 1259 Line: 779 1260 1260 Stack unwinding: <<beginning of stack>> 1261 1 6:19:24: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1261 10:31:37: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1262 1262 1263 1263 ----------------------------------- … … 1270 1270 Line: 779 1271 1271 Stack unwinding: <<beginning of stack>> 1272 1 6:19:24: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.1273 1 6:19:24: An exception has been thrown!1272 10:31:37: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 1273 10:31:37: An exception has been thrown! 1274 1274 1275 1275 ----------------------------------- … … 1282 1282 Line: 779 1283 1283 Stack unwinding: <<beginning of stack>> 1284 1 6:19:24: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1284 10:31:37: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1285 1285 1286 1286 ----------------------------------- … … 1293 1293 Line: 779 1294 1294 Stack unwinding: <<beginning of stack>> 1295 1 6:19:24: An exception has been thrown!1295 10:31:37: An exception has been thrown! 1296 1296 1297 1297 ----------------------------------- … … 1304 1304 Line: 779 1305 1305 Stack unwinding: <<beginning of stack>> 1306 1 6:19:24: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1306 10:31:37: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1307 1307 1308 1308 ----------------------------------- … … 1315 1315 Line: 779 1316 1316 Stack unwinding: <<beginning of stack>> 1317 1 6:19:24: An exception has been thrown!1317 10:31:37: An exception has been thrown! 1318 1318 1319 1319 ----------------------------------- … … 1326 1326 Line: 779 1327 1327 Stack unwinding: <<beginning of stack>> 1328 1 6:19:24: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1328 10:31:37: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1329 1329 1330 1330 ----------------------------------- … … 1337 1337 Line: 779 1338 1338 Stack unwinding: <<beginning of stack>> 1339 1 6:19:24: Parsing script Glow.material1340 1 6:19:24: An exception has been thrown!1339 10:31:37: Parsing script Glow.material 1340 10:31:37: An exception has been thrown! 1341 1341 1342 1342 ----------------------------------- … … 1349 1349 Line: 779 1350 1350 Stack unwinding: <<beginning of stack>> 1351 1 6:19:24: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown!1351 10:31:37: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 1352 1352 1353 1353 ----------------------------------- … … 1360 1360 Line: 779 1361 1361 Stack unwinding: <<beginning of stack>> 1362 1 6:19:24: Parsing script hangar.material1363 1 6:19:24: Parsing script kupola.material1364 1 6:19:24: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1365 1 6:19:24: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1366 1 6:19:24: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1367 1 6:19:24: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1368 1 6:19:24: Parsing script MetalTeapot.material1369 1 6:19:24: An exception has been thrown!1362 10:31:37: Parsing script hangar.material 1363 10:31:37: Parsing script kupola.material 1364 10:31:37: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1365 10:31:37: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1366 10:31:37: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1367 10:31:37: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1368 10:31:37: Parsing script MetalTeapot.material 1369 10:31:37: An exception has been thrown! 1370 1370 1371 1371 ----------------------------------- … … 1378 1378 Line: 779 1379 1379 Stack unwinding: <<beginning of stack>> 1380 1 6:19:24: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1380 10:31:37: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1381 1381 1382 1382 ----------------------------------- … … 1389 1389 Line: 779 1390 1390 Stack unwinding: <<beginning of stack>> 1391 1 6:19:24: An exception has been thrown!1391 10:31:37: An exception has been thrown! 1392 1392 1393 1393 ----------------------------------- … … 1400 1400 Line: 779 1401 1401 Stack unwinding: <<beginning of stack>> 1402 1 6:19:24: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1402 10:31:37: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1403 1403 1404 1404 ----------------------------------- … … 1411 1411 Line: 779 1412 1412 Stack unwinding: <<beginning of stack>> 1413 1 6:19:24: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max'1414 1 6:19:24: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test1415 1 6:19:24: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max'1416 1 6:19:24: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test1417 1 6:19:36: An exception has been thrown!1413 10:31:37: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 1414 10:31:37: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 1415 10:31:37: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 1416 10:31:37: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 1417 10:31:50: An exception has been thrown! 1418 1418 1419 1419 ----------------------------------- … … 1426 1426 Line: 779 1427 1427 Stack unwinding: <<beginning of stack>> 1428 1 6:19:36: Error in material MetalTeapotMultipleBounce at line 254of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1428 10:31:50: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1429 1429 1430 1430 ----------------------------------- … … 1437 1437 Line: 779 1438 1438 Stack unwinding: <<beginning of stack>> 1439 1 6:19:36: An exception has been thrown!1439 10:31:50: An exception has been thrown! 1440 1440 1441 1441 ----------------------------------- … … 1448 1448 Line: 779 1449 1449 Stack unwinding: <<beginning of stack>> 1450 1 6:19:36: Error in material MetalTeapotMultipleBounce at line 256of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1450 10:31:50: Error in material MetalTeapotMultipleBounce at line 258 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1451 1451 1452 1452 ----------------------------------- … … 1459 1459 Line: 779 1460 1460 Stack unwinding: <<beginning of stack>> 1461 1 6:19:36: Parsing script Ogre.material1462 1 6:19:36: Parsing script Particles.material1463 1 6:19:36: An exception has been thrown!1461 10:31:50: Parsing script Ogre.material 1462 10:31:50: Parsing script Particles.material 1463 10:31:50: An exception has been thrown! 1464 1464 1465 1465 ----------------------------------- … … 1472 1472 Line: 779 1473 1473 Stack unwinding: <<beginning of stack>> 1474 1 6:19:36: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!1474 10:31:50: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 1475 1475 1476 1476 ----------------------------------- … … 1483 1483 Line: 779 1484 1484 Stack unwinding: <<beginning of stack>> 1485 1 6:19:36: An exception has been thrown!1485 10:31:50: An exception has been thrown! 1486 1486 1487 1487 ----------------------------------- … … 1494 1494 Line: 779 1495 1495 Stack unwinding: <<beginning of stack>> 1496 1 6:19:36: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!1496 10:31:50: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 1497 1497 1498 1498 ----------------------------------- … … 1505 1505 Line: 779 1506 1506 Stack unwinding: <<beginning of stack>> 1507 1 6:19:36: Parsing script RaytraceDemo.material1508 1 6:19:36: Parsing script stairs.material1509 1 6:19:36: Parsing script terito.material1510 1 6:19:36: Parsing script uvegfolyoso2.material1511 1 6:19:36: An exception has been thrown!1507 10:31:50: Parsing script RaytraceDemo.material 1508 10:31:50: Parsing script stairs.material 1509 10:31:50: Parsing script terito.material 1510 10:31:50: Parsing script uvegfolyoso2.material 1511 10:31:50: An exception has been thrown! 1512 1512 1513 1513 ----------------------------------- … … 1520 1520 Line: 779 1521 1521 Stack unwinding: <<beginning of stack>> 1522 1 6:19:36: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1522 10:31:50: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1523 1523 1524 1524 ----------------------------------- … … 1531 1531 Line: 779 1532 1532 Stack unwinding: <<beginning of stack>> 1533 1 6:19:36: An exception has been thrown!1533 10:31:50: An exception has been thrown! 1534 1534 1535 1535 ----------------------------------- … … 1542 1542 Line: 779 1543 1543 Stack unwinding: <<beginning of stack>> 1544 1 6:19:36: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1544 10:31:50: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1545 1545 1546 1546 ----------------------------------- … … 1553 1553 Line: 779 1554 1554 Stack unwinding: <<beginning of stack>> 1555 1 6:19:36: An exception has been thrown!1555 10:31:50: An exception has been thrown! 1556 1556 1557 1557 ----------------------------------- … … 1564 1564 Line: 779 1565 1565 Stack unwinding: <<beginning of stack>> 1566 1 6:19:36: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1566 10:31:50: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1567 1567 1568 1568 ----------------------------------- … … 1575 1575 Line: 779 1576 1576 Stack unwinding: <<beginning of stack>> 1577 1 6:19:36: An exception has been thrown!1577 10:31:50: An exception has been thrown! 1578 1578 1579 1579 ----------------------------------- … … 1586 1586 Line: 779 1587 1587 Stack unwinding: <<beginning of stack>> 1588 1 6:19:36: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1588 10:31:50: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1589 1589 1590 1590 ----------------------------------- … … 1597 1597 Line: 779 1598 1598 Stack unwinding: <<beginning of stack>> 1599 1 6:19:36: An exception has been thrown!1599 10:31:50: An exception has been thrown! 1600 1600 1601 1601 ----------------------------------- … … 1608 1608 Line: 779 1609 1609 Stack unwinding: <<beginning of stack>> 1610 1 6:19:36: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1610 10:31:50: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1611 1611 1612 1612 ----------------------------------- … … 1619 1619 Line: 779 1620 1620 Stack unwinding: <<beginning of stack>> 1621 1 6:19:36: An exception has been thrown!1621 10:31:50: An exception has been thrown! 1622 1622 1623 1623 ----------------------------------- … … 1630 1630 Line: 779 1631 1631 Stack unwinding: <<beginning of stack>> 1632 1 6:19:36: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1632 10:31:50: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1633 1633 1634 1634 ----------------------------------- … … 1641 1641 Line: 779 1642 1642 Stack unwinding: <<beginning of stack>> 1643 1 6:19:36: An exception has been thrown!1643 10:31:50: An exception has been thrown! 1644 1644 1645 1645 ----------------------------------- … … 1652 1652 Line: 779 1653 1653 Stack unwinding: <<beginning of stack>> 1654 1 6:19:36: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1654 10:31:50: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1655 1655 1656 1656 ----------------------------------- … … 1663 1663 Line: 779 1664 1664 Stack unwinding: <<beginning of stack>> 1665 1 6:19:36: An exception has been thrown!1665 10:31:50: An exception has been thrown! 1666 1666 1667 1667 ----------------------------------- … … 1674 1674 Line: 779 1675 1675 Stack unwinding: <<beginning of stack>> 1676 1 6:19:36: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1676 10:31:50: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1677 1677 1678 1678 ----------------------------------- … … 1685 1685 Line: 779 1686 1686 Stack unwinding: <<beginning of stack>> 1687 1 6:19:36: An exception has been thrown!1687 10:31:50: An exception has been thrown! 1688 1688 1689 1689 ----------------------------------- … … 1696 1696 Line: 779 1697 1697 Stack unwinding: <<beginning of stack>> 1698 1 6:19:36: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1698 10:31:50: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1699 1699 1700 1700 ----------------------------------- … … 1707 1707 Line: 779 1708 1708 Stack unwinding: <<beginning of stack>> 1709 1 6:19:36: An exception has been thrown!1709 10:31:50: An exception has been thrown! 1710 1710 1711 1711 ----------------------------------- … … 1718 1718 Line: 779 1719 1719 Stack unwinding: <<beginning of stack>> 1720 1 6:19:36: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1720 10:31:50: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1721 1721 1722 1722 ----------------------------------- … … 1729 1729 Line: 779 1730 1730 Stack unwinding: <<beginning of stack>> 1731 1 6:19:36: An exception has been thrown!1731 10:31:50: An exception has been thrown! 1732 1732 1733 1733 ----------------------------------- … … 1740 1740 Line: 779 1741 1741 Stack unwinding: <<beginning of stack>> 1742 1 6:19:36: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1742 10:31:50: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1743 1743 1744 1744 ----------------------------------- … … 1751 1751 Line: 779 1752 1752 Stack unwinding: <<beginning of stack>> 1753 1 6:19:36: An exception has been thrown!1753 10:31:50: An exception has been thrown! 1754 1754 1755 1755 ----------------------------------- … … 1762 1762 Line: 779 1763 1763 Stack unwinding: <<beginning of stack>> 1764 1 6:19:36: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1764 10:31:50: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1765 1765 1766 1766 ----------------------------------- … … 1773 1773 Line: 779 1774 1774 Stack unwinding: <<beginning of stack>> 1775 1 6:19:36: An exception has been thrown!1775 10:31:50: An exception has been thrown! 1776 1776 1777 1777 ----------------------------------- … … 1784 1784 Line: 779 1785 1785 Stack unwinding: <<beginning of stack>> 1786 1 6:19:36: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1786 10:31:50: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1787 1787 1788 1788 ----------------------------------- … … 1795 1795 Line: 779 1796 1796 Stack unwinding: <<beginning of stack>> 1797 1 6:19:36: An exception has been thrown!1797 10:31:50: An exception has been thrown! 1798 1798 1799 1799 ----------------------------------- … … 1806 1806 Line: 779 1807 1807 Stack unwinding: <<beginning of stack>> 1808 1 6:19:36: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1808 10:31:50: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1809 1809 1810 1810 ----------------------------------- … … 1817 1817 Line: 779 1818 1818 Stack unwinding: <<beginning of stack>> 1819 1 6:19:36: An exception has been thrown!1819 10:31:50: An exception has been thrown! 1820 1820 1821 1821 ----------------------------------- … … 1828 1828 Line: 779 1829 1829 Stack unwinding: <<beginning of stack>> 1830 1 6:19:36: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1830 10:31:50: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1831 1831 1832 1832 ----------------------------------- … … 1839 1839 Line: 779 1840 1840 Stack unwinding: <<beginning of stack>> 1841 1 6:19:36: An exception has been thrown!1841 10:31:50: An exception has been thrown! 1842 1842 1843 1843 ----------------------------------- … … 1850 1850 Line: 779 1851 1851 Stack unwinding: <<beginning of stack>> 1852 1 6:19:36: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1852 10:31:50: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1853 1853 1854 1854 ----------------------------------- … … 1861 1861 Line: 779 1862 1862 Stack unwinding: <<beginning of stack>> 1863 1 6:19:36: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.367741864 1 6:19:36: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.367741865 1 6:19:36: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.512821866 1 6:19:36: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.2371867 1 6:19:36: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.2371868 1 6:19:36: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.512821869 1 6:19:36: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.940181870 1 6:19:36: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.940181871 1 6:19:36: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.01872 1 6:19:36: Parsing script X3D.material1873 1 6:19:36: Parsing script GameTools_Glow.compositor1874 1 6:19:36: Parsing script GameTools_ToneMap.compositor1875 1 6:19:36: Parsing script sample.fontdef1876 1 6:19:36: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre1877 1 6:19:36: Parsing script GameTools.particle1878 1 6:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer)1879 1 6:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer)1880 1 6:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer)1881 1 6:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer)1882 1 6:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer)1883 1 6:19:36: Parsing script Compositor.overlay1884 1 6:19:36: Parsing script DP3.overlay1885 1 6:19:36: Parsing script Example-CubeMapping.overlay1886 1 6:19:36: Parsing script Example-DynTex.overlay1887 1 6:19:36: Parsing script Example-Water.overlay1888 1 6:19:36: Parsing script FullScreen.overlay1889 1 6:19:36: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.1890 1 6:19:36: Parsing script Shadows.overlay1891 1 6:19:36: Finished parsing scripts for resource group General1892 1 6:19:36: Parsing scripts for resource group Internal1893 1 6:19:36: Finished parsing scripts for resource group Internal1894 1 6:19:36: Mesh: Loading teapot.mesh.1895 1 6:19:36: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script?1896 1 6:19:36: Mesh: Loading difflab.mesh.1897 1 6:19:36: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1.1898 1 6:19:36: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1.1899 1 6:19:36: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1.1900 1 6:19:36: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.1901 1 6:19:36: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.1902 1 6:19:36: Creating viewport on target 'rtt/42791616', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01903 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241904 1 6:19:36: Creating viewport on target 'rtt/42791680', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01905 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241906 1 6:19:36: Creating viewport on target 'rtt/42791744', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01907 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241908 1 6:19:36: Creating viewport on target 'rtt/42791808', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01909 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241910 1 6:19:36: Creating viewport on target 'rtt/42791872', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01911 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241912 1 6:19:36: Creating viewport on target 'rtt/42791936', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01913 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241914 1 6:19:36: 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.1915 1 6:19:36: Creating viewport on target 'rtt/42792896', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01916 1 6:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241917 1 6:19:36: Creating viewport on target 'rtt/42792960', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01918 1 6:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241919 1 6:19:36: Creating viewport on target 'rtt/42793024', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01920 1 6:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241921 1 6:19:36: Creating viewport on target 'rtt/42793088', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01922 1 6:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241923 1 6:19:36: Creating viewport on target 'rtt/42793152', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01924 1 6:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241925 1 6:19:36: Creating viewport on target 'rtt/42793216', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01926 1 6:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241927 1 6:19:36: 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.1928 1 6:19:36: Creating viewport on target 'rtt/42794240', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01929 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241930 1 6:19:36: Creating viewport on target 'rtt/42794304', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01931 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241932 1 6:19:36: Creating viewport on target 'rtt/42794368', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01933 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241934 1 6:19:36: Creating viewport on target 'rtt/42794432', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01935 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241936 1 6:19:36: Creating viewport on target 'rtt/42794496', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01937 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241938 1 6:19:36: Creating viewport on target 'rtt/42794560', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01939 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241940 1 6:19:36: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded.1941 1 6:19:36: Creating viewport on target 'rtt/42795616', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01942 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241943 1 6:19:36: Creating viewport on target 'rtt/42795680', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01944 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241945 1 6:19:36: Creating viewport on target 'rtt/42795744', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01946 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241947 1 6:19:36: Creating viewport on target 'rtt/42795808', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01948 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241949 1 6:19:36: Creating viewport on target 'rtt/42795872', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01950 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241951 1 6:19:36: Creating viewport on target 'rtt/42795936', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01952 1 6:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 10241953 1 6:19:36: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded.1954 1 6:19:36: Win32Input8: DirectInput Activation Starts1955 1 6:19:36: Win32Input8: Establishing keyboard input.1956 1 6:19:36: Win32Input8: Keyboard input established.1957 1 6:19:36: Win32Input8: Initializing mouse input in immediate mode.1958 1 6:19:36: Win32Input8: Mouse input in immediate mode initialized.1959 1 6:19:36: Win32Input8: DirectInput OK.1960 1 6:19:36: Creating viewport on target 'rtt/42648256', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01961 1 6:19:36: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 5121962 1 6:19:36: Creating viewport on target 'rtt/42868288', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01963 1 6:19:36: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 5121964 1 6:19:36: Creating viewport on target 'rtt/42868640', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01965 1 6:19:36: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 321966 1 6:19:36: Creating viewport on target 'rtt/42868704', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 01967 1 6:19:36: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 2561968 1 6:19:36: 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.1969 1 6:19:36: 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.1970 1 6:20:34: Unregistering ResourceManager for type BspLevel1971 1 6:20:34: Render Target 'rtt/42868704' Average FPS: 0 Best FPS: 0 Worst FPS: 9991972 1 6:20:34: Render Target 'rtt/42868640' Average FPS: 0 Best FPS: 0 Worst FPS: 9991973 1 6:20:34: Render Target 'rtt/42868288' Average FPS: 4.78385 Best FPS: 19.4363 Worst FPS: 0.08061591974 1 6:20:34: Render Target 'rtt/42648256' Average FPS: 4.78385 Best FPS: 19.4175 Worst FPS: 0.08061921975 1 6:20:34: Render Target 'rtt/42795616' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.08064521976 1 6:20:34: Render Target 'rtt/42795680' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.08064521977 1 6:20:34: Render Target 'rtt/42795744' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.08064521978 1 6:20:34: Render Target 'rtt/42795808' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.08064521979 1 6:20:34: Render Target 'rtt/42795872' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.08064521980 1 6:20:34: Render Target 'rtt/42795936' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.08064521981 1 6:20:34: Render Target 'rtt/42794240' Average FPS: 0 Best FPS: 0 Worst FPS: 9991982 1 6:20:34: Render Target 'rtt/42794304' Average FPS: 0 Best FPS: 0 Worst FPS: 9991983 1 6:20:34: Render Target 'rtt/42794368' Average FPS: 0 Best FPS: 0 Worst FPS: 9991984 1 6:20:34: Render Target 'rtt/42794432' Average FPS: 0 Best FPS: 0 Worst FPS: 9991985 1 6:20:34: Render Target 'rtt/42794496' Average FPS: 0 Best FPS: 0 Worst FPS: 9991986 1 6:20:34: Render Target 'rtt/42794560' Average FPS: 0 Best FPS: 0 Worst FPS: 9991987 1 6:20:34: Render Target 'rtt/42792896' Average FPS: 0 Best FPS: 0 Worst FPS: 9991988 1 6:20:34: Render Target 'rtt/42792960' Average FPS: 0 Best FPS: 0 Worst FPS: 9991989 1 6:20:34: Render Target 'rtt/42793024' Average FPS: 0 Best FPS: 0 Worst FPS: 9991990 1 6:20:34: Render Target 'rtt/42793088' Average FPS: 0 Best FPS: 0 Worst FPS: 9991991 1 6:20:34: Render Target 'rtt/42793152' Average FPS: 0 Best FPS: 0 Worst FPS: 9991992 1 6:20:34: Render Target 'rtt/42793216' Average FPS: 0 Best FPS: 0 Worst FPS: 9991993 1 6:20:34: Render Target 'rtt/42791616' Average FPS: 0 Best FPS: 0 Worst FPS: 9991994 1 6:20:34: Render Target 'rtt/42791680' Average FPS: 0 Best FPS: 0 Worst FPS: 9991995 1 6:20:34: Render Target 'rtt/42791744' Average FPS: 0 Best FPS: 0 Worst FPS: 9991996 1 6:20:34: Render Target 'rtt/42791808' Average FPS: 0 Best FPS: 0 Worst FPS: 9991997 1 6:20:34: Render Target 'rtt/42791872' Average FPS: 0 Best FPS: 0 Worst FPS: 9991998 1 6:20:34: Render Target 'rtt/42791936' Average FPS: 0 Best FPS: 0 Worst FPS: 9991999 1 6:20:34: *-*-* OGRE Shutdown2000 1 6:20:34: Unregistering ResourceManager for type Compositor2001 1 6:20:34: Unregistering ResourceManager for type Font2002 1 6:20:34: Unregistering ResourceManager for type Skeleton2003 1 6:20:34: Unregistering ResourceManager for type Mesh2004 1 6:20:34: Unregistering ResourceManager for type HighLevelGpuProgram2005 1 6:20:34: Unloading library .\Plugin_CgProgramManager2006 1 6:20:34: Unloading library .\Plugin_OctreeSceneManager2007 1 6:20:34: Unloading library .\Plugin_BSPSceneManager2008 1 6:20:34: Unloading library .\Plugin_ParticleFX2009 1 6:20:34: Render Target 'OGRE Render Window' Average FPS: 4.7854 Best FPS: 20.3095 Worst FPS: 0.04029332010 1 6:20:34: D3D9 : Shutting down cleanly.2011 1 6:20:34: Unregistering ResourceManager for type Texture2012 1 6:20:34: Unregistering ResourceManager for type GpuProgram2013 1 6:20:34: D3D9 : Direct3D9 Rendering Subsystem destroyed.2014 1 6:20:34: Unloading library .\RenderSystem_Direct3D92015 1 6:20:34: Unregistering ResourceManager for type Material2016 1 6:20:34: Unloading library OgrePlatform.dll1863 10:31:50: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1864 10:31:50: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1865 10:31:50: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1866 10:31:50: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1867 10:31:50: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1868 10:31:50: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1869 10:31:50: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1870 10:31:50: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1871 10:31:50: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1872 10:31:50: Parsing script X3D.material 1873 10:31:50: Parsing script GameTools_Glow.compositor 1874 10:31:50: Parsing script GameTools_ToneMap.compositor 1875 10:31:50: Parsing script sample.fontdef 1876 10:31:50: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1877 10:31:50: Parsing script GameTools.particle 1878 10:31:50: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1879 10:31:50: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1880 10:31:50: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1881 10:31:50: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1882 10:31:50: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1883 10:31:50: Parsing script Compositor.overlay 1884 10:31:50: Parsing script DP3.overlay 1885 10:31:50: Parsing script Example-CubeMapping.overlay 1886 10:31:50: Parsing script Example-DynTex.overlay 1887 10:31:50: Parsing script Example-Water.overlay 1888 10:31:50: Parsing script FullScreen.overlay 1889 10:31:50: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1890 10:31:50: Parsing script Shadows.overlay 1891 10:31:50: Finished parsing scripts for resource group General 1892 10:31:50: Parsing scripts for resource group Internal 1893 10:31:50: Finished parsing scripts for resource group Internal 1894 10:31:50: Mesh: Loading teapot.mesh. 1895 10:31:50: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 1896 10:31:50: Mesh: Loading difflab.mesh. 1897 10:31:50: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1898 10:31:51: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1899 10:31:51: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 1900 10:31:51: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1901 10:31:51: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1902 10:31:51: Creating viewport on target 'rtt/42792672', 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 1903 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1904 10:31:51: Creating viewport on target 'rtt/42792736', 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 1905 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1906 10:31:51: Creating viewport on target 'rtt/42792800', 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 1907 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1908 10:31:51: Creating viewport on target 'rtt/42792864', 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 1909 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1910 10:31:51: Creating viewport on target 'rtt/42792928', 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 1911 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1912 10:31:51: Creating viewport on target 'rtt/42792992', 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 1913 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1914 10:31:51: 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. 1915 10:31:51: Creating viewport on target 'rtt/42793952', 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 1916 10:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1917 10:31:51: Creating viewport on target 'rtt/42794016', 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 1918 10:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1919 10:31:51: Creating viewport on target 'rtt/42794080', 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 1920 10:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1921 10:31:51: Creating viewport on target 'rtt/42794144', 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 1922 10:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1923 10:31:51: Creating viewport on target 'rtt/42794208', 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 1924 10:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1925 10:31:51: Creating viewport on target 'rtt/42794272', 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 1926 10:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1927 10:31:51: 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. 1928 10:31:51: Creating viewport on target 'rtt/42795328', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1929 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1930 10:31:51: Creating viewport on target 'rtt/42795392', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1931 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1932 10:31:51: Creating viewport on target 'rtt/42795456', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1933 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1934 10:31:51: Creating viewport on target 'rtt/42795520', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1935 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1936 10:31:51: Creating viewport on target 'rtt/42795584', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1937 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1938 10:31:51: Creating viewport on target 'rtt/42795648', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1939 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1940 10:31:51: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1941 10:31:51: Creating viewport on target 'rtt/42796672', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1942 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1943 10:31:51: Creating viewport on target 'rtt/42796736', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1944 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1945 10:31:51: Creating viewport on target 'rtt/42796800', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1946 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1947 10:31:51: Creating viewport on target 'rtt/42796864', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1948 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1949 10:31:51: Creating viewport on target 'rtt/42796928', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1950 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1951 10:31:51: Creating viewport on target 'rtt/42796992', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1952 10:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1953 10:31:51: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1954 10:31:51: Win32Input8: DirectInput Activation Starts 1955 10:31:51: Win32Input8: Establishing keyboard input. 1956 10:31:51: Win32Input8: Keyboard input established. 1957 10:31:51: Win32Input8: Initializing mouse input in immediate mode. 1958 10:31:51: Win32Input8: Mouse input in immediate mode initialized. 1959 10:31:51: Win32Input8: DirectInput OK. 1960 10:31:51: Creating viewport on target 'rtt/42808608', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1961 10:31:51: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1962 10:31:51: Creating viewport on target 'rtt/42808480', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1963 10:31:51: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1964 10:31:51: Creating viewport on target 'rtt/42868544', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1965 10:31:51: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 1966 10:31:51: Creating viewport on target 'rtt/42868608', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1967 10:31:51: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1968 10:31:51: 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. 1969 10:31:51: 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. 1970 10:32:45: Unregistering ResourceManager for type BspLevel 1971 10:32:45: Render Target 'rtt/42868608' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1972 10:32:45: Render Target 'rtt/42868544' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1973 10:32:45: Render Target 'rtt/42808480' Average FPS: 1.78232 Best FPS: 6.77966 Worst FPS: 0.0550509 1974 10:32:45: Render Target 'rtt/42808608' Average FPS: 1.78232 Best FPS: 6.77966 Worst FPS: 0.0550494 1975 10:32:45: Render Target 'rtt/42796672' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 1976 10:32:45: Render Target 'rtt/42796736' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 1977 10:32:45: Render Target 'rtt/42796800' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 1978 10:32:45: Render Target 'rtt/42796864' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 1979 10:32:45: Render Target 'rtt/42796928' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 1980 10:32:45: Render Target 'rtt/42796992' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 1981 10:32:45: Render Target 'rtt/42795328' Average FPS: 0.0827815 Best FPS: 0.0827815 Worst FPS: 0.0827815 1982 10:32:45: Render Target 'rtt/42795392' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 1983 10:32:45: Render Target 'rtt/42795456' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 1984 10:32:45: Render Target 'rtt/42795520' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 1985 10:32:45: Render Target 'rtt/42795584' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 1986 10:32:45: Render Target 'rtt/42795648' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 1987 10:32:45: Render Target 'rtt/42793952' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1988 10:32:45: Render Target 'rtt/42794016' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1989 10:32:45: Render Target 'rtt/42794080' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1990 10:32:45: Render Target 'rtt/42794144' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1991 10:32:45: Render Target 'rtt/42794208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1992 10:32:45: Render Target 'rtt/42794272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1993 10:32:45: Render Target 'rtt/42792672' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1994 10:32:45: Render Target 'rtt/42792736' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1995 10:32:45: Render Target 'rtt/42792800' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1996 10:32:45: Render Target 'rtt/42792864' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1997 10:32:45: Render Target 'rtt/42792928' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1998 10:32:45: Render Target 'rtt/42792992' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1999 10:32:45: *-*-* OGRE Shutdown 2000 10:32:45: Unregistering ResourceManager for type Compositor 2001 10:32:45: Unregistering ResourceManager for type Font 2002 10:32:45: Unregistering ResourceManager for type Skeleton 2003 10:32:45: Unregistering ResourceManager for type Mesh 2004 10:32:45: Unregistering ResourceManager for type HighLevelGpuProgram 2005 10:32:45: Unloading library .\Plugin_CgProgramManager 2006 10:32:45: Unloading library .\Plugin_OctreeSceneManager 2007 10:32:45: Unloading library .\Plugin_BSPSceneManager 2008 10:32:45: Unloading library .\Plugin_ParticleFX 2009 10:32:45: Render Target 'OGRE Render Window' Average FPS: 1.56517 Best FPS: 7.60135 Worst FPS: 0.0275179 2010 10:32:45: D3D9 : Shutting down cleanly. 2011 10:32:45: Unregistering ResourceManager for type Texture 2012 10:32:45: Unregistering ResourceManager for type GpuProgram 2013 10:32:45: D3D9 : Direct3D9 Rendering Subsystem destroyed. 2014 10:32:45: Unloading library .\RenderSystem_Direct3D9 2015 10:32:45: Unregistering ResourceManager for type Material 2016 10:32:45: Unloading library OgrePlatform.dll
Note: See TracChangeset
for help on using the changeset viewer.