Changeset 1885 for GTP/trunk/App/Demos/Illum
- Timestamp:
- 12/13/06 16:36:29 (18 years ago)
- Location:
- GTP/trunk/App/Demos/Illum/Ogre
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/MetalTeapot.hlsl
r1882 r1885 333 333 334 334 float4 Color = float4(0, 0, 0, 0); 335 Color = float4( length(IN.cPos), 0,0,length(IN.cPos));335 Color = float4(1.0/length(IN.cPos), length(IN.cPos),0,0); 336 336 return Color; 337 337 } -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/MetalTeapotNew.hlsl
r1870 r1885 70 70 71 71 void linearSearch( float3 x, float3 R, float3 N, samplerCUBE mp, 72 float min, 72 73 out float3 p, 73 74 out float dl, … … 87 88 dt = max(dt, MIN_LIN_ITERATIONCOUNT); 88 89 dt = 1.0 / dt; 89 90 90 91 float t = 0.01;//dt; 92 if(min > length(x)) 93 { 94 float a = 1; 95 float b = 2 * dot(R, x); 96 float c = dot(x,x) - min * min; 97 98 float dis = b*b - 4*a*c; 99 float t1 = (-b + sqrt(dis))/ 2 * a; 100 float t2 = (-b - sqrt(dis))/ 2 * a; 101 102 if(t1 > 0 && (t2 < 0 || t1 < t2)) 103 t = t1 / ( a + t1); 104 else if(t2 > 0) 105 t = t2 / ( a + t2); 106 } 107 91 108 float pa; 92 109 … … 156 173 samplerCUBE mp3Color, 157 174 samplerCUBE mp3Dist, 175 float min1, 176 float min2, 158 177 out float4 Il, out float3 Nl) 159 178 { 160 179 float dl1 = 0, dp1, llp1, ppp1; 161 180 float3 p1; 162 linearSearch(x, R, N, mp1, p1, dl1, dp1, llp1, ppp1);181 linearSearch(x, R, N, mp1, min1, p1, dl1, dp1, llp1, ppp1); 163 182 float dl2 = 0, dp2, llp2, ppp2; 164 183 float3 p2; 165 linearSearch(x, R, N, mp2, p2, dl2, dp2, llp2, ppp2);184 linearSearch(x, R, N, mp2, min2, p2, dl2, dp2, llp2, ppp2); 166 185 167 186 bool valid1 = dot(p1,p1) != 0; … … 173 192 if(!valid1 && ! valid2) 174 193 { 175 linearSearch(x, R, N, mp3Dist, p, dl, dp, llp, ppp);194 linearSearch(x, R, N, mp3Dist, 0, p, dl, dp, llp, ppp); 176 195 Il.a = 1; 177 196 secantSearch(x, R, mp3Dist, dl, dp, llp, ppp, p); … … 232 251 uniform samplerCUBE NormDistMap2 : register(s3), 233 252 uniform float3 lastCenter, 234 uniform float refIndex) 253 uniform float refIndex, 254 float min1, 255 float min2 256 ) 235 257 { 236 258 float4 Color = float4(1,1,1,1); … … 254 276 float3 Nl; 255 277 float4 Il; 256 float3 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, Il, Nl);278 float3 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 257 279 if(Il.a == 0) 258 280 Il = readCubeMap(CubeMap, l); … … 261 283 } 262 284 285 #define REFRACTION 0 263 286 264 287 float4 MultipleReflectionPS(VertOut IN, … … 269 292 uniform samplerCUBE NormDistMap2 : register(s3), 270 293 uniform float3 lastCenter, 271 uniform float refIndex) 294 uniform float refIndex, 295 float min1, 296 float min2) 272 297 { 273 298 float4 I = float4(0,0,0,0); … … 282 307 V = normalize(V); 283 308 float3 l; 284 float4 Iref r;309 float4 Irefl; 285 310 int depth = 0; 311 312 286 313 while(depth < MAX_RAY_DEPTH) 287 314 { 288 float3 R; 289 //R = normalize(reflect( V, N)); 290 291 292 float ri = refIndex; 293 294 if(dot(V,N) > 0) 295 { 296 ri = 1.0 / ri; 297 N = -N; 298 } 299 R = refract( V, N, ri); 300 if(dot(R,R) == 0) R = reflect( V, N); 301 302 303 float3 Nl; 304 float4 Il; 305 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, Il, Nl); 306 if(Il.a == 0) 307 { 308 depth += 1; 309 } 310 else 311 { 312 I = Il; 313 depth = MAX_RAY_DEPTH; 314 } 315 x = l; 316 N = normalize(Nl); 317 V = R; 318 } 319 if(I.a == 0) 320 I = readCubeMap(CubeMap, l); 321 Irefr = I; 322 323 float4 Irefl; 324 N = normalize(IN.mNormal); 325 x = IN.wPos - lastCenter; 326 V = (IN.wPos - cameraPos); 327 depth = 0; 328 while(depth < MAX_RAY_DEPTH) 329 { 330 float3 R; 315 float3 R; 331 316 R = normalize(reflect( V, N)); 332 317 333 318 float3 Nl; 334 319 float4 Il; 335 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, Il, Nl);320 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 336 321 if(Il.a == 0) 337 322 { … … 346 331 N = Nl; 347 332 V = R; 333 348 334 } 335 if(I.a == 0) 336 I = readCubeMap(CubeMap, l); 337 Irefl = I; 349 338 350 if(I.a == 0) 351 I = readCubeMap(CubeMap, l); 352 Irefl = I; 353 354 I = Irefl * F + (1.0 - F) * Irefr; 339 if(REFRACTION) 340 { 341 float4 Irefr; 342 N = normalize(IN.mNormal); 343 x = IN.wPos - lastCenter; 344 V = (IN.wPos - cameraPos); 345 depth = 0; 346 while(depth < MAX_RAY_DEPTH) 347 { 348 float3 R; 349 //R = normalize(reflect( V, N)); 350 351 352 float ri = refIndex; 353 354 if(dot(V,N) > 0) 355 { 356 ri = 1.0 / ri; 357 N = -N; 358 } 359 R = refract( V, N, ri); 360 if(dot(R,R) == 0) R = reflect( V, N); 361 362 363 float3 Nl; 364 float4 Il; 365 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 366 if(Il.a == 0) 367 { 368 depth += 1; 369 } 370 else 371 { 372 I = Il; 373 depth = MAX_RAY_DEPTH; 374 } 375 x = l; 376 N = normalize(Nl); 377 V = R; 378 } 379 380 if(I.a == 0) 381 I = readCubeMap(CubeMap, l); 382 Irefr = I; 383 384 I = Irefl * F + (1.0 - F) * Irefr; 385 } 355 386 return I; 356 387 } … … 364 395 uniform float3 lastCenter, 365 396 uniform float SingleBounce, 366 uniform float refIndex):COLOR 367 { 397 uniform float refIndex, 398 uniform float4 min1, 399 uniform float4 min2 400 ):COLOR 401 { 402 min1.x = 1.0 / min1.x; 403 min2.x = 1.0 / min2.x; 368 404 float4 Color = 1.0; 369 405 if(SingleBounce == 1) 370 Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex );406 Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min1.x, min2.x); 371 407 else 372 Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex );408 Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min1.x, min2.x); 373 409 374 410 return Color; -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/MetalTeapot.material
r1882 r1885 131 131 { 132 132 cull_hardware clockwise 133 scene_blend m in134 scene_blend_alpha max133 scene_blend max 134 depth_test off 135 135 136 136 vertex_program_ref DefaultVS … … 155 155 { 156 156 cull_hardware anticlockwise 157 scene_blend m in158 scene_blend_alpha max157 scene_blend max 158 depth_test off 159 159 160 160 vertex_program_ref DefaultVS … … 213 213 layer 1 214 214 texture_unit_id 2 215 get_minmax true 216 min_var_name min1 215 217 update_interval 0 216 218 distance_calc false … … 226 228 layer 2 227 229 texture_unit_id 3 230 get_minmax true 231 min_var_name min2 228 232 update_interval 0 229 233 distance_calc false … … 233 237 render_self true 234 238 self_material NormalDistanceCW 235 } 236 RenderTechnique ColorCubeMap 237 { 238 resolution 1 239 layer 3 240 texture_unit_id 4 241 update_interval 0 242 distance_calc false 243 face_angle_calc false 244 update_all_face true 245 render_env false 246 render_self true 247 self_material DistanceMinMaxCCW 248 } 249 RenderTechnique ColorCubeMap 250 { 251 resolution 1 252 layer 4 253 texture_unit_id 5 254 update_interval 0 255 distance_calc false 256 face_angle_calc false 257 update_all_face true 258 render_env false 259 render_self true 260 self_material DistanceMinMaxCW 261 } 262 239 } 263 240 } 264 241 vertex_program_ref DefaultVS -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log
r1879 r1885 1 14:59:06: Creating resource group General 2 14:59:06: Creating resource group Internal 3 14:59:06: Creating resource group Autodetect 4 14:59:06: Registering ResourceManager for type Material 5 14:59:06: Registering ResourceManager for type Mesh 6 14:59:06: Registering ResourceManager for type Skeleton 7 14:59:06: MovableObjectFactory for type 'ParticleSystem' registered. 8 14:59:06: Loading library OgrePlatform_d.dll 9 14:59:06: OverlayElementFactory for type Panel registered. 10 14:59:06: OverlayElementFactory for type BorderPanel registered. 11 14:59:06: OverlayElementFactory for type TextArea registered. 12 14:59:06: Registering ResourceManager for type Font 13 14:59:06: ArchiveFactory for archive type FileSystem registered. 14 14:59:06: ArchiveFactory for archive type Zip registered. 15 14:59:06: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 14:59:06: 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 14:59:06: Registering ResourceManager for type HighLevelGpuProgram 18 14:59:06: Registering ResourceManager for type Compositor 19 14:59:06: MovableObjectFactory for type 'Entity' registered. 20 14:59:06: MovableObjectFactory for type 'Light' registered. 21 14:59:06: MovableObjectFactory for type 'BillboardSet' registered. 22 14:59:06: MovableObjectFactory for type 'ManualObject' registered. 23 14:59:06: MovableObjectFactory for type 'BillboardChain' registered. 24 14:59:06: MovableObjectFactory for type 'RibbonTrail' registered. 25 14:59:06: Loading library .\RenderSystem_Direct3D9 26 14:59:06: D3D9 : Direct3D9 Rendering Subsystem created. 27 14:59:06: D3D9: Driver Detection Starts 28 14:59:06: D3D9: Driver Detection Ends 29 14:59:06: Loading library .\Plugin_ParticleFX 30 14:59:06: Particle Emitter Type 'Point' registered 31 14:59:06: Particle Emitter Type 'Box' registered 32 14:59:06: Particle Emitter Type 'Ellipsoid' registered 33 14:59:06: Particle Emitter Type 'Cylinder' registered 34 14:59:06: Particle Emitter Type 'Ring' registered 35 14:59:06: Particle Emitter Type 'HollowEllipsoid' registered 36 14:59:06: Particle Affector Type 'LinearForce' registered 37 14:59:06: Particle Affector Type 'ColourFader' registered 38 14:59:06: Particle Affector Type 'ColourFader2' registered 39 14:59:06: Particle Affector Type 'ColourImage' registered 40 14:59:06: Particle Affector Type 'ColourInterpolator' registered 41 14:59:06: Particle Affector Type 'Scaler' registered 42 14:59:06: Particle Affector Type 'Rotator' registered 43 14:59:06: Particle Affector Type 'DirectionRandomiser' registered 44 14:59:06: Particle Affector Type 'DeflectorPlane' registered 45 14:59:06: Loading library .\Plugin_BSPSceneManager 46 14:59:06: Registering ResourceManager for type BspLevel 47 14:59:06: Loading library .\Plugin_OctreeSceneManager 48 14:59:06: Loading library .\Plugin_CgProgramManager 49 14:59:06: *-*-* OGRE Initialising 50 14:59:06: *-*-* Version 1.2.0 (Dagon) 51 14:59:06: Creating resource group Bootstrap 52 14:59:06: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 14:59:06: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 14:59:06: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 14:59:06: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 14:59:06: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 14:59:06: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 14:59:06: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 14:59:06: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 14:59:06: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 14:59:06: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 14:59:06: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 14:59:06: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 14:59:06: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 14:59:06: D3D9 : RenderSystem Option: Anti aliasing = None 66 14:59:06: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 14:59:06: D3D9 : RenderSystem Option: Full Screen = No 68 14:59:06: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 69 14:59:06: D3D9 : RenderSystem Option: VSync = No 70 14:59:06: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 14:59:07: D3D9 : Subsystem Initialising 72 14:59:07: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 14:59:07: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 14:59:07: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 14:59:07: Registering ResourceManager for type Texture 76 14:59:07: Registering ResourceManager for type GpuProgram 77 14:59:07: RenderSystem capabilities 78 14:59:07: ------------------------- 79 14:59:07: * Hardware generation of mipmaps: yes 80 14:59:07: * Texture blending: yes 81 14:59:07: * Anisotropic texture filtering: yes 82 14:59:07: * Dot product texture operation: yes 83 14:59:07: * Cube mapping: yes 84 14:59:07: * Hardware stencil buffer: yes 85 14:59:07: - Stencil depth: 8 86 14:59:07: - Two sided stencil support: yes 87 14:59:07: - Wrap stencil values: yes 88 14:59:07: * Hardware vertex / index buffers: yes 89 14:59:07: * Vertex programs: yes 90 14:59:07: - Max vertex program version: vs_3_0 91 14:59:07: * Fragment programs: yes 92 14:59:07: - Max fragment program version: ps_3_0 93 14:59:07: * Texture Compression: yes 94 14:59:07: - DXT: yes 95 14:59:07: - VTC: no 96 14:59:07: * Scissor Rectangle: yes 97 14:59:07: * Hardware Occlusion Query: yes 98 14:59:07: * User clip planes: yes 99 14:59:07: * VET_UBYTE4 vertex element type: yes 100 14:59:07: * Infinite far plane projection: yes 101 14:59:07: * Hardware render-to-texture: yes 102 14:59:07: * Floating point textures: yes 103 14:59:07: * Non-power-of-two textures: yes 104 14:59:07: * Volume textures: yes 105 14:59:07: * Multiple Render Targets: 4 106 14:59:07: * Max Point Size: 8192 107 14:59:07: *************************************** 108 14:59:07: *** D3D9 : Subsystem Initialised OK *** 109 14:59:07: *************************************** 110 14:59:07: ResourceBackgroundQueue - threading disabled 111 14:59:07: Particle Renderer Type 'billboard' registered 112 14:59:07: Particle Renderer Type 'sprite' registered 113 14:59:07: TerrainSceneManager: Registered a new PageSource for type Heightmap 114 14:59:07: 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 115 14:59:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 116 14:59:07: Parsing scripts for resource group Autodetect 117 14:59:07: Finished parsing scripts for resource group Autodetect 118 14:59:07: Parsing scripts for resource group Bootstrap 119 14:59:07: Parsing script OgreCore.material 120 14:59:07: Parsing script OgreProfiler.material 121 14:59:07: Parsing script Ogre.fontdef 122 14:59:07: Parsing script OgreDebugPanel.overlay 123 14:59:07: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 124 14:59:07: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 125 14:59:07: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 126 14:59:07: Font TrebuchetMSBoldusing texture size 512x512 127 14:59:07: Info: Freetype returned null for character 160 in font TrebuchetMSBold 128 14:59:07: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 129 14:59:07: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 130 14:59:07: Parsing script OgreLoadingPanel.overlay 131 14:59:07: Finished parsing scripts for resource group Bootstrap 132 14:59:07: Parsing scripts for resource group General 133 14:59:07: Parsing script GameTools.program 134 14:59:07: Parsing script atlascube.material 135 14:59:07: Parsing script colorcube.material 136 14:59:07: Parsing script difflab.material 137 14:59:08: An exception has been thrown! 1 15:08:26: Creating resource group General 2 15:08:26: Creating resource group Internal 3 15:08:26: Creating resource group Autodetect 4 15:08:26: Registering ResourceManager for type Material 5 15:08:26: Registering ResourceManager for type Mesh 6 15:08:26: Registering ResourceManager for type Skeleton 7 15:08:26: MovableObjectFactory for type 'ParticleSystem' registered. 8 15:08:26: Loading library OgrePlatform_d.dll 9 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 Font 13 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 2005 16 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 raw 17 15:08:26: Registering ResourceManager for type HighLevelGpuProgram 18 15:08:26: Registering ResourceManager for type Compositor 19 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_Direct3D9 26 15:08:26: D3D9 : Direct3D9 Rendering Subsystem created. 27 15:08:26: D3D9: Driver Detection Starts 28 15:08:26: D3D9: Driver Detection Ends 29 15:08:26: Loading library .\Plugin_ParticleFX 30 15:08:26: Particle Emitter Type 'Point' registered 31 15:08:26: Particle Emitter Type 'Box' registered 32 15:08:26: Particle Emitter Type 'Ellipsoid' registered 33 15:08:26: Particle Emitter Type 'Cylinder' registered 34 15:08:26: Particle Emitter Type 'Ring' registered 35 15:08:26: Particle Emitter Type 'HollowEllipsoid' registered 36 15:08:26: Particle Affector Type 'LinearForce' registered 37 15:08:26: Particle Affector Type 'ColourFader' registered 38 15:08:26: Particle Affector Type 'ColourFader2' registered 39 15:08:26: Particle Affector Type 'ColourImage' registered 40 15:08:26: Particle Affector Type 'ColourInterpolator' registered 41 15:08:26: Particle Affector Type 'Scaler' registered 42 15:08:26: Particle Affector Type 'Rotator' registered 43 15:08:26: Particle Affector Type 'DirectionRandomiser' registered 44 15:08:26: Particle Affector Type 'DeflectorPlane' registered 45 15:08:26: Loading library .\Plugin_BSPSceneManager 46 15:08:26: Registering ResourceManager for type BspLevel 47 15:08:26: Loading library .\Plugin_OctreeSceneManager 48 15:08:26: Loading library .\Plugin_CgProgramManager 49 15:08:26: *-*-* OGRE Initialising 50 15:08:26: *-*-* Version 1.2.0 (Dagon) 51 15:08:26: Creating resource group Bootstrap 52 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 = No 65 15:08:26: D3D9 : RenderSystem Option: Anti aliasing = None 66 15:08:26: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 15:08:26: D3D9 : RenderSystem Option: Full Screen = No 68 15:08:26: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 69 15:08:26: D3D9 : RenderSystem Option: VSync = No 70 15:08:26: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 15:08:26: D3D9 : Subsystem Initialising 72 15:08:26: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 15:08:26: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 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 Texture 76 15:08:26: Registering ResourceManager for type GpuProgram 77 15:08:26: RenderSystem capabilities 78 15:08:26: ------------------------- 79 15:08:26: * Hardware generation of mipmaps: yes 80 15:08:26: * Texture blending: yes 81 15:08:26: * Anisotropic texture filtering: yes 82 15:08:26: * Dot product texture operation: yes 83 15:08:26: * Cube mapping: yes 84 15:08:26: * Hardware stencil buffer: yes 85 15:08:26: - Stencil depth: 8 86 15:08:26: - Two sided stencil support: yes 87 15:08:26: - Wrap stencil values: yes 88 15:08:26: * Hardware vertex / index buffers: yes 89 15:08:26: * Vertex programs: yes 90 15:08:26: - Max vertex program version: vs_3_0 91 15:08:26: * Fragment programs: yes 92 15:08:26: - Max fragment program version: ps_3_0 93 15:08:26: * Texture Compression: yes 94 15:08:26: - DXT: yes 95 15:08:26: - VTC: no 96 15:08:26: * Scissor Rectangle: yes 97 15:08:26: * Hardware Occlusion Query: yes 98 15:08:26: * User clip planes: yes 99 15:08:26: * VET_UBYTE4 vertex element type: yes 100 15:08:26: * Infinite far plane projection: yes 101 15:08:26: * Hardware render-to-texture: yes 102 15:08:26: * Floating point textures: yes 103 15:08:26: * Non-power-of-two textures: yes 104 15:08:26: * Volume textures: yes 105 15:08:26: * Multiple Render Targets: 4 106 15:08:26: * Max Point Size: 8192 107 15:08:26: *************************************** 108 15:08:26: *** D3D9 : Subsystem Initialised OK *** 109 15:08:26: *************************************** 110 15:08:26: ResourceBackgroundQueue - threading disabled 111 15:08:26: Particle Renderer Type 'billboard' registered 112 15:08:26: Particle Renderer Type 'sprite' registered 113 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: 0 114 15:08:26: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 15:08:26: Parsing scripts for resource group Autodetect 116 15:08:26: Finished parsing scripts for resource group Autodetect 117 15:08:26: Parsing scripts for resource group Bootstrap 118 15:08:26: Parsing script OgreCore.material 119 15:08:26: Parsing script OgreProfiler.material 120 15:08:26: Parsing script Ogre.fontdef 121 15:08:26: Parsing script OgreDebugPanel.overlay 122 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 512x512 126 15:08:27: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 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.overlay 130 15:08:27: Finished parsing scripts for resource group Bootstrap 131 15:08:27: Parsing scripts for resource group General 132 15:08:27: Parsing script GameTools.program 133 15:08:27: Parsing script atlascube.material 134 15:08:27: Parsing script colorcube.material 135 15:08:27: Parsing script difflab.material 136 15:08:27: An exception has been thrown! 138 137 139 138 ----------------------------------- … … 146 145 Line: 779 147 146 Stack unwinding: <<beginning of stack>> 148 1 4:59:08: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 149 148 150 149 ----------------------------------- … … 157 156 Line: 779 158 157 Stack unwinding: <<beginning of stack>> 159 1 4:59:08: An exception has been thrown!158 15:08:27: An exception has been thrown! 160 159 161 160 ----------------------------------- … … 168 167 Line: 779 169 168 Stack unwinding: <<beginning of stack>> 170 1 4:59:08: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 171 170 172 171 ----------------------------------- … … 179 178 Line: 779 180 179 Stack unwinding: <<beginning of stack>> 181 1 4:59:08: An exception has been thrown!180 15:08:27: An exception has been thrown! 182 181 183 182 ----------------------------------- … … 190 189 Line: 779 191 190 Stack unwinding: <<beginning of stack>> 192 1 4:59:08: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 193 192 194 193 ----------------------------------- … … 201 200 Line: 779 202 201 Stack unwinding: <<beginning of stack>> 203 1 4:59:08: An exception has been thrown!202 15:08:27: An exception has been thrown! 204 203 205 204 ----------------------------------- … … 212 211 Line: 779 213 212 Stack unwinding: <<beginning of stack>> 214 1 4:59:08: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 215 214 216 215 ----------------------------------- … … 223 222 Line: 779 224 223 Stack unwinding: <<beginning of stack>> 225 1 4:59:08: An exception has been thrown!224 15:08:27: An exception has been thrown! 226 225 227 226 ----------------------------------- … … 234 233 Line: 779 235 234 Stack unwinding: <<beginning of stack>> 236 1 4:59:08: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 237 236 238 237 ----------------------------------- … … 245 244 Line: 779 246 245 Stack unwinding: <<beginning of stack>> 247 1 4:59:08: An exception has been thrown!246 15:08:27: An exception has been thrown! 248 247 249 248 ----------------------------------- … … 256 255 Line: 779 257 256 Stack unwinding: <<beginning of stack>> 258 1 4:59:08: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 259 258 260 259 ----------------------------------- … … 267 266 Line: 779 268 267 Stack unwinding: <<beginning of stack>> 269 1 4:59:08: An exception has been thrown!268 15:08:27: An exception has been thrown! 270 269 271 270 ----------------------------------- … … 278 277 Line: 779 279 278 Stack unwinding: <<beginning of stack>> 280 1 4:59:08: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 281 280 282 281 ----------------------------------- … … 289 288 Line: 779 290 289 Stack unwinding: <<beginning of stack>> 291 1 4:59:08: An exception has been thrown!290 15:08:27: An exception has been thrown! 292 291 293 292 ----------------------------------- … … 300 299 Line: 779 301 300 Stack unwinding: <<beginning of stack>> 302 1 4:59:08: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 303 302 304 303 ----------------------------------- … … 311 310 Line: 779 312 311 Stack unwinding: <<beginning of stack>> 313 1 4:59:08: An exception has been thrown!312 15:08:27: An exception has been thrown! 314 313 315 314 ----------------------------------- … … 322 321 Line: 779 323 322 Stack unwinding: <<beginning of stack>> 324 1 4:59:08: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 325 324 326 325 ----------------------------------- … … 333 332 Line: 779 334 333 Stack unwinding: <<beginning of stack>> 335 1 4:59:08: An exception has been thrown!334 15:08:27: An exception has been thrown! 336 335 337 336 ----------------------------------- … … 344 343 Line: 779 345 344 Stack unwinding: <<beginning of stack>> 346 1 4:59:08: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 347 346 348 347 ----------------------------------- … … 355 354 Line: 779 356 355 Stack unwinding: <<beginning of stack>> 357 1 4:59:08: An exception has been thrown!356 15:08:27: An exception has been thrown! 358 357 359 358 ----------------------------------- … … 366 365 Line: 779 367 366 Stack unwinding: <<beginning of stack>> 368 1 4:59:08: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 369 368 370 369 ----------------------------------- … … 377 376 Line: 779 378 377 Stack unwinding: <<beginning of stack>> 379 1 4:59:08: An exception has been thrown!378 15:08:27: An exception has been thrown! 380 379 381 380 ----------------------------------- … … 388 387 Line: 779 389 388 Stack unwinding: <<beginning of stack>> 390 1 4:59:08: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 391 390 392 391 ----------------------------------- … … 399 398 Line: 779 400 399 Stack unwinding: <<beginning of stack>> 401 1 4:59:08: An exception has been thrown!400 15:08:27: An exception has been thrown! 402 401 403 402 ----------------------------------- … … 410 409 Line: 779 411 410 Stack unwinding: <<beginning of stack>> 412 1 4:59:08: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 413 412 414 413 ----------------------------------- … … 421 420 Line: 779 422 421 Stack unwinding: <<beginning of stack>> 423 1 4:59:08: An exception has been thrown!422 15:08:27: An exception has been thrown! 424 423 425 424 ----------------------------------- … … 432 431 Line: 779 433 432 Stack unwinding: <<beginning of stack>> 434 1 4:59:08: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 435 434 436 435 ----------------------------------- … … 443 442 Line: 779 444 443 Stack unwinding: <<beginning of stack>> 445 1 4:59:08: An exception has been thrown!444 15:08:27: An exception has been thrown! 446 445 447 446 ----------------------------------- … … 454 453 Line: 779 455 454 Stack unwinding: <<beginning of stack>> 456 1 4:59:08: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 457 456 458 457 ----------------------------------- … … 465 464 Line: 779 466 465 Stack unwinding: <<beginning of stack>> 467 1 4:59:08: An exception has been thrown!466 15:08:27: An exception has been thrown! 468 467 469 468 ----------------------------------- … … 476 475 Line: 779 477 476 Stack unwinding: <<beginning of stack>> 478 1 4:59:08: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 479 478 480 479 ----------------------------------- … … 487 486 Line: 779 488 487 Stack unwinding: <<beginning of stack>> 489 1 4:59:08: An exception has been thrown!488 15:08:27: An exception has been thrown! 490 489 491 490 ----------------------------------- … … 498 497 Line: 779 499 498 Stack unwinding: <<beginning of stack>> 500 1 4:59:08: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 501 500 502 501 ----------------------------------- … … 509 508 Line: 779 510 509 Stack unwinding: <<beginning of stack>> 511 1 4:59:08: An exception has been thrown!510 15:08:27: An exception has been thrown! 512 511 513 512 ----------------------------------- … … 520 519 Line: 779 521 520 Stack unwinding: <<beginning of stack>> 522 1 4:59:08: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 523 522 524 523 ----------------------------------- … … 531 530 Line: 779 532 531 Stack unwinding: <<beginning of stack>> 533 1 4:59:08: An exception has been thrown!532 15:08:27: An exception has been thrown! 534 533 535 534 ----------------------------------- … … 542 541 Line: 779 543 542 Stack unwinding: <<beginning of stack>> 544 1 4:59:08: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 545 544 546 545 ----------------------------------- … … 553 552 Line: 779 554 553 Stack unwinding: <<beginning of stack>> 555 1 4:59:08: An exception has been thrown!554 15:08:27: An exception has been thrown! 556 555 557 556 ----------------------------------- … … 564 563 Line: 779 565 564 Stack unwinding: <<beginning of stack>> 566 1 4:59:08: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 567 566 568 567 ----------------------------------- … … 575 574 Line: 779 576 575 Stack unwinding: <<beginning of stack>> 577 1 4:59:08: An exception has been thrown!576 15:08:27: An exception has been thrown! 578 577 579 578 ----------------------------------- … … 586 585 Line: 779 587 586 Stack unwinding: <<beginning of stack>> 588 1 4:59:08: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!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! 589 588 590 589 ----------------------------------- … … 597 596 Line: 779 598 597 Stack unwinding: <<beginning of stack>> 599 1 4:59:08: Parsing script diffscene.material600 1 4:59:08: An exception has been thrown!598 15:08:27: Parsing script diffscene.material 599 15:08:27: An exception has been thrown! 601 600 602 601 ----------------------------------- … … 609 608 Line: 779 610 609 Stack unwinding: <<beginning of stack>> 611 1 4:59:08: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!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! 612 611 613 612 ----------------------------------- … … 620 619 Line: 779 621 620 Stack unwinding: <<beginning of stack>> 622 1 4:59:08: An exception has been thrown!621 15:08:27: An exception has been thrown! 623 622 624 623 ----------------------------------- … … 631 630 Line: 779 632 631 Stack unwinding: <<beginning of stack>> 633 1 4:59:08: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!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! 634 633 635 634 ----------------------------------- … … 642 641 Line: 779 643 642 Stack unwinding: <<beginning of stack>> 644 1 4:59:08: An exception has been thrown!643 15:08:27: An exception has been thrown! 645 644 646 645 ----------------------------------- … … 653 652 Line: 779 654 653 Stack unwinding: <<beginning of stack>> 655 1 4:59:08: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!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! 656 655 657 656 ----------------------------------- … … 664 663 Line: 779 665 664 Stack unwinding: <<beginning of stack>> 666 1 4:59:08: An exception has been thrown!665 15:08:27: An exception has been thrown! 667 666 668 667 ----------------------------------- … … 675 674 Line: 779 676 675 Stack unwinding: <<beginning of stack>> 677 1 4:59:08: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!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! 678 677 679 678 ----------------------------------- … … 686 685 Line: 779 687 686 Stack unwinding: <<beginning of stack>> 688 1 4:59:08: An exception has been thrown!687 15:08:27: An exception has been thrown! 689 688 690 689 ----------------------------------- … … 697 696 Line: 779 698 697 Stack unwinding: <<beginning of stack>> 699 1 4:59:08: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!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! 700 699 701 700 ----------------------------------- … … 708 707 Line: 779 709 708 Stack unwinding: <<beginning of stack>> 710 1 4:59:08: An exception has been thrown!709 15:08:27: An exception has been thrown! 711 710 712 711 ----------------------------------- … … 719 718 Line: 779 720 719 Stack unwinding: <<beginning of stack>> 721 1 4:59:08: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!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! 722 721 723 722 ----------------------------------- … … 730 729 Line: 779 731 730 Stack unwinding: <<beginning of stack>> 732 1 4:59:08: An exception has been thrown!731 15:08:27: An exception has been thrown! 733 732 734 733 ----------------------------------- … … 741 740 Line: 779 742 741 Stack unwinding: <<beginning of stack>> 743 1 4:59:08: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!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! 744 743 745 744 ----------------------------------- … … 752 751 Line: 779 753 752 Stack unwinding: <<beginning of stack>> 754 1 4:59:08: An exception has been thrown!753 15:08:27: An exception has been thrown! 755 754 756 755 ----------------------------------- … … 763 762 Line: 779 764 763 Stack unwinding: <<beginning of stack>> 765 1 4:59:08: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!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! 766 765 767 766 ----------------------------------- … … 774 773 Line: 779 775 774 Stack unwinding: <<beginning of stack>> 776 1 4:59:08: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857777 1 4:59:08: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857778 1 4:59:08: Parsing script Diffuse.material779 1 4:59:08: An exception has been thrown!775 15:08:27: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 776 15:08:27: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 777 15:08:27: Parsing script Diffuse.material 778 15:08:28: An exception has been thrown! 780 779 781 780 ----------------------------------- … … 788 787 Line: 779 789 788 Stack unwinding: <<beginning of stack>> 790 1 4:59:08: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!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! 791 790 792 791 ----------------------------------- … … 799 798 Line: 779 800 799 Stack unwinding: <<beginning of stack>> 801 1 4:59:09: An exception has been thrown!800 15:08:28: An exception has been thrown! 802 801 803 802 ----------------------------------- … … 810 809 Line: 779 811 810 Stack unwinding: <<beginning of stack>> 812 1 4:59:09: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!811 15:08:28: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 813 812 814 813 ----------------------------------- … … 821 820 Line: 779 822 821 Stack unwinding: <<beginning of stack>> 823 1 4:59:13: An exception has been thrown!822 15:08:32: An exception has been thrown! 824 823 825 824 ----------------------------------- … … 832 831 Line: 779 833 832 Stack unwinding: <<beginning of stack>> 834 1 4:59:13: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown!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! 835 834 836 835 ----------------------------------- … … 843 842 Line: 779 844 843 Stack unwinding: <<beginning of stack>> 845 1 4:59:13: An exception has been thrown!844 15:08:32: An exception has been thrown! 846 845 847 846 ----------------------------------- … … 854 853 Line: 779 855 854 Stack unwinding: <<beginning of stack>> 856 1 4:59:13: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!855 15:08:32: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 857 856 858 857 ----------------------------------- … … 865 864 Line: 779 866 865 Stack unwinding: <<beginning of stack>> 867 1 4:59:13: Parsing script EnvMetals.material868 1 4:59:13: An exception has been thrown!866 15:08:32: Parsing script EnvMetals.material 867 15:08:32: An exception has been thrown! 869 868 870 869 ----------------------------------- … … 877 876 Line: 779 878 877 Stack unwinding: <<beginning of stack>> 879 1 4:59:13: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!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! 880 879 881 880 ----------------------------------- … … 888 887 Line: 779 889 888 Stack unwinding: <<beginning of stack>> 890 1 4:59:13: An exception has been thrown!889 15:08:32: An exception has been thrown! 891 890 892 891 ----------------------------------- … … 899 898 Line: 779 900 899 Stack unwinding: <<beginning of stack>> 901 1 4:59:13: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!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! 902 901 903 902 ----------------------------------- … … 910 909 Line: 779 911 910 Stack unwinding: <<beginning of stack>> 912 1 4:59:13: An exception has been thrown!911 15:08:32: An exception has been thrown! 913 912 914 913 ----------------------------------- … … 921 920 Line: 779 922 921 Stack unwinding: <<beginning of stack>> 923 1 4:59:13: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!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! 924 923 925 924 ----------------------------------- … … 932 931 Line: 779 933 932 Stack unwinding: <<beginning of stack>> 934 1 4:59:13: An exception has been thrown!933 15:08:32: An exception has been thrown! 935 934 936 935 ----------------------------------- … … 943 942 Line: 779 944 943 Stack unwinding: <<beginning of stack>> 945 1 4:59:13: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!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! 946 945 947 946 ----------------------------------- … … 954 953 Line: 779 955 954 Stack unwinding: <<beginning of stack>> 956 1 4:59:13: Parsing script GameTools.material957 1 4:59:13: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5)958 1 4:59:13: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend959 1 4:59:13: An exception has been thrown!955 15:08:32: Parsing script GameTools.material 956 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_blend 958 15:08:32: An exception has been thrown! 960 959 961 960 ----------------------------------- … … 968 967 Line: 779 969 968 Stack unwinding: <<beginning of stack>> 970 1 4:59:13: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!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! 971 970 972 971 ----------------------------------- … … 979 978 Line: 779 980 979 Stack unwinding: <<beginning of stack>> 981 1 4:59:13: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend982 1 4:59:13: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.983 1 4:59:13: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend984 1 4:59:13: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend985 1 4:59:13: Parsing script GameTools_HPS.material986 1 4:59:13: An exception has been thrown!980 15:08:32: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 981 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_blend 983 15:08:32: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 984 15:08:32: Parsing script GameTools_HPS.material 985 15:08:32: An exception has been thrown! 987 986 988 987 ----------------------------------- … … 995 994 Line: 779 996 995 Stack unwinding: <<beginning of stack>> 997 1 4:59:13: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!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! 998 997 999 998 ----------------------------------- … … 1006 1005 Line: 779 1007 1006 Stack unwinding: <<beginning of stack>> 1008 1 4:59:13: An exception has been thrown!1007 15:08:32: An exception has been thrown! 1009 1008 1010 1009 ----------------------------------- … … 1017 1016 Line: 779 1018 1017 Stack unwinding: <<beginning of stack>> 1019 1 4:59:13: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1020 1019 1021 1020 ----------------------------------- … … 1028 1027 Line: 779 1029 1028 Stack unwinding: <<beginning of stack>> 1030 1 4:59:13: An exception has been thrown!1029 15:08:32: An exception has been thrown! 1031 1030 1032 1031 ----------------------------------- … … 1039 1038 Line: 779 1040 1039 Stack unwinding: <<beginning of stack>> 1041 1 4:59:13: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1042 1041 1043 1042 ----------------------------------- … … 1050 1049 Line: 779 1051 1050 Stack unwinding: <<beginning of stack>> 1052 1 4:59:13: An exception has been thrown!1051 15:08:32: An exception has been thrown! 1053 1052 1054 1053 ----------------------------------- … … 1061 1060 Line: 779 1062 1061 Stack unwinding: <<beginning of stack>> 1063 1 4:59:13: 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 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! 1064 1063 1065 1064 ----------------------------------- … … 1072 1071 Line: 779 1073 1072 Stack unwinding: <<beginning of stack>> 1074 1 4:59:13: An exception has been thrown!1073 15:08:32: An exception has been thrown! 1075 1074 1076 1075 ----------------------------------- … … 1083 1082 Line: 779 1084 1083 Stack unwinding: <<beginning of stack>> 1085 1 4:59:13: 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 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! 1086 1085 1087 1086 ----------------------------------- … … 1094 1093 Line: 779 1095 1094 Stack unwinding: <<beginning of stack>> 1096 1 4:59:13: An exception has been thrown!1095 15:08:32: An exception has been thrown! 1097 1096 1098 1097 ----------------------------------- … … 1105 1104 Line: 779 1106 1105 Stack unwinding: <<beginning of stack>> 1107 1 4:59:13: 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 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! 1108 1107 1109 1108 ----------------------------------- … … 1116 1115 Line: 779 1117 1116 Stack unwinding: <<beginning of stack>> 1118 1 4:59:13: An exception has been thrown!1117 15:08:32: An exception has been thrown! 1119 1118 1120 1119 ----------------------------------- … … 1127 1126 Line: 779 1128 1127 Stack unwinding: <<beginning of stack>> 1129 1 4:59:13: 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 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! 1130 1129 1131 1130 ----------------------------------- … … 1138 1137 Line: 779 1139 1138 Stack unwinding: <<beginning of stack>> 1140 1 4:59:13: An exception has been thrown!1139 15:08:32: An exception has been thrown! 1141 1140 1142 1141 ----------------------------------- … … 1149 1148 Line: 779 1150 1149 Stack unwinding: <<beginning of stack>> 1151 1 4:59:13: 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 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! 1152 1151 1153 1152 ----------------------------------- … … 1160 1159 Line: 779 1161 1160 Stack unwinding: <<beginning of stack>> 1162 14:59:13: An exception has been thrown! 1161 15:08:32: An exception has been thrown! 1162 1163 ----------------------------------- 1164 Details: 1165 ----------------------------------- 1166 Error #: 7 1167 Function: GpuProgramParameters::getParamIndex 1168 Description: Cannot find a parameter named worldViewProj. 1169 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1170 Line: 779 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! 1173 1174 ----------------------------------- 1175 Details: 1176 ----------------------------------- 1177 Error #: 7 1178 Function: GpuProgramParameters::getParamIndex 1179 Description: Cannot find a parameter named worldViewProj. 1180 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1181 Line: 779 1182 Stack unwinding: <<beginning of stack>> 1183 15:08:32: An exception has been thrown! 1184 1185 ----------------------------------- 1186 Details: 1187 ----------------------------------- 1188 Error #: 7 1189 Function: GpuProgramParameters::getParamIndex 1190 Description: Cannot find a parameter named Proj. 1191 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1192 Line: 779 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! 1195 1196 ----------------------------------- 1197 Details: 1198 ----------------------------------- 1199 Error #: 7 1200 Function: GpuProgramParameters::getParamIndex 1201 Description: Cannot find a parameter named Proj. 1202 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1203 Line: 779 1204 Stack unwinding: <<beginning of stack>> 1205 15:08:32: An exception has been thrown! 1163 1206 1164 1207 ----------------------------------- … … 1171 1214 Line: 779 1172 1215 Stack unwinding: <<beginning of stack>> 1173 1 4:59:13: Error in material HPS_SMOKE_L_Depth at line 154of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1174 1217 1175 1218 ----------------------------------- … … 1182 1225 Line: 779 1183 1226 Stack unwinding: <<beginning of stack>> 1184 1 4:59:13: An exception has been thrown!1227 15:08:32: An exception has been thrown! 1185 1228 1186 1229 ----------------------------------- … … 1193 1236 Line: 779 1194 1237 Stack unwinding: <<beginning of stack>> 1195 1 4:59:13: Error in material HPS_SMOKE_L_Depth_Illum at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1196 1239 1197 1240 ----------------------------------- … … 1204 1247 Line: 779 1205 1248 Stack unwinding: <<beginning of stack>> 1206 14:59:13: An exception has been thrown! 1207 1208 ----------------------------------- 1209 Details: 1210 ----------------------------------- 1211 Error #: 7 1212 Function: GpuProgramParameters::getParamIndex 1213 Description: Cannot find a parameter named Proj. 1214 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1215 Line: 779 1216 Stack unwinding: <<beginning of stack>> 1217 14:59:13: Error in material HPS_SMOKE_L_Depth_Illum at line 230 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 1218 1219 ----------------------------------- 1220 Details: 1221 ----------------------------------- 1222 Error #: 7 1223 Function: GpuProgramParameters::getParamIndex 1224 Description: Cannot find a parameter named Proj. 1225 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1226 Line: 779 1227 Stack unwinding: <<beginning of stack>> 1228 14:59:13: An exception has been thrown! 1229 1230 ----------------------------------- 1231 Details: 1232 ----------------------------------- 1233 Error #: 7 1234 Function: GpuProgramParameters::getParamIndex 1235 Description: Cannot find a parameter named farplane. 1236 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1237 Line: 779 1238 Stack unwinding: <<beginning of stack>> 1239 14:59:13: 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! 1240 1241 ----------------------------------- 1242 Details: 1243 ----------------------------------- 1244 Error #: 7 1245 Function: GpuProgramParameters::getParamIndex 1246 Description: Cannot find a parameter named farplane. 1247 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1248 Line: 779 1249 Stack unwinding: <<beginning of stack>> 1250 14:59:13: An exception has been thrown! 1249 15:08:32: Parsing script GlassHead.material 1250 15:08:32: An exception has been thrown! 1251 1252 ----------------------------------- 1253 Details: 1254 ----------------------------------- 1255 Error #: 7 1256 Function: GpuProgramParameters::getParamIndex 1257 Description: Cannot find a parameter named worldIT. 1258 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1259 Line: 779 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! 1262 1263 ----------------------------------- 1264 Details: 1265 ----------------------------------- 1266 Error #: 7 1267 Function: GpuProgramParameters::getParamIndex 1268 Description: Cannot find a parameter named worldIT. 1269 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1270 Line: 779 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! 1251 1274 1252 1275 ----------------------------------- … … 1259 1282 Line: 779 1260 1283 Stack unwinding: <<beginning of stack>> 1261 1 4:59:13: Error in material Smoke_IllumVolume at line 290 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1262 1285 1263 1286 ----------------------------------- … … 1270 1293 Line: 779 1271 1294 Stack unwinding: <<beginning of stack>> 1272 14:59:13: Parsing script GlassHead.material 1273 14:59:13: An exception has been thrown! 1274 1275 ----------------------------------- 1276 Details: 1277 ----------------------------------- 1278 Error #: 7 1279 Function: GpuProgramParameters::getParamIndex 1280 Description: Cannot find a parameter named worldIT. 1281 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1282 Line: 779 1283 Stack unwinding: <<beginning of stack>> 1284 14:59:13: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1285 1286 ----------------------------------- 1287 Details: 1288 ----------------------------------- 1289 Error #: 7 1290 Function: GpuProgramParameters::getParamIndex 1291 Description: Cannot find a parameter named worldIT. 1292 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1293 Line: 779 1294 Stack unwinding: <<beginning of stack>> 1295 14:59:13: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 1296 14:59:13: An exception has been thrown! 1295 15:08:32: An exception has been thrown! 1296 1297 ----------------------------------- 1298 Details: 1299 ----------------------------------- 1300 Error #: 7 1301 Function: GpuProgramParameters::getParamIndex 1302 Description: Cannot find a parameter named resolution. 1303 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1304 Line: 779 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! 1307 1308 ----------------------------------- 1309 Details: 1310 ----------------------------------- 1311 Error #: 7 1312 Function: GpuProgramParameters::getParamIndex 1313 Description: Cannot find a parameter named resolution. 1314 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1315 Line: 779 1316 Stack unwinding: <<beginning of stack>> 1317 15:08:32: An exception has been thrown! 1318 1319 ----------------------------------- 1320 Details: 1321 ----------------------------------- 1322 Error #: 7 1323 Function: GpuProgramParameters::getParamIndex 1324 Description: Cannot find a parameter named resolution. 1325 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1326 Line: 779 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! 1329 1330 ----------------------------------- 1331 Details: 1332 ----------------------------------- 1333 Error #: 7 1334 Function: GpuProgramParameters::getParamIndex 1335 Description: Cannot find a parameter named resolution. 1336 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1337 Line: 779 1338 Stack unwinding: <<beginning of stack>> 1339 15:08:33: Parsing script Glow.material 1340 15:08:33: An exception has been thrown! 1341 1342 ----------------------------------- 1343 Details: 1344 ----------------------------------- 1345 Error #: 7 1346 Function: GpuProgramParameters::getParamIndex 1347 Description: Cannot find a parameter named Gain. 1348 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1349 Line: 779 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! 1352 1353 ----------------------------------- 1354 Details: 1355 ----------------------------------- 1356 Error #: 7 1357 Function: GpuProgramParameters::getParamIndex 1358 Description: Cannot find a parameter named Gain. 1359 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1360 Line: 779 1361 Stack unwinding: <<beginning of stack>> 1362 15:08:33: Parsing script hangar.material 1363 15:08:33: Parsing script kupola.material 1364 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.material 1369 15:08:33: An exception has been thrown! 1370 1371 ----------------------------------- 1372 Details: 1373 ----------------------------------- 1374 Error #: 7 1375 Function: GpuProgramParameters::getParamIndex 1376 Description: Cannot find a parameter named refIndex. 1377 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1378 Line: 779 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! 1381 1382 ----------------------------------- 1383 Details: 1384 ----------------------------------- 1385 Error #: 7 1386 Function: GpuProgramParameters::getParamIndex 1387 Description: Cannot find a parameter named refIndex. 1388 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1389 Line: 779 1390 Stack unwinding: <<beginning of stack>> 1391 15:08:33: An exception has been thrown! 1392 1393 ----------------------------------- 1394 Details: 1395 ----------------------------------- 1396 Error #: 7 1397 Function: GpuProgramParameters::getParamIndex 1398 Description: Cannot find a parameter named refIndex. 1399 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1400 Line: 779 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! 1403 1404 ----------------------------------- 1405 Details: 1406 ----------------------------------- 1407 Error #: 7 1408 Function: GpuProgramParameters::getParamIndex 1409 Description: Cannot find a parameter named refIndex. 1410 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1411 Line: 779 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_test 1415 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_test 1417 15:08:42: An exception has been thrown! 1418 1419 ----------------------------------- 1420 Details: 1421 ----------------------------------- 1422 Error #: 7 1423 Function: GpuProgramParameters::getParamIndex 1424 Description: Cannot find a parameter named F0. 1425 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1426 Line: 779 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! 1429 1430 ----------------------------------- 1431 Details: 1432 ----------------------------------- 1433 Error #: 7 1434 Function: GpuProgramParameters::getParamIndex 1435 Description: Cannot find a parameter named F0. 1436 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1437 Line: 779 1438 Stack unwinding: <<beginning of stack>> 1439 15:08:42: An exception has been thrown! 1440 1441 ----------------------------------- 1442 Details: 1443 ----------------------------------- 1444 Error #: 7 1445 Function: GpuProgramParameters::getParamIndex 1446 Description: Cannot find a parameter named refIndex. 1447 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1448 Line: 779 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! 1451 1452 ----------------------------------- 1453 Details: 1454 ----------------------------------- 1455 Error #: 7 1456 Function: GpuProgramParameters::getParamIndex 1457 Description: Cannot find a parameter named refIndex. 1458 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1459 Line: 779 1460 Stack unwinding: <<beginning of stack>> 1461 15:08:42: Parsing script Ogre.material 1462 15:08:42: Parsing script Particles.material 1463 15:08:42: An exception has been thrown! 1297 1464 1298 1465 ----------------------------------- … … 1305 1472 Line: 779 1306 1473 Stack unwinding: <<beginning of stack>> 1307 1 4:59:13: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1308 1475 1309 1476 ----------------------------------- … … 1316 1483 Line: 779 1317 1484 Stack unwinding: <<beginning of stack>> 1318 14:59:13: An exception has been thrown! 1319 1320 ----------------------------------- 1321 Details: 1322 ----------------------------------- 1323 Error #: 7 1324 Function: GpuProgramParameters::getParamIndex 1325 Description: Cannot find a parameter named resolution. 1326 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1327 Line: 779 1328 Stack unwinding: <<beginning of stack>> 1329 14:59:13: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1330 1331 ----------------------------------- 1332 Details: 1333 ----------------------------------- 1334 Error #: 7 1335 Function: GpuProgramParameters::getParamIndex 1336 Description: Cannot find a parameter named resolution. 1337 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1338 Line: 779 1339 Stack unwinding: <<beginning of stack>> 1340 14:59:13: An exception has been thrown! 1341 1342 ----------------------------------- 1343 Details: 1344 ----------------------------------- 1345 Error #: 7 1346 Function: GpuProgramParameters::getParamIndex 1347 Description: Cannot find a parameter named resolution. 1348 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1349 Line: 779 1350 Stack unwinding: <<beginning of stack>> 1351 14:59:13: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1352 1353 ----------------------------------- 1354 Details: 1355 ----------------------------------- 1356 Error #: 7 1357 Function: GpuProgramParameters::getParamIndex 1358 Description: Cannot find a parameter named resolution. 1359 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1360 Line: 779 1361 Stack unwinding: <<beginning of stack>> 1362 14:59:13: Parsing script Glow.material 1363 14:59:13: An exception has been thrown! 1364 1365 ----------------------------------- 1366 Details: 1367 ----------------------------------- 1368 Error #: 7 1369 Function: GpuProgramParameters::getParamIndex 1370 Description: Cannot find a parameter named Gain. 1371 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1372 Line: 779 1373 Stack unwinding: <<beginning of stack>> 1374 14:59:13: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 1375 1376 ----------------------------------- 1377 Details: 1378 ----------------------------------- 1379 Error #: 7 1380 Function: GpuProgramParameters::getParamIndex 1381 Description: Cannot find a parameter named Gain. 1382 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1383 Line: 779 1384 Stack unwinding: <<beginning of stack>> 1385 14:59:13: Parsing script hangar.material 1386 14:59:13: Parsing script kupola.material 1387 14:59:13: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1388 14:59:13: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1389 14:59:13: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1390 14:59:13: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1391 14:59:13: Parsing script MetalTeapot.material 1392 14:59:13: An exception has been thrown! 1393 1394 ----------------------------------- 1395 Details: 1396 ----------------------------------- 1397 Error #: 7 1398 Function: GpuProgramParameters::getParamIndex 1399 Description: Cannot find a parameter named refIndex. 1400 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1401 Line: 779 1402 Stack unwinding: <<beginning of stack>> 1403 14:59:13: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1404 1405 ----------------------------------- 1406 Details: 1407 ----------------------------------- 1408 Error #: 7 1409 Function: GpuProgramParameters::getParamIndex 1410 Description: Cannot find a parameter named refIndex. 1411 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1412 Line: 779 1413 Stack unwinding: <<beginning of stack>> 1414 14:59:13: An exception has been thrown! 1415 1416 ----------------------------------- 1417 Details: 1418 ----------------------------------- 1419 Error #: 7 1420 Function: GpuProgramParameters::getParamIndex 1421 Description: Cannot find a parameter named refIndex. 1422 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1423 Line: 779 1424 Stack unwinding: <<beginning of stack>> 1425 14:59:13: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1426 1427 ----------------------------------- 1428 Details: 1429 ----------------------------------- 1430 Error #: 7 1431 Function: GpuProgramParameters::getParamIndex 1432 Description: Cannot find a parameter named refIndex. 1433 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1434 Line: 779 1435 Stack unwinding: <<beginning of stack>> 1436 14:59:40: An exception has been thrown! 1437 1438 ----------------------------------- 1439 Details: 1440 ----------------------------------- 1441 Error #: 7 1442 Function: GpuProgramParameters::getParamIndex 1443 Description: Cannot find a parameter named F0. 1444 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1445 Line: 779 1446 Stack unwinding: <<beginning of stack>> 1447 14:59:40: Error in material MetalTeapotMultipleBounce at line 196 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1448 1449 ----------------------------------- 1450 Details: 1451 ----------------------------------- 1452 Error #: 7 1453 Function: GpuProgramParameters::getParamIndex 1454 Description: Cannot find a parameter named F0. 1455 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1456 Line: 779 1457 Stack unwinding: <<beginning of stack>> 1458 14:59:40: Parsing script Ogre.material 1459 14:59:40: Parsing script Particles.material 1460 14:59:40: An exception has been thrown! 1485 15:08:42: An exception has been thrown! 1461 1486 1462 1487 ----------------------------------- … … 1469 1494 Line: 779 1470 1495 Stack unwinding: <<beginning of stack>> 1471 1 4:59:40: Error in material GameTools/SpriteShader at line 17of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1472 1497 1473 1498 ----------------------------------- … … 1480 1505 Line: 779 1481 1506 Stack unwinding: <<beginning of stack>> 1482 14:59:40: An exception has been thrown! 1483 1484 ----------------------------------- 1485 Details: 1486 ----------------------------------- 1487 Error #: 7 1488 Function: GpuProgramParameters::getParamIndex 1489 Description: Cannot find a parameter named worldViewProj. 1490 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1491 Line: 779 1492 Stack unwinding: <<beginning of stack>> 1493 14:59:40: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 1494 1495 ----------------------------------- 1496 Details: 1497 ----------------------------------- 1498 Error #: 7 1499 Function: GpuProgramParameters::getParamIndex 1500 Description: Cannot find a parameter named worldViewProj. 1501 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1502 Line: 779 1503 Stack unwinding: <<beginning of stack>> 1504 14:59:40: Parsing script RaytraceDemo.material 1505 14:59:40: Parsing script stairs.material 1506 14:59:40: Parsing script terito.material 1507 14:59:40: Parsing script uvegfolyoso2.material 1508 14:59:40: An exception has been thrown! 1507 15:08:42: Parsing script RaytraceDemo.material 1508 15:08:42: Parsing script stairs.material 1509 15:08:42: Parsing script terito.material 1510 15:08:42: Parsing script uvegfolyoso2.material 1511 15:08:42: An exception has been thrown! 1509 1512 1510 1513 ----------------------------------- … … 1517 1520 Line: 779 1518 1521 Stack unwinding: <<beginning of stack>> 1519 1 4:59:40: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1520 1523 1521 1524 ----------------------------------- … … 1528 1531 Line: 779 1529 1532 Stack unwinding: <<beginning of stack>> 1530 1 4:59:40: An exception has been thrown!1533 15:08:42: An exception has been thrown! 1531 1534 1532 1535 ----------------------------------- … … 1539 1542 Line: 779 1540 1543 Stack unwinding: <<beginning of stack>> 1541 1 4:59:40: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1542 1545 1543 1546 ----------------------------------- … … 1550 1553 Line: 779 1551 1554 Stack unwinding: <<beginning of stack>> 1552 1 4:59:40: An exception has been thrown!1555 15:08:42: An exception has been thrown! 1553 1556 1554 1557 ----------------------------------- … … 1561 1564 Line: 779 1562 1565 Stack unwinding: <<beginning of stack>> 1563 1 4:59:40: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1564 1567 1565 1568 ----------------------------------- … … 1572 1575 Line: 779 1573 1576 Stack unwinding: <<beginning of stack>> 1574 1 4:59:40: An exception has been thrown!1577 15:08:42: An exception has been thrown! 1575 1578 1576 1579 ----------------------------------- … … 1583 1586 Line: 779 1584 1587 Stack unwinding: <<beginning of stack>> 1585 1 4:59:40: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1586 1589 1587 1590 ----------------------------------- … … 1594 1597 Line: 779 1595 1598 Stack unwinding: <<beginning of stack>> 1596 1 4:59:40: An exception has been thrown!1599 15:08:42: An exception has been thrown! 1597 1600 1598 1601 ----------------------------------- … … 1605 1608 Line: 779 1606 1609 Stack unwinding: <<beginning of stack>> 1607 1 4:59:40: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1608 1611 1609 1612 ----------------------------------- … … 1616 1619 Line: 779 1617 1620 Stack unwinding: <<beginning of stack>> 1618 1 4:59:40: An exception has been thrown!1621 15:08:42: An exception has been thrown! 1619 1622 1620 1623 ----------------------------------- … … 1627 1630 Line: 779 1628 1631 Stack unwinding: <<beginning of stack>> 1629 1 4:59:40: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1630 1633 1631 1634 ----------------------------------- … … 1638 1641 Line: 779 1639 1642 Stack unwinding: <<beginning of stack>> 1640 1 4:59:40: An exception has been thrown!1643 15:08:42: An exception has been thrown! 1641 1644 1642 1645 ----------------------------------- … … 1649 1652 Line: 779 1650 1653 Stack unwinding: <<beginning of stack>> 1651 1 4:59:40: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1652 1655 1653 1656 ----------------------------------- … … 1660 1663 Line: 779 1661 1664 Stack unwinding: <<beginning of stack>> 1662 1 4:59:40: An exception has been thrown!1665 15:08:42: An exception has been thrown! 1663 1666 1664 1667 ----------------------------------- … … 1671 1674 Line: 779 1672 1675 Stack unwinding: <<beginning of stack>> 1673 1 4:59:40: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1674 1677 1675 1678 ----------------------------------- … … 1682 1685 Line: 779 1683 1686 Stack unwinding: <<beginning of stack>> 1684 1 4:59:40: An exception has been thrown!1687 15:08:42: An exception has been thrown! 1685 1688 1686 1689 ----------------------------------- … … 1693 1696 Line: 779 1694 1697 Stack unwinding: <<beginning of stack>> 1695 1 4:59:40: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1696 1699 1697 1700 ----------------------------------- … … 1704 1707 Line: 779 1705 1708 Stack unwinding: <<beginning of stack>> 1706 1 4:59:40: An exception has been thrown!1709 15:08:42: An exception has been thrown! 1707 1710 1708 1711 ----------------------------------- … … 1715 1718 Line: 779 1716 1719 Stack unwinding: <<beginning of stack>> 1717 1 4:59:40: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1718 1721 1719 1722 ----------------------------------- … … 1726 1729 Line: 779 1727 1730 Stack unwinding: <<beginning of stack>> 1728 1 4:59:40: An exception has been thrown!1731 15:08:42: An exception has been thrown! 1729 1732 1730 1733 ----------------------------------- … … 1737 1740 Line: 779 1738 1741 Stack unwinding: <<beginning of stack>> 1739 1 4:59:40: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1740 1743 1741 1744 ----------------------------------- … … 1748 1751 Line: 779 1749 1752 Stack unwinding: <<beginning of stack>> 1750 1 4:59:40: An exception has been thrown!1753 15:08:42: An exception has been thrown! 1751 1754 1752 1755 ----------------------------------- … … 1759 1762 Line: 779 1760 1763 Stack unwinding: <<beginning of stack>> 1761 1 4:59:40: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1762 1765 1763 1766 ----------------------------------- … … 1770 1773 Line: 779 1771 1774 Stack unwinding: <<beginning of stack>> 1772 1 4:59:40: An exception has been thrown!1775 15:08:42: An exception has been thrown! 1773 1776 1774 1777 ----------------------------------- … … 1781 1784 Line: 779 1782 1785 Stack unwinding: <<beginning of stack>> 1783 1 4:59:40: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1784 1787 1785 1788 ----------------------------------- … … 1792 1795 Line: 779 1793 1796 Stack unwinding: <<beginning of stack>> 1794 1 4:59:40: An exception has been thrown!1797 15:08:42: An exception has been thrown! 1795 1798 1796 1799 ----------------------------------- … … 1803 1806 Line: 779 1804 1807 Stack unwinding: <<beginning of stack>> 1805 1 4:59:40: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1806 1809 1807 1810 ----------------------------------- … … 1814 1817 Line: 779 1815 1818 Stack unwinding: <<beginning of stack>> 1816 1 4:59:40: An exception has been thrown!1819 15:08:42: An exception has been thrown! 1817 1820 1818 1821 ----------------------------------- … … 1825 1828 Line: 779 1826 1829 Stack unwinding: <<beginning of stack>> 1827 1 4:59:40: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1828 1831 1829 1832 ----------------------------------- … … 1836 1839 Line: 779 1837 1840 Stack unwinding: <<beginning of stack>> 1838 1 4:59:40: An exception has been thrown!1841 15:08:42: An exception has been thrown! 1839 1842 1840 1843 ----------------------------------- … … 1847 1850 Line: 779 1848 1851 Stack unwinding: <<beginning of stack>> 1849 1 4:59:40: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!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! 1850 1853 1851 1854 ----------------------------------- … … 1858 1861 Line: 779 1859 1862 Stack unwinding: <<beginning of stack>> 1860 14:59:40: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1861 14:59:40: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1862 14:59:40: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1863 14:59:40: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1864 14:59:40: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1865 14:59:40: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1866 14:59:40: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1867 14:59:40: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1868 14:59:40: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1869 14:59:40: Parsing script X3D.material 1870 14:59:40: Parsing script GameTools_Glow.compositor 1871 14:59:40: Parsing script GameTools_ToneMap.compositor 1872 14:59:40: Parsing script sample.fontdef 1873 14:59:40: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1874 14:59:40: Parsing script GameTools.particle 1875 14:59:40: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1876 14:59:40: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1877 14:59:40: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1878 14:59:40: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1879 14:59:40: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1880 14:59:40: Parsing script Compositor.overlay 1881 14:59:40: Parsing script DP3.overlay 1882 14:59:41: Parsing script Example-CubeMapping.overlay 1883 14:59:41: Parsing script Example-DynTex.overlay 1884 14:59:41: Parsing script Example-Water.overlay 1885 14:59:41: Parsing script FullScreen.overlay 1886 14:59:41: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1887 14:59:41: Parsing script Shadows.overlay 1888 14:59:41: Finished parsing scripts for resource group General 1889 14:59:41: Parsing scripts for resource group Internal 1890 14:59:41: Finished parsing scripts for resource group Internal 1891 14:59:41: Texture: stormy_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1892 14:59:41: Texture: stormy_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1893 14:59:41: Texture: stormy_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1894 14:59:41: Texture: stormy_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1895 14:59:41: Texture: stormy_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1896 14:59:41: Texture: stormy_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1897 14:59:41: TerrainSceneManager: Activated PageSource Heightmap 1898 14:59:41: Texture: terrain_texture.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1899 14:59:41: Texture: terrain_detail.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1900 14:59:41: Creating viewport on target 'rtt/3221440', rendering from camera 'psys1_HPP_IMPOSTOR_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1901 14:59:41: Viewport for camera 'psys1_HPP_IMPOSTOR_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1902 14:59:41: WARNING: Texture instance 'psys1_HPP_IMPOSTOR' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1903 14:59:41: Creating viewport on target 'rtt/3221504', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1904 14:59:41: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 1905 14:59:41: Creating viewport on target 'rtt/3221568', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1906 14:59:41: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 1907 14:59:41: Creating viewport on target 'rtt/3221632', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1908 14:59:41: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1909 14:59:41: WARNING: Texture instance 'ILLUMMODULE_SCENE_CAMERA_DEPTH' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1910 14:59:41: Win32Input8: DirectInput Activation Starts 1911 14:59:41: Win32Input8: Establishing keyboard input. 1912 14:59:41: Win32Input8: Keyboard input established. 1913 14:59:41: Win32Input8: Initializing mouse input in immediate mode. 1914 14:59:41: Win32Input8: Mouse input in immediate mode initialized. 1915 14:59:41: Win32Input8: DirectInput OK. 1916 14:59:41: Texture: smoke2.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1917 14:59:48: Unregistering ResourceManager for type BspLevel 1918 14:59:48: Render Target 'rtt/3221632' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1919 14:59:48: Render Target 'rtt/3221568' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1920 14:59:48: Render Target 'rtt/3221504' Average FPS: 34.4004 Best FPS: 36.5252 Worst FPS: 0.712251 1921 14:59:48: Render Target 'rtt/3221440' Average FPS: 34.3884 Best FPS: 36.5252 Worst FPS: 0.719942 1922 14:59:48: *-*-* OGRE Shutdown 1923 14:59:48: Unregistering ResourceManager for type Compositor 1924 14:59:48: Unregistering ResourceManager for type Font 1925 14:59:48: Unregistering ResourceManager for type Skeleton 1926 14:59:48: Unregistering ResourceManager for type Mesh 1927 14:59:48: Unregistering ResourceManager for type HighLevelGpuProgram 1928 14:59:48: Unloading library .\Plugin_CgProgramManager 1929 14:59:48: Unloading library .\Plugin_OctreeSceneManager 1930 14:59:48: Unloading library .\Plugin_BSPSceneManager 1931 14:59:48: Unloading library .\Plugin_ParticleFX 1932 14:59:48: Render Target 'OGRE Render Window' Average FPS: 40.2786 Best FPS: 159.046 Worst FPS: 32.3529 1933 14:59:48: D3D9 : Shutting down cleanly. 1934 14:59:48: Unregistering ResourceManager for type Texture 1935 14:59:48: Unregistering ResourceManager for type GpuProgram 1936 14:59:48: D3D9 : Direct3D9 Rendering Subsystem destroyed. 1937 14:59:48: Unloading library .\RenderSystem_Direct3D9 1938 14:59:48: Unregistering ResourceManager for type Material 1939 14:59:48: Unloading library OgrePlatform_d.dll 1863 15:08:42: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1864 15:08:42: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1865 15:08:42: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1866 15:08:42: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1867 15:08:42: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1868 15:08:42: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1869 15:08:42: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1870 15:08:42: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1871 15:08:42: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1872 15:08:42: Parsing script X3D.material 1873 15:08:42: Parsing script GameTools_Glow.compositor 1874 15:08:42: Parsing script GameTools_ToneMap.compositor 1875 15:08:42: Parsing script sample.fontdef 1876 15:08:42: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1877 15:08:42: Parsing script GameTools.particle 1878 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.overlay 1884 15:08:42: Parsing script DP3.overlay 1885 15:08:42: Parsing script Example-CubeMapping.overlay 1886 15:08:42: Parsing script Example-DynTex.overlay 1887 15:08:42: Parsing script Example-Water.overlay 1888 15:08:42: Parsing script FullScreen.overlay 1889 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.overlay 1891 15:08:42: Finished parsing scripts for resource group General 1892 15:08:42: Parsing scripts for resource group Internal 1893 15:08:42: Finished parsing scripts for resource group Internal 1894 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: 0 1903 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1904 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: 0 1905 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1906 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: 0 1907 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1908 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: 0 1909 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1910 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: 0 1911 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1912 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: 0 1913 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1914 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: 0 1916 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1917 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: 0 1918 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1919 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: 0 1920 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1921 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: 0 1922 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1923 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: 0 1924 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1925 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: 0 1926 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1927 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: 0 1929 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1930 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: 0 1931 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1932 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: 0 1933 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1934 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: 0 1935 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1936 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: 0 1937 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1938 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: 0 1939 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1940 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: 0 1942 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1943 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: 0 1944 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1945 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: 0 1946 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1947 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: 0 1948 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1949 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: 0 1950 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1951 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: 0 1952 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1953 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 Starts 1955 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: 0 1961 15:08:42: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1962 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: 0 1963 15:08:42: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1964 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: 0 1965 15:08:42: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 1966 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: 0 1967 15:08:42: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1968 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 BspLevel 1971 15:10:55: Render Target 'rtt/48154208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1972 15:10:55: Render Target 'rtt/48153632' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1973 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.0799297 1977 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: 999 1982 15:10:55: Render Target 'rtt/48083680' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1983 15:10:55: Render Target 'rtt/48083776' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1984 15:10:55: Render Target 'rtt/48083840' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1985 15:10:55: Render Target 'rtt/48083936' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1986 15:10:55: Render Target 'rtt/48084000' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1987 15:10:55: Render Target 'rtt/48080896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1988 15:10:55: Render Target 'rtt/48080992' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1989 15:10:55: Render Target 'rtt/48081056' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1990 15:10:55: Render Target 'rtt/48082208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1991 15:10:55: Render Target 'rtt/48082272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1992 15:10:55: Render Target 'rtt/48082368' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1993 15:10:55: Render Target 'rtt/48080064' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1994 15:10:55: Render Target 'rtt/48080160' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1995 15:10:55: Render Target 'rtt/48080224' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1996 15:10:55: Render Target 'rtt/48080320' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1997 15:10:55: Render Target 'rtt/48080384' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1998 15:10:55: Render Target 'rtt/48080480' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1999 15:10:55: *-*-* OGRE Shutdown 2000 15:10:55: Unregistering ResourceManager for type Compositor 2001 15:10:55: Unregistering ResourceManager for type Font 2002 15:10:55: Unregistering ResourceManager for type Skeleton 2003 15:10:55: Unregistering ResourceManager for type Mesh 2004 15:10:55: Unregistering ResourceManager for type HighLevelGpuProgram 2005 15:10:55: Unloading library .\Plugin_CgProgramManager 2006 15:10:55: Unloading library .\Plugin_OctreeSceneManager 2007 15:10:55: Unloading library .\Plugin_BSPSceneManager 2008 15:10:55: Unloading library .\Plugin_ParticleFX 2009 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 Texture 2012 15:10:55: Unregistering ResourceManager for type GpuProgram 2013 15:10:55: D3D9 : Direct3D9 Rendering Subsystem destroyed. 2014 15:10:55: Unloading library .\RenderSystem_Direct3D9 2015 15:10:55: Unregistering ResourceManager for type Material 2016 15:10:55: Unloading library OgrePlatform_d.dll -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log
r1879 r1885 1 1 ---------------------------------------------------------------------------------------------------------------------------------- 2 | Memory leak report for: 12/1 1/2006 14:59:48|2 | Memory leak report for: 12/13/2006 15:10:55 | 3 3 ---------------------------------------------------------------------------------------------------------------------------------- 4 4 5 5 6 402memory leaks found:6 517 memory leaks found: 7 7 8 8 Alloc. Addr Size Addr Size BreakOn BreakOn 9 9 Number Reported Reported Actual Actual Unused Method Dealloc Realloc Allocated by 10 10 ------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- --------------------------------------------------- 11 026057 0x0211DF20 0x0000000C 0x0211DF10 0x0000002C 0x00000000 new N N ??(0) ?? 12 026100 0x0213D700 0x00000034 0x0213D6F0 0x00000054 0x00000000 new N N ??(0) ?? 13 026101 0x0213D780 0x00000034 0x0213D770 0x00000054 0x00000000 new N N ??(0) ?? 14 026102 0x0213D800 0x00000034 0x0213D7F0 0x00000054 0x00000000 new N N ??(0) ?? 15 026103 0x0213D880 0x00000034 0x0213D870 0x00000054 0x00000000 new N N ??(0) ?? 16 026104 0x0213D900 0x0000000C 0x0213D8F0 0x0000002C 0x00000000 new N N ??(0) ?? 17 026105 0x0213D958 0x000000A0 0x0213D948 0x000000C0 0x00000000 new N N ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 18 026106 0x0213DA48 0x00000034 0x0213DA38 0x00000054 0x00000000 new N N ??(0) ?? 19 026107 0x0213DAC8 0x00000034 0x0213DAB8 0x00000054 0x00000000 new N N ??(0) ?? 20 026108 0x0213DB48 0x00000034 0x0213DB38 0x00000054 0x00000000 new N N ??(0) ?? 21 026109 0x0213DBC8 0x00000034 0x0213DBB8 0x00000054 0x00000000 new N N ??(0) ?? 22 026110 0x0213DC48 0x00000034 0x0213DC38 0x00000054 0x00000000 new N N ??(0) ?? 23 026111 0x0213DCC8 0x00000034 0x0213DCB8 0x00000054 0x00000000 new N N ??(0) ?? 24 026112 0x0213DD48 0x00000034 0x0213DD38 0x00000054 0x00000000 new N N ??(0) ?? 25 026113 0x0213DDC8 0x00000034 0x0213DDB8 0x00000054 0x00000000 new N N ??(0) ?? 26 026119 0x0213DE48 0x0000000C 0x0213DE38 0x0000002C 0x00000000 new N N ??(0) ?? 27 026114 0x02145AF0 0x00000034 0x02145AE0 0x00000054 0x00000000 new N N ??(0) ?? 28 026115 0x02145B70 0x00000034 0x02145B60 0x00000054 0x00000000 new N N ??(0) ?? 29 026116 0x02145BF0 0x00000034 0x02145BE0 0x00000054 0x00000000 new N N ??(0) ?? 30 026117 0x02145C70 0x00000034 0x02145C60 0x00000054 0x00000000 new N N ??(0) ?? 31 026118 0x02145CF0 0x00000034 0x02145CE0 0x00000054 0x00000000 new N N ??(0) ?? 32 026120 0x02145D70 0x000000A4 0x02145D60 0x000000C4 0x00000000 new N N ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 33 026121 0x02145E60 0x00000034 0x02145E50 0x00000054 0x00000000 new N N ??(0) ?? 34 026122 0x02145EE0 0x00000034 0x02145ED0 0x00000054 0x00000000 new N N ??(0) ?? 35 026123 0x02145F60 0x00000034 0x02145F50 0x00000054 0x00000000 new N N ??(0) ?? 36 026124 0x02145FE0 0x00000034 0x02145FD0 0x00000054 0x00000000 new N N ??(0) ?? 37 026125 0x02146060 0x00000034 0x02146050 0x00000054 0x00000000 new N N ??(0) ?? 38 026126 0x021460E0 0x00000034 0x021460D0 0x00000054 0x00000000 new N N ??(0) ?? 39 026127 0x02146160 0x00000034 0x02146150 0x00000054 0x00000000 new N N ??(0) ?? 40 026128 0x021461E0 0x00000034 0x021461D0 0x00000054 0x00000000 new N N ??(0) ?? 41 026129 0x02146260 0x00000034 0x02146250 0x00000054 0x00000000 new N N ??(0) ?? 42 026130 0x021462E0 0x00000034 0x021462D0 0x00000054 0x00000000 new N N ??(0) ?? 43 026131 0x02146360 0x00000034 0x02146350 0x00000054 0x00000000 new N N ??(0) ?? 44 026132 0x021463E0 0x00000034 0x021463D0 0x00000054 0x00000000 new N N ??(0) ?? 45 026133 0x02146460 0x00000034 0x02146450 0x00000054 0x00000000 new N N ??(0) ?? 46 026134 0x021464E0 0x00000034 0x021464D0 0x00000054 0x00000000 new N N ??(0) ?? 47 026135 0x02146560 0x0000000C 0x02146550 0x0000002C 0x00000000 new N N ??(0) ?? 48 026086 0x021466A8 0x00000018 0x02146698 0x00000038 0x00000000 new N N ??(0) ?? 49 026087 0x02146710 0x00000018 0x02146700 0x00000038 0x00000000 new N N ??(0) ?? 50 026088 0x02146778 0x00000018 0x02146768 0x00000038 0x00000000 new N N ??(0) ?? 51 026089 0x021467E0 0x00000018 0x021467D0 0x00000038 0x00000000 new N N ??(0) ?? 52 026091 0x02146848 0x00000034 0x02146838 0x00000054 0x00000000 new N N ??(0) ?? 53 026064 0x02146AC0 0x00000018 0x02146AB0 0x00000038 0x00000000 new N N ??(0) ?? 54 026066 0x02146B28 0x00000018 0x02146B18 0x00000038 0x00000000 new N N ??(0) ?? 55 026065 0x02158F60 0x00000008 0x02158F50 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 56 026058 0x0215AF20 0x00000018 0x0215AF10 0x00000038 0x00000000 new N N ??(0) ?? 57 026083 0x021903C0 0x00000018 0x021903B0 0x00000038 0x00000000 new N N ??(0) ?? 58 026084 0x02190428 0x00000018 0x02190418 0x00000038 0x00000000 new N N ??(0) ?? 59 026085 0x02190490 0x00000018 0x02190480 0x00000038 0x00000000 new N N ??(0) ?? 60 026063 0x02190A90 0x00000034 0x02190A80 0x00000054 0x00000000 new N N ??(0) ?? 61 026060 0x02190BA0 0x00000018 0x02190B90 0x00000038 0x00000000 new N N ??(0) ?? 62 007404 0x02195CE0 0x00000050 0x02195CD0 0x00000070 0x00000000 new N N ??(0) ?? 63 007522 0x02196600 0x0000003C 0x021965F0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 64 007398 0x021966A0 0x0000003C 0x02196690 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 65 007399 0x02196728 0x00000050 0x02196718 0x00000070 0x00000000 new N N ??(0) ?? 66 007408 0x02196978 0x00000050 0x02196968 0x00000070 0x00000000 new N N ??(0) ?? 67 007412 0x02196AB8 0x00000050 0x02196AA8 0x00000070 0x00000000 new N N ??(0) ?? 68 007416 0x02196C08 0x00000050 0x02196BF8 0x00000070 0x00000000 new N N ??(0) ?? 69 007420 0x02196CA8 0x00000050 0x02196C98 0x00000070 0x00000000 new N N ??(0) ?? 70 007523 0x02196D48 0x00000050 0x02196D38 0x00000070 0x00000000 new N N ??(0) ?? 71 007528 0x0219F8F0 0x00000050 0x0219F8E0 0x00000070 0x00000000 new N N ??(0) ?? 72 007536 0x0219F990 0x00000050 0x0219F980 0x00000070 0x00000000 new N N ??(0) ?? 73 007532 0x0219FA40 0x00000050 0x0219FA30 0x00000070 0x00000000 new N N ??(0) ?? 74 007540 0x0219FB40 0x00000050 0x0219FB30 0x00000070 0x00000000 new N N ??(0) ?? 75 007544 0x0219FCA0 0x00000050 0x0219FC90 0x00000070 0x00000000 new N N ??(0) ?? 76 007737 0x021A8570 0x00000050 0x021A8560 0x00000070 0x00000000 new N N ??(0) ?? 77 007731 0x021A86A0 0x0000003C 0x021A8690 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 78 007732 0x021AAC08 0x00000050 0x021AABF8 0x00000070 0x00000000 new N N ??(0) ?? 79 007749 0x021AACF8 0x00000050 0x021AACE8 0x00000070 0x00000000 new N N ??(0) ?? 80 007741 0x021AAE58 0x00000050 0x021AAE48 0x00000070 0x00000000 new N N ??(0) ?? 81 007745 0x021AAF58 0x00000050 0x021AAF48 0x00000070 0x00000000 new N N ??(0) ?? 82 007753 0x021AB0A8 0x00000050 0x021AB098 0x00000070 0x00000000 new N N ??(0) ?? 83 008068 0x021AE2F0 0x00000050 0x021AE2E0 0x00000070 0x00000000 new N N ??(0) ?? 84 008062 0x021AE420 0x0000003C 0x021AE410 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 85 026075 0x021B0158 0x00000018 0x021B0148 0x00000038 0x00000000 new N N ??(0) ?? 86 026076 0x021B01C0 0x00000018 0x021B01B0 0x00000038 0x00000000 new N N ??(0) ?? 87 026067 0x021B02D8 0x00000018 0x021B02C8 0x00000038 0x00000000 new N N ??(0) ?? 88 026068 0x021B0340 0x00000018 0x021B0330 0x00000038 0x00000000 new N N ??(0) ?? 89 026071 0x021B14C0 0x00000018 0x021B14B0 0x00000038 0x00000000 new N N ??(0) ?? 90 026072 0x021B1528 0x00000018 0x021B1518 0x00000038 0x00000000 new N N ??(0) ?? 91 026090 0x021B16A8 0x000000A0 0x021B1698 0x000000C0 0x00000000 new N N ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 92 026092 0x021B1798 0x00000034 0x021B1788 0x00000054 0x00000000 new N N ??(0) ?? 93 026093 0x021B1818 0x00000034 0x021B1808 0x00000054 0x00000000 new N N ??(0) ?? 94 026094 0x021B1898 0x00000034 0x021B1888 0x00000054 0x00000000 new N N ??(0) ?? 95 026095 0x021B1918 0x00000034 0x021B1908 0x00000054 0x00000000 new N N ??(0) ?? 96 026096 0x021B1998 0x00000034 0x021B1988 0x00000054 0x00000000 new N N ??(0) ?? 97 026097 0x021B1A18 0x00000034 0x021B1A08 0x00000054 0x00000000 new N N ??(0) ?? 98 026098 0x021B1A98 0x00000034 0x021B1A88 0x00000054 0x00000000 new N N ??(0) ?? 99 026099 0x021B1B18 0x00000034 0x021B1B08 0x00000054 0x00000000 new N N ??(0) ?? 100 026136 0x021B22B0 0x0000009C 0x021B22A0 0x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 101 026137 0x021B2398 0x00000034 0x021B2388 0x00000054 0x00000000 new N N ??(0) ?? 102 026138 0x021B2418 0x00000034 0x021B2408 0x00000054 0x00000000 new N N ??(0) ?? 103 026139 0x021B2498 0x00000034 0x021B2488 0x00000054 0x00000000 new N N ??(0) ?? 104 026140 0x021B2518 0x00000034 0x021B2508 0x00000054 0x00000000 new N N ??(0) ?? 105 026141 0x021B2598 0x00000034 0x021B2588 0x00000054 0x00000000 new N N ??(0) ?? 106 026142 0x021B2618 0x00000034 0x021B2608 0x00000054 0x00000000 new N N ??(0) ?? 107 026143 0x021B26E8 0x00000034 0x021B26D8 0x00000054 0x00000000 new N N ??(0) ?? 108 026144 0x021B27B8 0x00000034 0x021B27A8 0x00000054 0x00000000 new N N ??(0) ?? 109 026145 0x021B2888 0x00000034 0x021B2878 0x00000054 0x00000000 new N N ??(0) ?? 110 026146 0x021B2958 0x00000034 0x021B2948 0x00000054 0x00000000 new N N ??(0) ?? 111 026147 0x021B29D8 0x00000034 0x021B29C8 0x00000054 0x00000000 new N N ??(0) ?? 112 026148 0x021B2A58 0x00000034 0x021B2A48 0x00000054 0x00000000 new N N ??(0) ?? 113 026149 0x021B2AD8 0x00000034 0x021B2AC8 0x00000054 0x00000000 new N N ??(0) ?? 114 026150 0x021B2BA8 0x0000000C 0x021B2B98 0x0000002C 0x00000000 new N N ??(0) ?? 115 026151 0x021B2C00 0x00000084 0x021B2BF0 0x000000A4 0x00000000 new N N ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 116 026152 0x021B2CD0 0x00000034 0x021B2CC0 0x00000054 0x00000000 new N N ??(0) ?? 117 026153 0x021B2D50 0x00000034 0x021B2D40 0x00000054 0x00000000 new N N ??(0) ?? 118 026154 0x021B2E20 0x00000034 0x021B2E10 0x00000054 0x00000000 new N N ??(0) ?? 119 026155 0x021B2EF0 0x00000034 0x021B2EE0 0x00000054 0x00000000 new N N ??(0) ?? 120 008063 0x021B39A0 0x00000050 0x021B3990 0x00000070 0x00000000 new N N ??(0) ?? 121 008080 0x021B3A90 0x00000050 0x021B3A80 0x00000070 0x00000000 new N N ??(0) ?? 122 008072 0x021B3BF0 0x00000050 0x021B3BE0 0x00000070 0x00000000 new N N ??(0) ?? 123 008076 0x021B3CF0 0x00000050 0x021B3CE0 0x00000070 0x00000000 new N N ??(0) ?? 124 008084 0x021B3F90 0x00000050 0x021B3F80 0x00000070 0x00000000 new N N ??(0) ?? 125 009317 0x021CE008 0x0000003C 0x021CDFF8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 126 009318 0x021CF488 0x00000050 0x021CF478 0x00000070 0x00000000 new N N ??(0) ?? 127 009323 0x021CF528 0x00000050 0x021CF518 0x00000070 0x00000000 new N N ??(0) ?? 128 009327 0x021CF5C8 0x00000050 0x021CF5B8 0x00000070 0x00000000 new N N ??(0) ?? 129 009337 0x021CF668 0x00000050 0x021CF658 0x00000070 0x00000000 new N N ??(0) ?? 130 009331 0x021CF708 0x0000003C 0x021CF6F8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 131 009332 0x02F09028 0x00000050 0x02F09018 0x00000070 0x00000000 new N N ??(0) ?? 132 009345 0x02F090C8 0x00000050 0x02F090B8 0x00000070 0x00000000 new N N ??(0) ?? 133 009341 0x02F09228 0x00000050 0x02F09218 0x00000070 0x00000000 new N N ??(0) ?? 134 009349 0x02F092C8 0x00000050 0x02F092B8 0x00000070 0x00000000 new N N ??(0) ?? 135 009353 0x02F09368 0x00000050 0x02F09358 0x00000070 0x00000000 new N N ??(0) ?? 136 009357 0x02F09408 0x00000050 0x02F093F8 0x00000070 0x00000000 new N N ??(0) ?? 137 009598 0x02F097B0 0x00000050 0x02F097A0 0x00000070 0x00000000 new N N ??(0) ?? 138 009606 0x02F09850 0x00000050 0x02F09840 0x00000070 0x00000000 new N N ??(0) ?? 139 009610 0x02F098F0 0x00000050 0x02F098E0 0x00000070 0x00000000 new N N ??(0) ?? 140 009614 0x02F09990 0x00000050 0x02F09980 0x00000070 0x00000000 new N N ??(0) ?? 141 010665 0x02F0B820 0x0000003C 0x02F0B810 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 142 010666 0x02F0B8A8 0x00000050 0x02F0B898 0x00000070 0x00000000 new N N ??(0) ?? 143 010671 0x02F0B998 0x00000050 0x02F0B988 0x00000070 0x00000000 new N N ??(0) ?? 144 010675 0x02F0BA38 0x00000050 0x02F0BA28 0x00000070 0x00000000 new N N ??(0) ?? 145 010679 0x02F0BAD8 0x00000050 0x02F0BAC8 0x00000070 0x00000000 new N N ??(0) ?? 146 010683 0x02F0BB78 0x0000003C 0x02F0BB68 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 147 010684 0x02F0BC00 0x00000050 0x02F0BBF0 0x00000070 0x00000000 new N N ??(0) ?? 148 010689 0x02F0BCF8 0x00000050 0x02F0BCE8 0x00000070 0x00000000 new N N ??(0) ?? 149 010693 0x02F0BD98 0x00000050 0x02F0BD88 0x00000070 0x00000000 new N N ??(0) ?? 150 010697 0x02F0BE38 0x00000050 0x02F0BE28 0x00000070 0x00000000 new N N ??(0) ?? 151 009562 0x02F158E0 0x0000003C 0x02F158D0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 152 009563 0x02F15C50 0x00000050 0x02F15C40 0x00000070 0x00000000 new N N ??(0) ?? 153 009568 0x02F16990 0x00000050 0x02F16980 0x00000070 0x00000000 new N N ??(0) ?? 154 009572 0x02F16A30 0x00000050 0x02F16A20 0x00000070 0x00000000 new N N ??(0) ?? 155 009576 0x02F16AD0 0x00000050 0x02F16AC0 0x00000070 0x00000000 new N N ??(0) ?? 156 009580 0x02F16B70 0x00000050 0x02F16B60 0x00000070 0x00000000 new N N ??(0) ?? 157 009584 0x02F16C10 0x00000050 0x02F16C00 0x00000070 0x00000000 new N N ??(0) ?? 158 009594 0x02F16CB0 0x00000050 0x02F16CA0 0x00000070 0x00000000 new N N ??(0) ?? 159 009588 0x02F16D50 0x0000003C 0x02F16D40 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 160 009589 0x02F16DD8 0x00000050 0x02F16DC8 0x00000070 0x00000000 new N N ??(0) ?? 161 009602 0x02F16ED0 0x00000050 0x02F16EC0 0x00000070 0x00000000 new N N ??(0) ?? 162 009785 0x02F1BFB8 0x00000050 0x02F1BFA8 0x00000070 0x00000000 new N N ??(0) ?? 163 009790 0x02F1C058 0x00000050 0x02F1C048 0x00000070 0x00000000 new N N ??(0) ?? 164 009794 0x02F1C0F8 0x00000050 0x02F1C0E8 0x00000070 0x00000000 new N N ??(0) ?? 165 009798 0x02F1C198 0x00000050 0x02F1C188 0x00000070 0x00000000 new N N ??(0) ?? 166 009802 0x02F1C238 0x00000050 0x02F1C228 0x00000070 0x00000000 new N N ??(0) ?? 167 009806 0x02F1C2D8 0x00000050 0x02F1C2C8 0x00000070 0x00000000 new N N ??(0) ?? 168 009810 0x02F1C408 0x0000003C 0x02F1C3F8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 169 009811 0x02F1C490 0x00000050 0x02F1C480 0x00000070 0x00000000 new N N ??(0) ?? 170 009824 0x02F1C588 0x00000050 0x02F1C578 0x00000070 0x00000000 new N N ??(0) ?? 171 009820 0x02F1C6E8 0x00000050 0x02F1C6D8 0x00000070 0x00000000 new N N ??(0) ?? 172 009828 0x02F1C788 0x00000050 0x02F1C778 0x00000070 0x00000000 new N N ??(0) ?? 173 009832 0x02F1C828 0x00000050 0x02F1C818 0x00000070 0x00000000 new N N ??(0) ?? 174 009836 0x02F1C8C8 0x00000050 0x02F1C8B8 0x00000070 0x00000000 new N N ??(0) ?? 175 009816 0x02F205F8 0x00000050 0x02F205E8 0x00000070 0x00000000 new N N ??(0) ?? 176 009784 0x02F208C0 0x0000003C 0x02F208B0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 177 009980 0x02F25BE0 0x00000050 0x02F25BD0 0x00000070 0x00000000 new N N ??(0) ?? 178 010005 0x02F25C80 0x0000003C 0x02F25C70 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 179 010006 0x02F25D08 0x00000050 0x02F25CF8 0x00000070 0x00000000 new N N ??(0) ?? 180 010019 0x02F25E00 0x00000050 0x02F25DF0 0x00000070 0x00000000 new N N ??(0) ?? 181 010023 0x02F25FA0 0x00000050 0x02F25F90 0x00000070 0x00000000 new N N ??(0) ?? 182 010027 0x02F26040 0x00000050 0x02F26030 0x00000070 0x00000000 new N N ??(0) ?? 183 010031 0x02F260E0 0x00000050 0x02F260D0 0x00000070 0x00000000 new N N ??(0) ?? 184 009979 0x02F2A4A8 0x0000003C 0x02F2A498 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 185 010015 0x02F2AA98 0x00000050 0x02F2AA88 0x00000070 0x00000000 new N N ??(0) ?? 186 009985 0x02F32C48 0x00000050 0x02F32C38 0x00000070 0x00000000 new N N ??(0) ?? 187 009989 0x02F32CE8 0x00000050 0x02F32CD8 0x00000070 0x00000000 new N N ??(0) ?? 188 009993 0x02F32D88 0x00000050 0x02F32D78 0x00000070 0x00000000 new N N ??(0) ?? 189 009997 0x02F32E28 0x00000050 0x02F32E18 0x00000070 0x00000000 new N N ??(0) ?? 190 010001 0x02F32EC8 0x00000050 0x02F32EB8 0x00000070 0x00000000 new N N ??(0) ?? 191 010011 0x02F32F68 0x00000050 0x02F32F58 0x00000070 0x00000000 new N N ??(0) ?? 192 010138 0x02F335D0 0x0000003C 0x02F335C0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 193 010144 0x02F336C0 0x00000050 0x02F336B0 0x00000070 0x00000000 new N N ??(0) ?? 194 010139 0x02F33F10 0x00000050 0x02F33F00 0x00000070 0x00000000 new N N ??(0) ?? 195 010156 0x02F33FB0 0x0000003C 0x02F33FA0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 196 010162 0x02F37C08 0x00000050 0x02F37BF8 0x00000070 0x00000000 new N N ??(0) ?? 197 010148 0x02F37CD0 0x00000050 0x02F37CC0 0x00000070 0x00000000 new N N ??(0) ?? 198 010152 0x02F37D70 0x00000050 0x02F37D60 0x00000070 0x00000000 new N N ??(0) ?? 199 010157 0x02F37E10 0x00000050 0x02F37E00 0x00000070 0x00000000 new N N ??(0) ?? 200 010166 0x02F37FD0 0x00000050 0x02F37FC0 0x00000070 0x00000000 new N N ??(0) ?? 201 010170 0x02F38070 0x00000050 0x02F38060 0x00000070 0x00000000 new N N ??(0) ?? 202 010319 0x02F3D068 0x0000003C 0x02F3D058 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 203 010320 0x02F3D0F0 0x00000050 0x02F3D0E0 0x00000070 0x00000000 new N N ??(0) ?? 204 010325 0x02F3D1E0 0x00000050 0x02F3D1D0 0x00000070 0x00000000 new N N ??(0) ?? 205 010329 0x02F3D280 0x00000050 0x02F3D270 0x00000070 0x00000000 new N N ??(0) ?? 206 010333 0x02F3D320 0x00000050 0x02F3D310 0x00000070 0x00000000 new N N ??(0) ?? 207 010337 0x02F3D3C0 0x0000003C 0x02F3D3B0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 208 010338 0x02F3D448 0x00000050 0x02F3D438 0x00000070 0x00000000 new N N ??(0) ?? 209 010343 0x02F3D540 0x00000050 0x02F3D530 0x00000070 0x00000000 new N N ??(0) ?? 210 010347 0x02F3D5E0 0x00000050 0x02F3D5D0 0x00000070 0x00000000 new N N ??(0) ?? 211 010351 0x02F3D680 0x00000050 0x02F3D670 0x00000070 0x00000000 new N N ??(0) ?? 212 010493 0x02F416A0 0x00000050 0x02F41690 0x00000070 0x00000000 new N N ??(0) ?? 213 010492 0x02F41F78 0x0000003C 0x02F41F68 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 214 010498 0x02F428B0 0x00000050 0x02F428A0 0x00000070 0x00000000 new N N ??(0) ?? 215 010502 0x02F42950 0x00000050 0x02F42940 0x00000070 0x00000000 new N N ??(0) ?? 216 010506 0x02F429F0 0x00000050 0x02F429E0 0x00000070 0x00000000 new N N ??(0) ?? 217 010510 0x02F42A90 0x0000003C 0x02F42A80 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 218 010511 0x02F42C20 0x00000050 0x02F42C10 0x00000070 0x00000000 new N N ??(0) ?? 219 010516 0x02F42CC0 0x00000050 0x02F42CB0 0x00000070 0x00000000 new N N ??(0) ?? 220 010520 0x02F42D60 0x00000050 0x02F42D50 0x00000070 0x00000000 new N N ??(0) ?? 221 010524 0x02F42E00 0x00000050 0x02F42DF0 0x00000070 0x00000000 new N N ??(0) ?? 222 011188 0x02F4F3A0 0x00000050 0x02F4F390 0x00000070 0x00000000 new N N ??(0) ?? 223 011182 0x02F4FA68 0x0000003C 0x02F4FA58 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 224 011183 0x02F4FAF0 0x00000050 0x02F4FAE0 0x00000070 0x00000000 new N N ??(0) ?? 225 012206 0x02F6DE88 0x0000003C 0x02F6DE78 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 226 012207 0x02F6DF10 0x00000050 0x02F6DF00 0x00000070 0x00000000 new N N ??(0) ?? 227 012212 0x02F6E090 0x00000050 0x02F6E080 0x00000070 0x00000000 new N N ??(0) ?? 228 012216 0x02F6E130 0x00000050 0x02F6E120 0x00000070 0x00000000 new N N ??(0) ?? 229 012220 0x02F6E1D0 0x00000050 0x02F6E1C0 0x00000070 0x00000000 new N N ??(0) ?? 230 012385 0x02F6F038 0x0000003C 0x02F6F028 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 231 012386 0x02F6F6B0 0x00000050 0x02F6F6A0 0x00000070 0x00000000 new N N ??(0) ?? 232 012391 0x02F6F7E0 0x00000050 0x02F6F7D0 0x00000070 0x00000000 new N N ??(0) ?? 233 012395 0x02F6F880 0x00000050 0x02F6F870 0x00000070 0x00000000 new N N ??(0) ?? 234 012399 0x02F6F920 0x00000050 0x02F6F910 0x00000070 0x00000000 new N N ??(0) ?? 235 028838 0x02F70538 0x00000004 0x02F70528 0x00000024 0x00000000 new N N ??(0) ?? 236 012403 0x02F79CC8 0x00000050 0x02F79CB8 0x00000070 0x00000000 new N N ??(0) ?? 237 012407 0x02F79D68 0x0000003C 0x02F79D58 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 238 012408 0x02F79DF0 0x00000050 0x02F79DE0 0x00000070 0x00000000 new N N ??(0) ?? 239 012413 0x02F79EE8 0x00000050 0x02F79ED8 0x00000070 0x00000000 new N N ??(0) ?? 240 012637 0x02F79F88 0x0000003C 0x02F79F78 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 241 012638 0x02F7A010 0x00000050 0x02F7A000 0x00000070 0x00000000 new N N ??(0) ?? 242 012643 0x02F7A108 0x00000050 0x02F7A0F8 0x00000070 0x00000000 new N N ??(0) ?? 243 012647 0x02F7A1A8 0x0000003C 0x02F7A198 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 244 012648 0x02F7A230 0x00000050 0x02F7A220 0x00000070 0x00000000 new N N ??(0) ?? 245 012653 0x02F7A328 0x00000050 0x02F7A318 0x00000070 0x00000000 new N N ??(0) ?? 246 012657 0x02F7A3C8 0x00000050 0x02F7A3B8 0x00000070 0x00000000 new N N ??(0) ?? 247 012615 0x02F80F78 0x0000003C 0x02F80F68 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 248 012616 0x02F81C38 0x00000050 0x02F81C28 0x00000070 0x00000000 new N N ??(0) ?? 249 012621 0x02F81D68 0x00000050 0x02F81D58 0x00000070 0x00000000 new N N ??(0) ?? 250 012625 0x02F81E08 0x00000050 0x02F81DF8 0x00000070 0x00000000 new N N ??(0) ?? 251 012629 0x02F81EA8 0x00000050 0x02F81E98 0x00000070 0x00000000 new N N ??(0) ?? 252 012633 0x02F81F48 0x00000050 0x02F81F38 0x00000070 0x00000000 new N N ??(0) ?? 253 013470 0x02F89FA8 0x00000050 0x02F89F98 0x00000070 0x00000000 new N N ??(0) ?? 254 013474 0x02F8A048 0x0000003C 0x02F8A038 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 255 013475 0x02F8A0D0 0x00000050 0x02F8A0C0 0x00000070 0x00000000 new N N ??(0) ?? 256 013480 0x02F8A170 0x00000050 0x02F8A160 0x00000070 0x00000000 new N N ??(0) ?? 257 013484 0x02F8A210 0x00000050 0x02F8A200 0x00000070 0x00000000 new N N ??(0) ?? 258 013488 0x02F8A3B0 0x00000050 0x02F8A3A0 0x00000070 0x00000000 new N N ??(0) ?? 259 013492 0x02F8A4A0 0x00000050 0x02F8A490 0x00000070 0x00000000 new N N ??(0) ?? 260 013496 0x02F8A590 0x00000050 0x02F8A580 0x00000070 0x00000000 new N N ??(0) ?? 261 013500 0x02F8A630 0x00000050 0x02F8A620 0x00000070 0x00000000 new N N ??(0) ?? 262 013438 0x02F8BA50 0x0000003C 0x02F8BA40 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 263 013439 0x02F8D020 0x00000050 0x02F8D010 0x00000070 0x00000000 new N N ??(0) ?? 264 013444 0x02F8D0C0 0x00000050 0x02F8D0B0 0x00000070 0x00000000 new N N ??(0) ?? 265 013448 0x02F8D160 0x00000050 0x02F8D150 0x00000070 0x00000000 new N N ??(0) ?? 266 013452 0x02F8D200 0x00000050 0x02F8D1F0 0x00000070 0x00000000 new N N ??(0) ?? 267 013456 0x02F8D2A0 0x0000003C 0x02F8D290 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 268 013457 0x02F8D328 0x00000050 0x02F8D318 0x00000070 0x00000000 new N N ??(0) ?? 269 013462 0x02F8D420 0x00000050 0x02F8D410 0x00000070 0x00000000 new N N ??(0) ?? 270 013466 0x02F8D4C0 0x00000050 0x02F8D4B0 0x00000070 0x00000000 new N N ??(0) ?? 271 014499 0x02FC2F48 0x0000003C 0x02FC2F38 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 272 014500 0x02FC4748 0x00000050 0x02FC4738 0x00000070 0x00000000 new N N ??(0) ?? 273 014505 0x02FC47E8 0x00000050 0x02FC47D8 0x00000070 0x00000000 new N N ??(0) ?? 274 014509 0x02FC4978 0x00000050 0x02FC4968 0x00000070 0x00000000 new N N ??(0) ?? 275 014513 0x02FC4B08 0x00000050 0x02FC4AF8 0x00000070 0x00000000 new N N ??(0) ?? 276 014517 0x02FC4C08 0x00000050 0x02FC4BF8 0x00000070 0x00000000 new N N ??(0) ?? 277 014521 0x02FC4CA8 0x00000050 0x02FC4C98 0x00000070 0x00000000 new N N ??(0) ?? 278 015073 0x02FD22F0 0x0000003C 0x02FD22E0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 279 015074 0x02FD2378 0x00000050 0x02FD2368 0x00000070 0x00000000 new N N ??(0) ?? 280 015079 0x02FD2468 0x00000050 0x02FD2458 0x00000070 0x00000000 new N N ??(0) ?? 281 015083 0x02FD2508 0x00000050 0x02FD24F8 0x00000070 0x00000000 new N N ??(0) ?? 282 015087 0x02FD25A8 0x00000050 0x02FD2598 0x00000070 0x00000000 new N N ??(0) ?? 283 015091 0x02FD2648 0x0000003C 0x02FD2638 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 284 015092 0x02FD26D0 0x00000050 0x02FD26C0 0x00000070 0x00000000 new N N ??(0) ?? 285 015097 0x02FD27C8 0x00000050 0x02FD27B8 0x00000070 0x00000000 new N N ??(0) ?? 286 015101 0x02FD2868 0x00000050 0x02FD2858 0x00000070 0x00000000 new N N ??(0) ?? 287 015105 0x02FD2908 0x00000050 0x02FD28F8 0x00000070 0x00000000 new N N ??(0) ?? 288 015492 0x02FD4BE0 0x0000003C 0x02FD4BD0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 289 015493 0x02FD4C68 0x00000050 0x02FD4C58 0x00000070 0x00000000 new N N ??(0) ?? 290 015498 0x02FDB008 0x00000050 0x02FDAFF8 0x00000070 0x00000000 new N N ??(0) ?? 291 015502 0x02FDB0A8 0x00000050 0x02FDB098 0x00000070 0x00000000 new N N ??(0) ?? 292 015506 0x02FDB148 0x00000050 0x02FDB138 0x00000070 0x00000000 new N N ??(0) ?? 293 015510 0x02FDB1E8 0x00000050 0x02FDB1D8 0x00000070 0x00000000 new N N ??(0) ?? 294 015514 0x02FDB288 0x00000050 0x02FDB278 0x00000070 0x00000000 new N N ??(0) ?? 295 015518 0x02FDB328 0x0000003C 0x02FDB318 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 296 015524 0x02FDB3B0 0x00000050 0x02FDB3A0 0x00000070 0x00000000 new N N ??(0) ?? 297 015519 0x02FDB4B8 0x00000050 0x02FDB4A8 0x00000070 0x00000000 new N N ??(0) ?? 298 015528 0x02FDB558 0x00000050 0x02FDB548 0x00000070 0x00000000 new N N ??(0) ?? 299 015532 0x02FDB5F8 0x00000050 0x02FDB5E8 0x00000070 0x00000000 new N N ??(0) ?? 300 015536 0x02FDB698 0x00000050 0x02FDB688 0x00000070 0x00000000 new N N ??(0) ?? 301 015540 0x02FDB738 0x00000050 0x02FDB728 0x00000070 0x00000000 new N N ??(0) ?? 302 015544 0x02FDB7D8 0x0000003C 0x02FDB7C8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 303 015550 0x02FDB860 0x00000050 0x02FDB850 0x00000070 0x00000000 new N N ??(0) ?? 304 015545 0x02FDB968 0x00000050 0x02FDB958 0x00000070 0x00000000 new N N ??(0) ?? 305 015554 0x02FDBA08 0x00000050 0x02FDB9F8 0x00000070 0x00000000 new N N ??(0) ?? 306 015558 0x02FDBAA8 0x00000050 0x02FDBA98 0x00000070 0x00000000 new N N ??(0) ?? 307 015562 0x02FDBB48 0x00000050 0x02FDBB38 0x00000070 0x00000000 new N N ??(0) ?? 308 015566 0x02FDBBE8 0x00000050 0x02FDBBD8 0x00000070 0x00000000 new N N ??(0) ?? 309 015570 0x02FDBC88 0x00000050 0x02FDBC78 0x00000070 0x00000000 new N N ??(0) ?? 310 015574 0x02FDBD28 0x00000050 0x02FDBD18 0x00000070 0x00000000 new N N ??(0) ?? 311 015578 0x02FDBDC8 0x00000050 0x02FDBDB8 0x00000070 0x00000000 new N N ??(0) ?? 312 015582 0x02FDBE68 0x00000050 0x02FDBE58 0x00000070 0x00000000 new N N ??(0) ?? 313 015586 0x02FDBF08 0x00000050 0x02FDBEF8 0x00000070 0x00000000 new N N ??(0) ?? 314 015590 0x02FDBFA8 0x0000003C 0x02FDBF98 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 315 015596 0x02FDC030 0x00000050 0x02FDC020 0x00000070 0x00000000 new N N ??(0) ?? 316 015591 0x02FDC138 0x00000050 0x02FDC128 0x00000070 0x00000000 new N N ??(0) ?? 317 015600 0x02FDC1D8 0x00000050 0x02FDC1C8 0x00000070 0x00000000 new N N ??(0) ?? 318 015604 0x02FDC278 0x00000050 0x02FDC268 0x00000070 0x00000000 new N N ??(0) ?? 319 015608 0x02FDC318 0x00000050 0x02FDC308 0x00000070 0x00000000 new N N ??(0) ?? 320 015612 0x02FDC3B8 0x00000050 0x02FDC3A8 0x00000070 0x00000000 new N N ??(0) ?? 321 015616 0x02FDC458 0x00000050 0x02FDC448 0x00000070 0x00000000 new N N ??(0) ?? 322 015620 0x02FDC4F8 0x00000050 0x02FDC4E8 0x00000070 0x00000000 new N N ??(0) ?? 323 015624 0x02FDC598 0x00000050 0x02FDC588 0x00000070 0x00000000 new N N ??(0) ?? 324 015628 0x02FDC638 0x00000050 0x02FDC628 0x00000070 0x00000000 new N N ??(0) ?? 325 015632 0x02FDC6D8 0x00000050 0x02FDC6C8 0x00000070 0x00000000 new N N ??(0) ?? 326 016427 0x02FF6448 0x0000003C 0x02FF6438 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 327 016428 0x02FF64D0 0x00000050 0x02FF64C0 0x00000070 0x00000000 new N N ??(0) ?? 328 016433 0x02FF6610 0x00000050 0x02FF6600 0x00000070 0x00000000 new N N ??(0) ?? 329 016437 0x02FF6700 0x00000050 0x02FF66F0 0x00000070 0x00000000 new N N ??(0) ?? 330 026073 0x02FF6A08 0x00000018 0x02FF69F8 0x00000038 0x00000000 new N N ??(0) ?? 331 026074 0x02FF6A70 0x00000018 0x02FF6A60 0x00000038 0x00000000 new N N ??(0) ?? 332 026156 0x03022880 0x0000000C 0x03022870 0x0000002C 0x00000000 new N N ??(0) ?? 333 026157 0x030228D8 0x000000E8 0x030228C8 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 334 026158 0x03022A10 0x00000034 0x03022A00 0x00000054 0x00000000 new N N ??(0) ?? 335 026159 0x03022A90 0x00000034 0x03022A80 0x00000054 0x00000000 new N N ??(0) ?? 336 026160 0x03022B60 0x00000034 0x03022B50 0x00000054 0x00000000 new N N ??(0) ?? 337 026161 0x03022C30 0x00000034 0x03022C20 0x00000054 0x00000000 new N N ??(0) ?? 338 026162 0x03022D00 0x00000034 0x03022CF0 0x00000054 0x00000000 new N N ??(0) ?? 339 026163 0x03022DD0 0x00000034 0x03022DC0 0x00000054 0x00000000 new N N ??(0) ?? 340 026164 0x03022E50 0x00000034 0x03022E40 0x00000054 0x00000000 new N N ??(0) ?? 341 026165 0x03022F20 0x0000000C 0x03022F10 0x0000002C 0x00000000 new N N ??(0) ?? 342 026166 0x03022F78 0x00000044 0x03022F68 0x00000064 0x00000000 new N N ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 343 026167 0x03023008 0x00000034 0x03022FF8 0x00000054 0x00000000 new N N ??(0) ?? 344 026168 0x03023088 0x00000034 0x03023078 0x00000054 0x00000000 new N N ??(0) ?? 345 026169 0x03023108 0x0000000C 0x030230F8 0x0000002C 0x00000000 new N N ??(0) ?? 346 026170 0x03023160 0x00000044 0x03023150 0x00000064 0x00000000 new N N ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 347 026171 0x030231F0 0x00000034 0x030231E0 0x00000054 0x00000000 new N N ??(0) ?? 348 026172 0x03023270 0x00000034 0x03023260 0x00000054 0x00000000 new N N ??(0) ?? 349 026173 0x030232F0 0x0000000C 0x030232E0 0x0000002C 0x00000000 new N N ??(0) ?? 350 026174 0x03023348 0x000000D8 0x03023338 0x000000F8 0x00000000 new N N ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 351 026175 0x03023470 0x00000034 0x03023460 0x00000054 0x00000000 new N N ??(0) ?? 352 026176 0x030234F0 0x00000034 0x030234E0 0x00000054 0x00000000 new N N ??(0) ?? 353 026177 0x03023570 0x00000034 0x03023560 0x00000054 0x00000000 new N N ??(0) ?? 354 026178 0x030235F0 0x00000034 0x030235E0 0x00000054 0x00000000 new N N ??(0) ?? 355 026179 0x03023670 0x00000034 0x03023660 0x00000054 0x00000000 new N N ??(0) ?? 356 026180 0x030236F0 0x00000034 0x030236E0 0x00000054 0x00000000 new N N ??(0) ?? 357 026181 0x03023770 0x00000034 0x03023760 0x00000054 0x00000000 new N N ??(0) ?? 358 026186 0x030237F0 0x0000000C 0x030237E0 0x0000002C 0x00000000 new N N ??(0) ?? 359 026069 0x0306A730 0x00000018 0x0306A720 0x00000038 0x00000000 new N N ??(0) ?? 360 026070 0x0306A798 0x00000018 0x0306A788 0x00000038 0x00000000 new N N ??(0) ?? 361 026080 0x0306BCB8 0x00000018 0x0306BCA8 0x00000038 0x00000000 new N N ??(0) ?? 362 026081 0x0306BD20 0x00000018 0x0306BD10 0x00000038 0x00000000 new N N ??(0) ?? 363 026082 0x0306BD88 0x00000018 0x0306BD78 0x00000038 0x00000000 new N N ??(0) ?? 364 026061 0x0306BF18 0x00000018 0x0306BF08 0x00000038 0x00000000 new N N ??(0) ?? 365 026056 0x0306CC98 0x000001F8 0x0306CC88 0x00000218 0x00000000 new N N ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 366 026077 0x0306CEE0 0x00000018 0x0306CED0 0x00000038 0x00000000 new N N ??(0) ?? 367 026078 0x0306CF48 0x00000018 0x0306CF38 0x00000038 0x00000000 new N N ??(0) ?? 368 026079 0x0306CFB0 0x00000018 0x0306CFA0 0x00000038 0x00000000 new N N ??(0) ?? 369 026182 0x0306D018 0x00000034 0x0306D008 0x00000054 0x00000000 new N N ??(0) ?? 370 026183 0x0306D098 0x00000034 0x0306D088 0x00000054 0x00000000 new N N ??(0) ?? 371 026184 0x0306D118 0x00000034 0x0306D108 0x00000054 0x00000000 new N N ??(0) ?? 372 026185 0x0306D198 0x00000034 0x0306D188 0x00000054 0x00000000 new N N ??(0) ?? 373 026187 0x0306D218 0x0000009C 0x0306D208 0x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 374 026188 0x0306D300 0x00000034 0x0306D2F0 0x00000054 0x00000000 new N N ??(0) ?? 375 026189 0x0306D380 0x00000034 0x0306D370 0x00000054 0x00000000 new N N ??(0) ?? 376 026190 0x0306D400 0x00000034 0x0306D3F0 0x00000054 0x00000000 new N N ??(0) ?? 377 026191 0x0306D480 0x00000034 0x0306D470 0x00000054 0x00000000 new N N ??(0) ?? 378 026192 0x0306D500 0x00000034 0x0306D4F0 0x00000054 0x00000000 new N N ??(0) ?? 379 026193 0x0306D580 0x00000034 0x0306D570 0x00000054 0x00000000 new N N ??(0) ?? 380 026194 0x0306D650 0x00000034 0x0306D640 0x00000054 0x00000000 new N N ??(0) ?? 381 026195 0x0306D720 0x00000034 0x0306D710 0x00000054 0x00000000 new N N ??(0) ?? 382 026196 0x0306D7A0 0x00000034 0x0306D790 0x00000054 0x00000000 new N N ??(0) ?? 383 026197 0x0306D820 0x00000034 0x0306D810 0x00000054 0x00000000 new N N ??(0) ?? 384 026198 0x0306D8A0 0x00000034 0x0306D890 0x00000054 0x00000000 new N N ??(0) ?? 385 026199 0x0306D970 0x0000000C 0x0306D960 0x0000002C 0x00000000 new N N ??(0) ?? 386 026062 0x0307D7D8 0x00000034 0x0307D7C8 0x00000054 0x00000000 new N N ??(0) ?? 387 026059 0x0307E278 0x0000000C 0x0307E268 0x0000002C 0x00000000 new N N ??(0) ?? 388 028830 0x03D90DA0 0x000000C4 0x03D90D90 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(270) OgreIlluminationManager::initTechniques 389 028832 0x03D90F08 0x00000020 0x03D90EF8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(271) OgreIlluminationManager::initTechniques 390 028833 0x03D90F78 0x00000104 0x03D90F68 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(276) OgreIlluminationManager::initTechniques 391 028834 0x03D910C8 0x00000018 0x03D910B8 0x00000038 0x00000000 new N N ??(0) ?? 392 028835 0x03D91130 0x00000018 0x03D91120 0x00000038 0x00000000 new N N ??(0) ?? 393 028836 0x03D91198 0x00000034 0x03D91188 0x00000054 0x00000000 new N N ??(0) ?? 394 028837 0x03D91218 0x0000000C 0x03D91208 0x0000002C 0x00000000 new N N ??(0) ?? 395 028839 0x03D91270 0x00000018 0x03D91260 0x00000038 0x00000000 new N N ??(0) ?? 396 028846 0x03D912D8 0x000000E4 0x03D912C8 0x00000104 0x00000000 new N N ogrehierarchicalparticlesystemtechnique(211) OgreHierarchicalParticleSystemTechnique 397 028908 0x03D92F30 0x00000124 0x03D92F20 0x00000144 0x00000000 new N N ogrehierarchicalparticlesystemtechnique(65) OgreHierarchicalParticleSystemTechnique 398 028909 0x03D93190 0x00000034 0x03D93180 0x00000054 0x00000000 new N N ??(0) ?? 399 028933 0x03D94830 0x00000018 0x03D94820 0x00000038 0x00000000 new N N ??(0) ?? 400 028938 0x03D94908 0x0000003C 0x03D948F8 0x0000005C 0x00000000 new N N ogresbbrendertechnique.cpp(94) OgreSBBRenderTechniqueFactory::createIn 401 028939 0x03D94990 0x000000B4 0x03D94980 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(519) OgreIlluminationManager::createGlobalRu 402 028940 0x03D94A90 0x00000034 0x03D94A80 0x00000054 0x00000000 new N N ??(0) ?? 403 028955 0x03D95530 0x00000018 0x03D95520 0x00000038 0x00000000 new N N ??(0) ?? 404 028956 0x03D95598 0x000000E8 0x03D95588 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 405 028957 0x03D956D0 0x00000034 0x03D956C0 0x00000054 0x00000000 new N N ??(0) ?? 406 028981 0x03D96D28 0x00000018 0x03D96D18 0x00000038 0x00000000 new N N ??(0) ?? 407 028982 0x03D96D90 0x000000D4 0x03D96D80 0x000000F4 0x00000000 new N N ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 408 028983 0x03D96EB0 0x00000034 0x03D96EA0 0x00000054 0x00000000 new N N ??(0) ?? 409 029009 0x03D97808 0x00000004 0x03D977F8 0x00000024 0x00000000 new N N ??(0) ?? 410 029007 0x03D983C0 0x00000018 0x03D983B0 0x00000038 0x00000000 new N N ??(0) ?? 411 029011 0x03D984E8 0x00000008 0x03D984D8 0x00000028 0x00000000 new N N ??(0) ?? 412 032666 0x03DEFD50 0x00000004 0x03DEFD40 0x00000024 0x00000000 new N N ??(0) ?? 11 026360 0x02155E40 0x00000034 0x02155E30 0x00000054 0x00000000 new N N ??(0) ?? 12 026361 0x02155ED0 0x00000034 0x02155EC0 0x00000054 0x00000000 new N N ??(0) ?? 13 026362 0x02155F60 0x00000034 0x02155F50 0x00000054 0x00000000 new N N ??(0) ?? 14 026363 0x02155FF0 0x00000034 0x02155FE0 0x00000054 0x00000000 new N N ??(0) ?? 15 026364 0x02156080 0x00000034 0x02156070 0x00000054 0x00000000 new N N ??(0) ?? 16 026366 0x02156110 0x000000E4 0x02156100 0x00000104 0x00000000 new N N ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 17 026367 0x02156250 0x00000034 0x02156240 0x00000054 0x00000000 new N N ??(0) ?? 18 026368 0x021562E0 0x00000034 0x021562D0 0x00000054 0x00000000 new N N ??(0) ?? 19 026369 0x02156370 0x00000034 0x02156360 0x00000054 0x00000000 new N N ??(0) ?? 20 026370 0x02156400 0x00000034 0x021563F0 0x00000054 0x00000000 new N N ??(0) ?? 21 026351 0x0215E100 0x00000034 0x0215E0F0 0x00000054 0x00000000 new N N ??(0) ?? 22 026352 0x0215E190 0x00000034 0x0215E180 0x00000054 0x00000000 new N N ??(0) ?? 23 026353 0x0215E220 0x00000034 0x0215E210 0x00000054 0x00000000 new N N ??(0) ?? 24 026354 0x0215E2B0 0x00000034 0x0215E2A0 0x00000054 0x00000000 new N N ??(0) ?? 25 026355 0x0215E340 0x00000034 0x0215E330 0x00000054 0x00000000 new N N ??(0) ?? 26 026356 0x0215E3D0 0x00000034 0x0215E3C0 0x00000054 0x00000000 new N N ??(0) ?? 27 026357 0x0215E460 0x00000034 0x0215E450 0x00000054 0x00000000 new N N ??(0) ?? 28 026358 0x0215E4F0 0x00000034 0x0215E4E0 0x00000054 0x00000000 new N N ??(0) ?? 29 026359 0x0215E580 0x00000034 0x0215E570 0x00000054 0x00000000 new N N ??(0) ?? 30 026384 0x0215E610 0x0000000C 0x0215E600 0x0000002C 0x00000000 new N N ??(0) ?? 31 026334 0x0215EB70 0x00000018 0x0215EB60 0x00000038 0x00000000 new N N ??(0) ?? 32 026335 0x0215EBE8 0x00000018 0x0215EBD8 0x00000038 0x00000000 new N N ??(0) ?? 33 026336 0x0215EC60 0x00000018 0x0215EC50 0x00000038 0x00000000 new N N ??(0) ?? 34 026337 0x0215ECD8 0x00000018 0x0215ECC8 0x00000038 0x00000000 new N N ??(0) ?? 35 026338 0x0215ED50 0x00000018 0x0215ED40 0x00000038 0x00000000 new N N ??(0) ?? 36 026339 0x0215EDC8 0x00000018 0x0215EDB8 0x00000038 0x00000000 new N N ??(0) ?? 37 026340 0x0215EE40 0x00000018 0x0215EE30 0x00000038 0x00000000 new N N ??(0) ?? 38 026341 0x0215EEB8 0x00000018 0x0215EEA8 0x00000038 0x00000000 new N N ??(0) ?? 39 026342 0x0215EF30 0x00000018 0x0215EF20 0x00000038 0x00000000 new N N ??(0) ?? 40 026343 0x0215F030 0x00000018 0x0215F020 0x00000038 0x00000000 new N N ??(0) ?? 41 026344 0x0215F0A8 0x00000018 0x0215F098 0x00000038 0x00000000 new N N ??(0) ?? 42 026345 0x0215F120 0x00000018 0x0215F110 0x00000038 0x00000000 new N N ??(0) ?? 43 026346 0x0215F198 0x00000018 0x0215F188 0x00000038 0x00000000 new N N ??(0) ?? 44 026347 0x0215F210 0x000000E4 0x0215F200 0x00000104 0x00000000 new N N ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 45 026348 0x0215F350 0x00000034 0x0215F340 0x00000054 0x00000000 new N N ??(0) ?? 46 026349 0x0215F3E0 0x00000034 0x0215F3D0 0x00000054 0x00000000 new N N ??(0) ?? 47 026350 0x0215F470 0x00000034 0x0215F460 0x00000054 0x00000000 new N N ??(0) ?? 48 026365 0x0215F500 0x0000000C 0x0215F4F0 0x0000002C 0x00000000 new N N ??(0) ?? 49 026315 0x0215F678 0x00000018 0x0215F668 0x00000038 0x00000000 new N N ??(0) ?? 50 026319 0x0215FA30 0x00000034 0x0215FA20 0x00000054 0x00000000 new N N ??(0) ?? 51 026328 0x02167038 0x00000018 0x02167028 0x00000038 0x00000000 new N N ??(0) ?? 52 026329 0x021670B0 0x00000018 0x021670A0 0x00000038 0x00000000 new N N ??(0) ?? 53 026320 0x021671F8 0x00000034 0x021671E8 0x00000054 0x00000000 new N N ??(0) ?? 54 029619 0x02168B68 0x00000034 0x02168B58 0x00000054 0x00000000 new N N ??(0) ?? 55 026314 0x0216D388 0x0000000C 0x0216D378 0x0000002C 0x00000000 new N N ??(0) ?? 56 026424 0x0218E8B0 0x00000034 0x0218E8A0 0x00000054 0x00000000 new N N ??(0) ?? 57 026425 0x0218E9A0 0x0000000C 0x0218E990 0x0000002C 0x00000000 new N N ??(0) ?? 58 026426 0x0218EA08 0x000000E8 0x0218E9F8 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 59 026427 0x0218EB50 0x00000034 0x0218EB40 0x00000054 0x00000000 new N N ??(0) ?? 60 026428 0x0218EBE0 0x00000034 0x0218EBD0 0x00000054 0x00000000 new N N ??(0) ?? 61 026429 0x0218ECD0 0x00000034 0x0218ECC0 0x00000054 0x00000000 new N N ??(0) ?? 62 026430 0x0218EDC0 0x00000034 0x0218EDB0 0x00000054 0x00000000 new N N ??(0) ?? 63 026431 0x0218EEB0 0x00000034 0x0218EEA0 0x00000054 0x00000000 new N N ??(0) ?? 64 026432 0x0218EFA0 0x00000034 0x0218EF90 0x00000054 0x00000000 new N N ??(0) ?? 65 026433 0x0218F030 0x00000034 0x0218F020 0x00000054 0x00000000 new N N ??(0) ?? 66 026434 0x0218F120 0x0000000C 0x0218F110 0x0000002C 0x00000000 new N N ??(0) ?? 67 026435 0x0218F188 0x00000044 0x0218F178 0x00000064 0x00000000 new N N ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 68 026436 0x0218F228 0x00000034 0x0218F218 0x00000054 0x00000000 new N N ??(0) ?? 69 026437 0x0218F2B8 0x00000034 0x0218F2A8 0x00000054 0x00000000 new N N ??(0) ?? 70 026438 0x0218F348 0x0000000C 0x0218F338 0x0000002C 0x00000000 new N N ??(0) ?? 71 026439 0x0218F3B0 0x00000044 0x0218F3A0 0x00000064 0x00000000 new N N ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 72 026440 0x0218F450 0x00000034 0x0218F440 0x00000054 0x00000000 new N N ??(0) ?? 73 026441 0x0218F4E0 0x00000034 0x0218F4D0 0x00000054 0x00000000 new N N ??(0) ?? 74 026442 0x0218F570 0x0000000C 0x0218F560 0x0000002C 0x00000000 new N N ??(0) ?? 75 026443 0x0218F5D8 0x000000D8 0x0218F5C8 0x000000F8 0x00000000 new N N ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 76 026444 0x0218F710 0x00000034 0x0218F700 0x00000054 0x00000000 new N N ??(0) ?? 77 026445 0x0218F7A0 0x00000034 0x0218F790 0x00000054 0x00000000 new N N ??(0) ?? 78 026446 0x0218F830 0x00000034 0x0218F820 0x00000054 0x00000000 new N N ??(0) ?? 79 026447 0x0218F8C0 0x00000034 0x0218F8B0 0x00000054 0x00000000 new N N ??(0) ?? 80 026448 0x0218F950 0x00000034 0x0218F940 0x00000054 0x00000000 new N N ??(0) ?? 81 026449 0x0218F9E0 0x00000034 0x0218F9D0 0x00000054 0x00000000 new N N ??(0) ?? 82 026450 0x0218FA70 0x00000034 0x0218FA60 0x00000054 0x00000000 new N N ??(0) ?? 83 026451 0x0218FB00 0x00000034 0x0218FAF0 0x00000054 0x00000000 new N N ??(0) ?? 84 026452 0x0218FB90 0x00000034 0x0218FB80 0x00000054 0x00000000 new N N ??(0) ?? 85 026453 0x0218FC20 0x00000034 0x0218FC10 0x00000054 0x00000000 new N N ??(0) ?? 86 026454 0x0218FCB0 0x00000034 0x0218FCA0 0x00000054 0x00000000 new N N ??(0) ?? 87 026455 0x0218FD40 0x0000000C 0x0218FD30 0x0000002C 0x00000000 new N N ??(0) ?? 88 026456 0x0218FDA8 0x0000009C 0x0218FD98 0x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 89 026468 0x0218FEA0 0x0000000C 0x0218FE90 0x0000002C 0x00000000 new N N ??(0) ?? 90 007410 0x021B5C70 0x00000050 0x021B5C60 0x00000070 0x00000000 new N N ??(0) ?? 91 007404 0x021B5D30 0x0000003C 0x021B5D20 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 92 007405 0x021B5DC8 0x00000050 0x021B5DB8 0x00000070 0x00000000 new N N ??(0) ?? 93 007422 0x021B5F38 0x00000050 0x021B5F28 0x00000070 0x00000000 new N N ??(0) ?? 94 007414 0x021B60D8 0x00000050 0x021B60C8 0x00000070 0x00000000 new N N ??(0) ?? 95 007418 0x021B61F8 0x00000050 0x021B61E8 0x00000070 0x00000000 new N N ??(0) ?? 96 007426 0x021B6378 0x00000050 0x021B6368 0x00000070 0x00000000 new N N ??(0) ?? 97 007534 0x021B6428 0x00000050 0x021B6418 0x00000070 0x00000000 new N N ??(0) ?? 98 007528 0x021B6558 0x0000003C 0x021B6548 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 99 007529 0x021BFA40 0x00000050 0x021BFA30 0x00000070 0x00000000 new N N ??(0) ?? 100 007538 0x021BFB50 0x00000050 0x021BFB40 0x00000070 0x00000000 new N N ??(0) ?? 101 007542 0x021C7A88 0x00000050 0x021C7A78 0x00000070 0x00000000 new N N ??(0) ?? 102 007546 0x021C7BA8 0x00000050 0x021C7B98 0x00000070 0x00000000 new N N ??(0) ?? 103 007550 0x021C7C58 0x00000050 0x021C7C48 0x00000070 0x00000000 new N N ??(0) ?? 104 007743 0x021C8960 0x00000050 0x021C8950 0x00000070 0x00000000 new N N ??(0) ?? 105 007737 0x021C8AC0 0x0000003C 0x021C8AB0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 106 007738 0x021CB3A8 0x00000050 0x021CB398 0x00000070 0x00000000 new N N ??(0) ?? 107 007755 0x021CB4B8 0x00000050 0x021CB4A8 0x00000070 0x00000000 new N N ??(0) ?? 108 007747 0x021CB658 0x00000050 0x021CB648 0x00000070 0x00000000 new N N ??(0) ?? 109 007751 0x021CB778 0x00000050 0x021CB768 0x00000070 0x00000000 new N N ??(0) ?? 110 007759 0x021CB8F8 0x00000050 0x021CB8E8 0x00000070 0x00000000 new N N ??(0) ?? 111 026313 0x021CDBD8 0x000001F8 0x021CDBC8 0x00000218 0x00000000 new N N ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 112 026330 0x021CDE30 0x00000018 0x021CDE20 0x00000038 0x00000000 new N N ??(0) ?? 113 026331 0x021CDEA8 0x00000018 0x021CDE98 0x00000038 0x00000000 new N N ??(0) ?? 114 026332 0x021CDF20 0x00000018 0x021CDF10 0x00000038 0x00000000 new N N ??(0) ?? 115 026333 0x021CDF98 0x00000018 0x021CDF88 0x00000038 0x00000000 new N N ??(0) ?? 116 008074 0x021D1008 0x00000050 0x021D0FF8 0x00000070 0x00000000 new N N ??(0) ?? 117 008068 0x021D1168 0x0000003C 0x021D1158 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 118 008069 0x021D3A30 0x00000050 0x021D3A20 0x00000070 0x00000000 new N N ??(0) ?? 119 008078 0x021D3CE0 0x00000050 0x021D3CD0 0x00000070 0x00000000 new N N ??(0) ?? 120 008082 0x021D3E00 0x00000050 0x021D3DF0 0x00000070 0x00000000 new N N ??(0) ?? 121 008086 0x021D3F20 0x00000050 0x021D3F10 0x00000070 0x00000000 new N N ??(0) ?? 122 008090 0x021D3FD0 0x00000050 0x021D3FC0 0x00000070 0x00000000 new N N ??(0) ?? 123 029551 0x021DE200 0x00000034 0x021DE1F0 0x00000054 0x00000000 new N N ??(0) ?? 124 009329 0x02F28950 0x00000050 0x02F28940 0x00000070 0x00000000 new N N ??(0) ?? 125 009333 0x02F28A00 0x00000050 0x02F289F0 0x00000070 0x00000000 new N N ??(0) ?? 126 009343 0x02F28AB0 0x00000050 0x02F28AA0 0x00000070 0x00000000 new N N ??(0) ?? 127 009347 0x02F28B60 0x00000050 0x02F28B50 0x00000070 0x00000000 new N N ??(0) ?? 128 009337 0x02F28C10 0x0000003C 0x02F28C00 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 129 009338 0x02F28CA8 0x00000050 0x02F28C98 0x00000070 0x00000000 new N N ??(0) ?? 130 009351 0x02F28DC0 0x00000050 0x02F28DB0 0x00000070 0x00000000 new N N ??(0) ?? 131 009355 0x02F28FC0 0x00000050 0x02F28FB0 0x00000070 0x00000000 new N N ??(0) ?? 132 009359 0x02F29070 0x00000050 0x02F29060 0x00000070 0x00000000 new N N ??(0) ?? 133 009363 0x02F29120 0x00000050 0x02F29110 0x00000070 0x00000000 new N N ??(0) ?? 134 009323 0x02F2BE80 0x0000003C 0x02F2BE70 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 135 009324 0x02F2BF18 0x00000050 0x02F2BF08 0x00000070 0x00000000 new N N ??(0) ?? 136 010349 0x02F2C090 0x00000050 0x02F2C080 0x00000070 0x00000000 new N N ??(0) ?? 137 010353 0x02F2C140 0x00000050 0x02F2C130 0x00000070 0x00000000 new N N ??(0) ?? 138 010357 0x02F2C1F0 0x00000050 0x02F2C1E0 0x00000070 0x00000000 new N N ??(0) ?? 139 010498 0x02F2E1F8 0x0000003C 0x02F2E1E8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 140 010499 0x02F2E290 0x00000050 0x02F2E280 0x00000070 0x00000000 new N N ??(0) ?? 141 010504 0x02F2E340 0x00000050 0x02F2E330 0x00000070 0x00000000 new N N ??(0) ?? 142 010508 0x02F2E3F0 0x00000050 0x02F2E3E0 0x00000070 0x00000000 new N N ??(0) ?? 143 010512 0x02F2E4A0 0x00000050 0x02F2E490 0x00000070 0x00000000 new N N ??(0) ?? 144 010516 0x02F2E550 0x0000003C 0x02F2E540 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 145 010517 0x02F2E5E8 0x00000050 0x02F2E5D8 0x00000070 0x00000000 new N N ??(0) ?? 146 010522 0x02F2E700 0x00000050 0x02F2E6F0 0x00000070 0x00000000 new N N ??(0) ?? 147 010526 0x02F2E7B0 0x00000050 0x02F2E7A0 0x00000070 0x00000000 new N N ??(0) ?? 148 010530 0x02F2E860 0x00000050 0x02F2E850 0x00000070 0x00000000 new N N ??(0) ?? 149 010671 0x02F304B0 0x0000003C 0x02F304A0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 150 009568 0x02F372C8 0x0000003C 0x02F372B8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 151 009569 0x02F37360 0x00000050 0x02F37350 0x00000070 0x00000000 new N N ??(0) ?? 152 009574 0x02F387A8 0x00000050 0x02F38798 0x00000070 0x00000000 new N N ??(0) ?? 153 009578 0x02F38858 0x00000050 0x02F38848 0x00000070 0x00000000 new N N ??(0) ?? 154 009582 0x02F38908 0x00000050 0x02F388F8 0x00000070 0x00000000 new N N ??(0) ?? 155 009586 0x02F389B8 0x00000050 0x02F389A8 0x00000070 0x00000000 new N N ??(0) ?? 156 009590 0x02F38A68 0x00000050 0x02F38A58 0x00000070 0x00000000 new N N ??(0) ?? 157 009600 0x02F38B18 0x00000050 0x02F38B08 0x00000070 0x00000000 new N N ??(0) ?? 158 009594 0x02F38BD8 0x0000003C 0x02F38BC8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 159 009595 0x02F38C70 0x00000050 0x02F38C60 0x00000070 0x00000000 new N N ??(0) ?? 160 009608 0x02F38D88 0x00000050 0x02F38D78 0x00000070 0x00000000 new N N ??(0) ?? 161 009604 0x02F38F28 0x00000050 0x02F38F18 0x00000070 0x00000000 new N N ??(0) ?? 162 009612 0x02F38FD8 0x00000050 0x02F38FC8 0x00000070 0x00000000 new N N ??(0) ?? 163 009616 0x02F39088 0x00000050 0x02F39078 0x00000070 0x00000000 new N N ??(0) ?? 164 009620 0x02F39138 0x00000050 0x02F39128 0x00000070 0x00000000 new N N ??(0) ?? 165 009790 0x02F3E4B8 0x0000003C 0x02F3E4A8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 166 009791 0x02F42DC8 0x00000050 0x02F42DB8 0x00000070 0x00000000 new N N ??(0) ?? 167 009796 0x02F42E78 0x00000050 0x02F42E68 0x00000070 0x00000000 new N N ??(0) ?? 168 009800 0x02F42F28 0x00000050 0x02F42F18 0x00000070 0x00000000 new N N ??(0) ?? 169 009804 0x02F42FD8 0x00000050 0x02F42FC8 0x00000070 0x00000000 new N N ??(0) ?? 170 009808 0x02F43088 0x00000050 0x02F43078 0x00000070 0x00000000 new N N ??(0) ?? 171 009812 0x02F43138 0x00000050 0x02F43128 0x00000070 0x00000000 new N N ??(0) ?? 172 009816 0x02F43248 0x0000003C 0x02F43238 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 173 009817 0x02F432E0 0x00000050 0x02F432D0 0x00000070 0x00000000 new N N ??(0) ?? 174 009822 0x02F433F8 0x00000050 0x02F433E8 0x00000070 0x00000000 new N N ??(0) ?? 175 009826 0x02F434A8 0x00000050 0x02F43498 0x00000070 0x00000000 new N N ??(0) ?? 176 009830 0x02F435B8 0x00000050 0x02F435A8 0x00000070 0x00000000 new N N ??(0) ?? 177 009834 0x02F43668 0x00000050 0x02F43658 0x00000070 0x00000000 new N N ??(0) ?? 178 009838 0x02F43718 0x00000050 0x02F43708 0x00000070 0x00000000 new N N ??(0) ?? 179 009842 0x02F437C8 0x00000050 0x02F437B8 0x00000070 0x00000000 new N N ??(0) ?? 180 009985 0x02F449D0 0x0000003C 0x02F449C0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 181 010011 0x02F48768 0x0000003C 0x02F48758 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 182 010012 0x02F48800 0x00000050 0x02F487F0 0x00000070 0x00000000 new N N ??(0) ?? 183 010025 0x02F48918 0x00000050 0x02F48908 0x00000070 0x00000000 new N N ??(0) ?? 184 010029 0x02F48B18 0x00000050 0x02F48B08 0x00000070 0x00000000 new N N ??(0) ?? 185 010033 0x02F48BC8 0x00000050 0x02F48BB8 0x00000070 0x00000000 new N N ??(0) ?? 186 010037 0x02F48C78 0x00000050 0x02F48C68 0x00000070 0x00000000 new N N ??(0) ?? 187 010021 0x02F4D378 0x00000050 0x02F4D368 0x00000070 0x00000000 new N N ??(0) ?? 188 009986 0x02F55B58 0x00000050 0x02F55B48 0x00000070 0x00000000 new N N ??(0) ?? 189 009991 0x02F55C08 0x00000050 0x02F55BF8 0x00000070 0x00000000 new N N ??(0) ?? 190 009995 0x02F55CB8 0x00000050 0x02F55CA8 0x00000070 0x00000000 new N N ??(0) ?? 191 009999 0x02F55D68 0x00000050 0x02F55D58 0x00000070 0x00000000 new N N ??(0) ?? 192 010003 0x02F55E18 0x00000050 0x02F55E08 0x00000070 0x00000000 new N N ??(0) ?? 193 010007 0x02F55EC8 0x00000050 0x02F55EB8 0x00000070 0x00000000 new N N ??(0) ?? 194 010017 0x02F55F78 0x00000050 0x02F55F68 0x00000070 0x00000000 new N N ??(0) ?? 195 010144 0x02F567B8 0x0000003C 0x02F567A8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 196 010145 0x02F5ACF0 0x00000050 0x02F5ACE0 0x00000070 0x00000000 new N N ??(0) ?? 197 010150 0x02F5ADA0 0x00000050 0x02F5AD90 0x00000070 0x00000000 new N N ??(0) ?? 198 010154 0x02F5AE50 0x00000050 0x02F5AE40 0x00000070 0x00000000 new N N ??(0) ?? 199 010158 0x02F5AF00 0x00000050 0x02F5AEF0 0x00000070 0x00000000 new N N ??(0) ?? 200 010162 0x02F5AFB0 0x0000003C 0x02F5AFA0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 201 010163 0x02F5B048 0x00000050 0x02F5B038 0x00000070 0x00000000 new N N ??(0) ?? 202 010168 0x02F5B160 0x00000050 0x02F5B150 0x00000070 0x00000000 new N N ??(0) ?? 203 010172 0x02F5B210 0x00000050 0x02F5B200 0x00000070 0x00000000 new N N ??(0) ?? 204 010176 0x02F5B2C0 0x00000050 0x02F5B2B0 0x00000070 0x00000000 new N N ??(0) ?? 205 010344 0x02F631D0 0x00000050 0x02F631C0 0x00000070 0x00000000 new N N ??(0) ?? 206 010325 0x02F63B10 0x0000003C 0x02F63B00 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 207 010326 0x02F63BA8 0x00000050 0x02F63B98 0x00000070 0x00000000 new N N ??(0) ?? 208 010331 0x02F63CB8 0x00000050 0x02F63CA8 0x00000070 0x00000000 new N N ??(0) ?? 209 010335 0x02F63D68 0x00000050 0x02F63D58 0x00000070 0x00000000 new N N ??(0) ?? 210 010339 0x02F63E18 0x00000050 0x02F63E08 0x00000070 0x00000000 new N N ??(0) ?? 211 010343 0x02F63EC8 0x0000003C 0x02F63EB8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 212 010672 0x02F641A0 0x00000050 0x02F64190 0x00000070 0x00000000 new N N ??(0) ?? 213 010677 0x02F642B0 0x00000050 0x02F642A0 0x00000070 0x00000000 new N N ??(0) ?? 214 010681 0x02F64360 0x00000050 0x02F64350 0x00000070 0x00000000 new N N ??(0) ?? 215 010685 0x02F64410 0x00000050 0x02F64400 0x00000070 0x00000000 new N N ??(0) ?? 216 010689 0x02F644C0 0x0000003C 0x02F644B0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 217 010690 0x02F64558 0x00000050 0x02F64548 0x00000070 0x00000000 new N N ??(0) ?? 218 010695 0x02F64670 0x00000050 0x02F64660 0x00000070 0x00000000 new N N ??(0) ?? 219 010699 0x02F64720 0x00000050 0x02F64710 0x00000070 0x00000000 new N N ??(0) ?? 220 010703 0x02F647D0 0x00000050 0x02F647C0 0x00000070 0x00000000 new N N ??(0) ?? 221 029617 0x02F71EA8 0x00000018 0x02F71E98 0x00000038 0x00000000 new N N ??(0) ?? 222 011188 0x02F73440 0x0000003C 0x02F73430 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 223 011194 0x02F73BB8 0x00000050 0x02F73BA8 0x00000070 0x00000000 new N N ??(0) ?? 224 011189 0x02F74000 0x00000050 0x02F73FF0 0x00000070 0x00000000 new N N ??(0) ?? 225 029591 0x02F778C0 0x00000018 0x02F778B0 0x00000038 0x00000000 new N N ??(0) ?? 226 029893 0x02F87480 0x00000220 0x02F87470 0x00000240 0x00000000 new N N ogrerenderingrun.cpp(204) OgreRenderingRun::renderFullscreenQuad 227 012212 0x02F940F0 0x0000003C 0x02F940E0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 228 012213 0x02F94188 0x00000050 0x02F94178 0x00000070 0x00000000 new N N ??(0) ?? 229 012218 0x02F942F8 0x00000050 0x02F942E8 0x00000070 0x00000000 new N N ??(0) ?? 230 012222 0x02F94408 0x00000050 0x02F943F8 0x00000070 0x00000000 new N N ??(0) ?? 231 012226 0x02F944B8 0x00000050 0x02F944A8 0x00000070 0x00000000 new N N ??(0) ?? 232 012401 0x02F96048 0x00000050 0x02F96038 0x00000070 0x00000000 new N N ??(0) ?? 233 012413 0x02F964F0 0x0000003C 0x02F964E0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 234 012409 0x02F965D0 0x00000050 0x02F965C0 0x00000070 0x00000000 new N N ??(0) ?? 235 012414 0x02F96780 0x00000050 0x02F96770 0x00000070 0x00000000 new N N ??(0) ?? 236 012391 0x02F97760 0x0000003C 0x02F97750 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 237 012392 0x02F9FC78 0x00000050 0x02F9FC68 0x00000070 0x00000000 new N N ??(0) ?? 238 012397 0x02F9FDE8 0x00000050 0x02F9FDD8 0x00000070 0x00000000 new N N ??(0) ?? 239 012405 0x02F9FEF8 0x00000050 0x02F9FEE8 0x00000070 0x00000000 new N N ??(0) ?? 240 012419 0x02F9FFA8 0x00000050 0x02F9FF98 0x00000070 0x00000000 new N N ??(0) ?? 241 012657 0x02FA04C0 0x0000003C 0x02FA04B0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 242 012658 0x02FA0558 0x00000050 0x02FA0548 0x00000070 0x00000000 new N N ??(0) ?? 243 012663 0x02FA0670 0x00000050 0x02FA0660 0x00000070 0x00000000 new N N ??(0) ?? 244 012667 0x02FA0720 0x0000003C 0x02FA0710 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 245 012668 0x02FA07B8 0x00000050 0x02FA07A8 0x00000070 0x00000000 new N N ??(0) ?? 246 012673 0x02FA0868 0x00000050 0x02FA0858 0x00000070 0x00000000 new N N ??(0) ?? 247 012677 0x02FA0918 0x00000050 0x02FA0908 0x00000070 0x00000000 new N N ??(0) ?? 248 012635 0x02FA5A98 0x0000003C 0x02FA5A88 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 249 012636 0x02FA8BA0 0x00000050 0x02FA8B90 0x00000070 0x00000000 new N N ??(0) ?? 250 012641 0x02FA8CB0 0x00000050 0x02FA8CA0 0x00000070 0x00000000 new N N ??(0) ?? 251 012645 0x02FA8DC0 0x00000050 0x02FA8DB0 0x00000070 0x00000000 new N N ??(0) ?? 252 012649 0x02FA8E70 0x00000050 0x02FA8E60 0x00000070 0x00000000 new N N ??(0) ?? 253 012653 0x02FA8F20 0x00000050 0x02FA8F10 0x00000070 0x00000000 new N N ??(0) ?? 254 013458 0x02FB29A8 0x0000003C 0x02FB2998 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 255 013459 0x02FC1358 0x00000050 0x02FC1348 0x00000070 0x00000000 new N N ??(0) ?? 256 013464 0x02FC1408 0x00000050 0x02FC13F8 0x00000070 0x00000000 new N N ??(0) ?? 257 013468 0x02FC14B8 0x00000050 0x02FC14A8 0x00000070 0x00000000 new N N ??(0) ?? 258 013472 0x02FC1568 0x00000050 0x02FC1558 0x00000070 0x00000000 new N N ??(0) ?? 259 013476 0x02FC1618 0x0000003C 0x02FC1608 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 260 013477 0x02FC16B0 0x00000050 0x02FC16A0 0x00000070 0x00000000 new N N ??(0) ?? 261 013494 0x02FC17C8 0x0000003C 0x02FC17B8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 262 013482 0x02FC1868 0x00000050 0x02FC1858 0x00000070 0x00000000 new N N ??(0) ?? 263 013486 0x02FC1918 0x00000050 0x02FC1908 0x00000070 0x00000000 new N N ??(0) ?? 264 013490 0x02FC19C8 0x00000050 0x02FC19B8 0x00000070 0x00000000 new N N ??(0) ?? 265 013495 0x02FC1A78 0x00000050 0x02FC1A68 0x00000070 0x00000000 new N N ??(0) ?? 266 013500 0x02FC1B28 0x00000050 0x02FC1B18 0x00000070 0x00000000 new N N ??(0) ?? 267 013504 0x02FC1BD8 0x00000050 0x02FC1BC8 0x00000070 0x00000000 new N N ??(0) ?? 268 013508 0x02FC1DB8 0x00000050 0x02FC1DA8 0x00000070 0x00000000 new N N ??(0) ?? 269 013512 0x02FC1EC8 0x00000050 0x02FC1EB8 0x00000070 0x00000000 new N N ??(0) ?? 270 013516 0x02FC1FD8 0x00000050 0x02FC1FC8 0x00000070 0x00000000 new N N ??(0) ?? 271 013520 0x02FC2088 0x00000050 0x02FC2078 0x00000070 0x00000000 new N N ??(0) ?? 272 026324 0x02FCBD90 0x00000018 0x02FCBD80 0x00000038 0x00000000 new N N ??(0) ?? 273 026325 0x02FCBE08 0x00000018 0x02FCBDF8 0x00000038 0x00000000 new N N ??(0) ?? 274 029550 0x02FD1BB8 0x00000034 0x02FD1BA8 0x00000054 0x00000000 new N N ??(0) ?? 275 029553 0x02FD78F0 0x00000034 0x02FD78E0 0x00000054 0x00000000 new N N ??(0) ?? 276 029529 0x02FE85A8 0x00000234 0x02FE8598 0x00000254 0x00000000 new N N ??(0) ?? 277 014519 0x02FECDF0 0x0000003C 0x02FECDE0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 278 014520 0x02FECE88 0x00000050 0x02FECE78 0x00000070 0x00000000 new N N ??(0) ?? 279 014525 0x02FEE6C8 0x00000050 0x02FEE6B8 0x00000070 0x00000000 new N N ??(0) ?? 280 014529 0x02FEE848 0x00000050 0x02FEE838 0x00000070 0x00000000 new N N ??(0) ?? 281 014533 0x02FEE9D8 0x00000050 0x02FEE9C8 0x00000070 0x00000000 new N N ??(0) ?? 282 014537 0x02FEEAF8 0x00000050 0x02FEEAE8 0x00000070 0x00000000 new N N ??(0) ?? 283 014541 0x02FEEBA8 0x00000050 0x02FEEB98 0x00000070 0x00000000 new N N ??(0) ?? 284 029549 0x02FEEC58 0x00000018 0x02FEEC48 0x00000038 0x00000000 new N N ??(0) ?? 285 030589 0x02FFAF48 0x00000034 0x02FFAF38 0x00000054 0x00000000 new N N ??(0) ?? 286 015093 0x02FFCD78 0x0000003C 0x02FFCD68 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 287 015094 0x02FFCE10 0x00000050 0x02FFCE00 0x00000070 0x00000000 new N N ??(0) ?? 288 015099 0x02FFCF20 0x00000050 0x02FFCF10 0x00000070 0x00000000 new N N ??(0) ?? 289 015103 0x02FFCFD0 0x00000050 0x02FFCFC0 0x00000070 0x00000000 new N N ??(0) ?? 290 015107 0x02FFD080 0x00000050 0x02FFD070 0x00000070 0x00000000 new N N ??(0) ?? 291 015111 0x02FFD130 0x0000003C 0x02FFD120 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 292 015112 0x02FFD1C8 0x00000050 0x02FFD1B8 0x00000070 0x00000000 new N N ??(0) ?? 293 015117 0x02FFD2E0 0x00000050 0x02FFD2D0 0x00000070 0x00000000 new N N ??(0) ?? 294 015121 0x02FFD390 0x00000050 0x02FFD380 0x00000070 0x00000000 new N N ??(0) ?? 295 015125 0x02FFD440 0x00000050 0x02FFD430 0x00000070 0x00000000 new N N ??(0) ?? 296 015839 0x0300AA88 0x0000003C 0x0300AA78 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 297 015734 0x0300AB28 0x00000050 0x0300AB18 0x00000070 0x00000000 new N N ??(0) ?? 298 015739 0x0300ABD8 0x00000050 0x0300ABC8 0x00000070 0x00000000 new N N ??(0) ?? 299 015743 0x0300AC88 0x00000050 0x0300AC78 0x00000070 0x00000000 new N N ??(0) ?? 300 015747 0x0300AD38 0x00000050 0x0300AD28 0x00000070 0x00000000 new N N ??(0) ?? 301 015751 0x0300ADE8 0x00000050 0x0300ADD8 0x00000070 0x00000000 new N N ??(0) ?? 302 015755 0x0300AE98 0x00000050 0x0300AE88 0x00000070 0x00000000 new N N ??(0) ?? 303 015760 0x0300AF48 0x00000050 0x0300AF38 0x00000070 0x00000000 new N N ??(0) ?? 304 015765 0x0300B060 0x00000050 0x0300B050 0x00000070 0x00000000 new N N ??(0) ?? 305 015769 0x0300B110 0x00000050 0x0300B100 0x00000070 0x00000000 new N N ??(0) ?? 306 015773 0x0300B1C0 0x00000050 0x0300B1B0 0x00000070 0x00000000 new N N ??(0) ?? 307 015777 0x0300B270 0x00000050 0x0300B260 0x00000070 0x00000000 new N N ??(0) ?? 308 015781 0x0300B320 0x00000050 0x0300B310 0x00000070 0x00000000 new N N ??(0) ?? 309 015785 0x0300B3D0 0x0000003C 0x0300B3C0 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 310 015786 0x0300B468 0x00000050 0x0300B458 0x00000070 0x00000000 new N N ??(0) ?? 311 015791 0x0300B580 0x00000050 0x0300B570 0x00000070 0x00000000 new N N ??(0) ?? 312 015795 0x0300B630 0x00000050 0x0300B620 0x00000070 0x00000000 new N N ??(0) ?? 313 015799 0x0300B6E0 0x00000050 0x0300B6D0 0x00000070 0x00000000 new N N ??(0) ?? 314 015803 0x0300B790 0x00000050 0x0300B780 0x00000070 0x00000000 new N N ??(0) ?? 315 015807 0x0300B840 0x00000050 0x0300B830 0x00000070 0x00000000 new N N ??(0) ?? 316 015811 0x0300B8F0 0x00000050 0x0300B8E0 0x00000070 0x00000000 new N N ??(0) ?? 317 015831 0x0300B9A0 0x00000050 0x0300B990 0x00000070 0x00000000 new N N ??(0) ?? 318 015840 0x0300BAF0 0x00000050 0x0300BAE0 0x00000070 0x00000000 new N N ??(0) ?? 319 015845 0x0300BBA0 0x00000050 0x0300BB90 0x00000070 0x00000000 new N N ??(0) ?? 320 015849 0x0300BC50 0x00000050 0x0300BC40 0x00000070 0x00000000 new N N ??(0) ?? 321 015853 0x0300BD00 0x00000050 0x0300BCF0 0x00000070 0x00000000 new N N ??(0) ?? 322 015857 0x0300BDB0 0x00000050 0x0300BDA0 0x00000070 0x00000000 new N N ??(0) ?? 323 015861 0x0300BE60 0x00000050 0x0300BE50 0x00000070 0x00000000 new N N ??(0) ?? 324 015865 0x0300BF10 0x00000050 0x0300BF00 0x00000070 0x00000000 new N N ??(0) ?? 325 015869 0x0300BFC0 0x00000050 0x0300BFB0 0x00000070 0x00000000 new N N ??(0) ?? 326 015873 0x0300C070 0x00000050 0x0300C060 0x00000070 0x00000000 new N N ??(0) ?? 327 015877 0x0300C120 0x00000050 0x0300C110 0x00000070 0x00000000 new N N ??(0) ?? 328 015881 0x0300C1D0 0x00000050 0x0300C1C0 0x00000070 0x00000000 new N N ??(0) ?? 329 015885 0x0300C280 0x00000050 0x0300C270 0x00000070 0x00000000 new N N ??(0) ?? 330 015889 0x0300C330 0x00000050 0x0300C320 0x00000070 0x00000000 new N N ??(0) ?? 331 015733 0x0300F850 0x0000003C 0x0300F840 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 332 015759 0x0300F8E8 0x0000003C 0x0300F8D8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 333 015815 0x03017C38 0x00000050 0x03017C28 0x00000070 0x00000000 new N N ??(0) ?? 334 015819 0x03017CE8 0x00000050 0x03017CD8 0x00000070 0x00000000 new N N ??(0) ?? 335 015823 0x03017D98 0x00000050 0x03017D88 0x00000070 0x00000000 new N N ??(0) ?? 336 015827 0x03017E48 0x00000050 0x03017E38 0x00000070 0x00000000 new N N ??(0) ?? 337 015835 0x03017EF8 0x00000050 0x03017EE8 0x00000070 0x00000000 new N N ??(0) ?? 338 029547 0x03018078 0x00000104 0x03018068 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight 339 029618 0x03019AE8 0x000000D4 0x03019AD8 0x000000F4 0x00000000 new N N ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 340 029643 0x0301B5D8 0x00000018 0x0301B5C8 0x00000038 0x00000000 new N N ??(0) ?? 341 027557 0x0301E2F0 0x00000034 0x0301E2E0 0x00000054 0x00000000 new N N ??(0) ?? 342 016684 0x03031808 0x0000003C 0x030317F8 0x0000005C 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 343 016685 0x03031948 0x00000050 0x03031938 0x00000070 0x00000000 new N N ??(0) ?? 344 016690 0x03031A58 0x00000050 0x03031A48 0x00000070 0x00000000 new N N ??(0) ?? 345 016694 0x03031B68 0x00000050 0x03031B58 0x00000070 0x00000000 new N N ??(0) ?? 346 029548 0x03037818 0x00000018 0x03037808 0x00000038 0x00000000 new N N ??(0) ?? 347 029552 0x03038F18 0x00000104 0x03038F08 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight 348 026404 0x03062230 0x0000000C 0x03062220 0x0000002C 0x00000000 new N N ??(0) ?? 349 026395 0x03066EB8 0x00000034 0x03066EA8 0x00000054 0x00000000 new N N ??(0) ?? 350 026396 0x03066F48 0x00000034 0x03066F38 0x00000054 0x00000000 new N N ??(0) ?? 351 026397 0x03066FD8 0x00000034 0x03066FC8 0x00000054 0x00000000 new N N ??(0) ?? 352 026398 0x03067068 0x00000034 0x03067058 0x00000054 0x00000000 new N N ??(0) ?? 353 026399 0x030670F8 0x00000034 0x030670E8 0x00000054 0x00000000 new N N ??(0) ?? 354 026400 0x03067188 0x00000034 0x03067178 0x00000054 0x00000000 new N N ??(0) ?? 355 026401 0x03067218 0x00000034 0x03067208 0x00000054 0x00000000 new N N ??(0) ?? 356 026402 0x030672A8 0x00000034 0x03067298 0x00000054 0x00000000 new N N ??(0) ?? 357 026403 0x03067338 0x00000034 0x03067328 0x00000054 0x00000000 new N N ??(0) ?? 358 026409 0x030673C8 0x00000034 0x030673B8 0x00000054 0x00000000 new N N ??(0) ?? 359 026410 0x03067458 0x00000034 0x03067448 0x00000054 0x00000000 new N N ??(0) ?? 360 026411 0x03067548 0x00000034 0x03067538 0x00000054 0x00000000 new N N ??(0) ?? 361 026412 0x03067638 0x00000034 0x03067628 0x00000054 0x00000000 new N N ??(0) ?? 362 026413 0x03067728 0x00000034 0x03067718 0x00000054 0x00000000 new N N ??(0) ?? 363 026414 0x03067818 0x00000034 0x03067808 0x00000054 0x00000000 new N N ??(0) ?? 364 026415 0x03067908 0x00000034 0x030678F8 0x00000054 0x00000000 new N N ??(0) ?? 365 026416 0x03067998 0x00000034 0x03067988 0x00000054 0x00000000 new N N ??(0) ?? 366 026417 0x03067A28 0x00000034 0x03067A18 0x00000054 0x00000000 new N N ??(0) ?? 367 026418 0x03067AB8 0x00000034 0x03067AA8 0x00000054 0x00000000 new N N ??(0) ?? 368 026419 0x03067BA8 0x0000000C 0x03067B98 0x0000002C 0x00000000 new N N ??(0) ?? 369 026420 0x03067C10 0x00000084 0x03067C00 0x000000A4 0x00000000 new N N ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 370 026421 0x03067CF0 0x00000034 0x03067CE0 0x00000054 0x00000000 new N N ??(0) ?? 371 026422 0x03067D80 0x00000034 0x03067D70 0x00000054 0x00000000 new N N ??(0) ?? 372 026423 0x03067E70 0x00000034 0x03067E60 0x00000054 0x00000000 new N N ??(0) ?? 373 026321 0x030A3518 0x00000018 0x030A3508 0x00000038 0x00000000 new N N ??(0) ?? 374 026323 0x030A3590 0x00000018 0x030A3580 0x00000038 0x00000000 new N N ??(0) ?? 375 026322 0x030A4D90 0x00000008 0x030A4D80 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 376 026326 0x030A4EC0 0x00000018 0x030A4EB0 0x00000038 0x00000000 new N N ??(0) ?? 377 026327 0x030A4F38 0x00000018 0x030A4F28 0x00000038 0x00000000 new N N ??(0) ?? 378 026371 0x030A5280 0x00000034 0x030A5270 0x00000054 0x00000000 new N N ??(0) ?? 379 026372 0x030A5310 0x00000034 0x030A5300 0x00000054 0x00000000 new N N ??(0) ?? 380 026373 0x030A53A0 0x00000034 0x030A5390 0x00000054 0x00000000 new N N ??(0) ?? 381 026374 0x030A5430 0x00000034 0x030A5420 0x00000054 0x00000000 new N N ??(0) ?? 382 026375 0x030A54C0 0x00000034 0x030A54B0 0x00000054 0x00000000 new N N ??(0) ?? 383 026376 0x030A5550 0x00000034 0x030A5540 0x00000054 0x00000000 new N N ??(0) ?? 384 026377 0x030A55E0 0x00000034 0x030A55D0 0x00000054 0x00000000 new N N ??(0) ?? 385 026378 0x030A5670 0x00000034 0x030A5660 0x00000054 0x00000000 new N N ??(0) ?? 386 026379 0x030A5700 0x00000034 0x030A56F0 0x00000054 0x00000000 new N N ??(0) ?? 387 026380 0x030A5790 0x00000034 0x030A5780 0x00000054 0x00000000 new N N ??(0) ?? 388 026381 0x030A5820 0x00000034 0x030A5810 0x00000054 0x00000000 new N N ??(0) ?? 389 026382 0x030A58B0 0x00000034 0x030A58A0 0x00000054 0x00000000 new N N ??(0) ?? 390 026383 0x030A5940 0x00000034 0x030A5930 0x00000054 0x00000000 new N N ??(0) ?? 391 026385 0x030A59D0 0x000000E8 0x030A59C0 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 392 026386 0x030A5B18 0x00000034 0x030A5B08 0x00000054 0x00000000 new N N ??(0) ?? 393 026387 0x030A5BA8 0x00000034 0x030A5B98 0x00000054 0x00000000 new N N ??(0) ?? 394 026388 0x030A5C38 0x00000034 0x030A5C28 0x00000054 0x00000000 new N N ??(0) ?? 395 026389 0x030A5CC8 0x00000034 0x030A5CB8 0x00000054 0x00000000 new N N ??(0) ?? 396 026390 0x030A5D58 0x00000034 0x030A5D48 0x00000054 0x00000000 new N N ??(0) ?? 397 026391 0x030A5DE8 0x00000034 0x030A5DD8 0x00000054 0x00000000 new N N ??(0) ?? 398 026392 0x030A5E78 0x00000034 0x030A5E68 0x00000054 0x00000000 new N N ??(0) ?? 399 026393 0x030A5F08 0x00000034 0x030A5EF8 0x00000054 0x00000000 new N N ??(0) ?? 400 026394 0x030A5F98 0x00000034 0x030A5F88 0x00000054 0x00000000 new N N ??(0) ?? 401 027068 0x030ADC68 0x00000018 0x030ADC58 0x00000038 0x00000000 new N N ??(0) ?? 402 026405 0x030ADD10 0x0000009C 0x030ADD00 0x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 403 026406 0x030ADE08 0x00000034 0x030ADDF8 0x00000054 0x00000000 new N N ??(0) ?? 404 026407 0x030ADE98 0x00000034 0x030ADE88 0x00000054 0x00000000 new N N ??(0) ?? 405 026408 0x030ADF28 0x00000034 0x030ADF18 0x00000054 0x00000000 new N N ??(0) ?? 406 026457 0x030AE018 0x00000034 0x030AE008 0x00000054 0x00000000 new N N ??(0) ?? 407 026458 0x030AE0A8 0x00000034 0x030AE098 0x00000054 0x00000000 new N N ??(0) ?? 408 026459 0x030AE138 0x00000034 0x030AE128 0x00000054 0x00000000 new N N ??(0) ?? 409 026460 0x030AE1C8 0x00000034 0x030AE1B8 0x00000054 0x00000000 new N N ??(0) ?? 410 026461 0x030AE258 0x00000034 0x030AE248 0x00000054 0x00000000 new N N ??(0) ?? 411 026462 0x030AE2E8 0x00000034 0x030AE2D8 0x00000054 0x00000000 new N N ??(0) ?? 412 026463 0x030AE378 0x00000034 0x030AE368 0x00000054 0x00000000 new N N ??(0) ?? 413 026464 0x030AE468 0x00000034 0x030AE458 0x00000054 0x00000000 new N N ??(0) ?? 414 026465 0x030AE4F8 0x00000034 0x030AE4E8 0x00000054 0x00000000 new N N ??(0) ?? 415 026466 0x030AE588 0x00000034 0x030AE578 0x00000054 0x00000000 new N N ??(0) ?? 416 026467 0x030AE618 0x00000034 0x030AE608 0x00000054 0x00000000 new N N ??(0) ?? 417 026469 0x030AE708 0x00000034 0x030AE6F8 0x00000054 0x00000000 new N N reflectiontest.h(302) RaytraceDemoApplication::createScene 418 026589 0x030B0760 0x00000030 0x030B0750 0x00000050 0x00000000 new N N framecapture.h(87) FrameCapture::addAnimableNode 419 026591 0x030B07F0 0x00000030 0x030B07E0 0x00000050 0x00000000 new N N framecapture.h(87) FrameCapture::addAnimableNode 420 026592 0x030B0880 0x00000008 0x030B0870 0x00000028 0x00000000 new N N ??(0) ?? 421 026316 0x030B6640 0x0000000C 0x030B6630 0x0000002C 0x00000000 new N N ??(0) ?? 422 029592 0x030F9058 0x000000E8 0x030F9048 0x00000108 0x00000000 new N N ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 423 029593 0x030F91A0 0x00000034 0x030F9190 0x00000054 0x00000000 new N N ??(0) ?? 424 027097 0x030FB0B0 0x00000034 0x030FB0A0 0x00000054 0x00000000 new N N ??(0) ?? 425 027072 0x03109C58 0x00000004 0x03109C48 0x00000024 0x00000000 new N N ??(0) ?? 426 027073 0x03109CB8 0x00000018 0x03109CA8 0x00000038 0x00000000 new N N ??(0) ?? 427 027095 0x03109D30 0x00000108 0x03109D20 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 428 027096 0x03109E98 0x00000134 0x03109E88 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 429 027064 0x0310CAE8 0x000000C4 0x0310CAD8 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 430 027066 0x0310CC08 0x00000020 0x0310CBF8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 431 027067 0x0310CC88 0x00000104 0x0310CC78 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 432 027069 0x0310CE98 0x00000018 0x0310CE88 0x00000038 0x00000000 new N N ??(0) ?? 433 027070 0x0310CF10 0x00000034 0x0310CF00 0x00000054 0x00000000 new N N ??(0) ?? 434 027071 0x0310CFA0 0x0000000C 0x0310CF90 0x0000002C 0x00000000 new N N ??(0) ?? 435 027217 0x0310E008 0x00000018 0x0310DFF8 0x00000038 0x00000000 new N N ??(0) ?? 436 027240 0x0310E100 0x00000108 0x0310E0F0 0x00000128 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(110) OgreDistanceCubeMapRenderTechniqueFacto 437 027241 0x0310E328 0x00000134 0x0310E318 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 438 027242 0x0310E5D8 0x00000034 0x0310E5C8 0x00000054 0x00000000 new N N ??(0) ?? 439 026317 0x03110078 0x00000018 0x03110068 0x00000038 0x00000000 new N N ??(0) ?? 440 026318 0x031109A0 0x00000018 0x03110990 0x00000038 0x00000000 new N N ??(0) ?? 441 027360 0x0314F560 0x00000018 0x0314F550 0x00000038 0x00000000 new N N ??(0) ?? 442 027397 0x0315BC78 0x00000108 0x0315BC68 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 443 027398 0x0315BDE0 0x00000134 0x0315BDD0 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 444 027399 0x0315BF70 0x00000034 0x0315BF60 0x00000054 0x00000000 new N N ??(0) ?? 445 027517 0x0315F308 0x00000018 0x0315F2F8 0x00000038 0x00000000 new N N ??(0) ?? 446 027681 0x0315F400 0x00000020 0x0315F3F0 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 447 027555 0x0315F4B0 0x00000108 0x0315F4A0 0x00000128 0x00000000 new N N ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 448 027556 0x0315F618 0x00000134 0x0315F608 0x00000154 0x00000000 new N N ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 449 027770 0x03163EE8 0x0000000C 0x03163ED8 0x0000002C 0x00000000 new N N ??(0) ?? 450 027686 0x03164BA8 0x0000000C 0x03164B98 0x0000002C 0x00000000 new N N ??(0) ?? 451 027678 0x03166250 0x00000010 0x03166240 0x00000030 0x00000000 new N N ??(0) ?? 452 027675 0x031664B0 0x00000018 0x031664A0 0x00000038 0x00000000 new N N ??(0) ?? 453 027679 0x03166680 0x000000C4 0x03166670 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 454 027682 0x031667A0 0x00000104 0x03166790 0x00000124 0x00000000 new N N ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 455 027683 0x03166900 0x00000018 0x031668F0 0x00000038 0x00000000 new N N ??(0) ?? 456 027684 0x03166978 0x00000018 0x03166968 0x00000038 0x00000000 new N N ??(0) ?? 457 027685 0x031669F0 0x00000034 0x031669E0 0x00000054 0x00000000 new N N ??(0) ?? 458 027688 0x03166A80 0x00000018 0x03166A70 0x00000038 0x00000000 new N N ??(0) ?? 459 027700 0x03166AF8 0x000000E4 0x03166AE8 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 460 027796 0x03166C38 0x00000004 0x03166C28 0x00000024 0x00000000 new N N ??(0) ?? 461 027797 0x031674C0 0x000000C4 0x031674B0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 462 027801 0x031675E0 0x00000018 0x031675D0 0x00000038 0x00000000 new N N ??(0) ?? 463 027813 0x03167658 0x000000E4 0x03167648 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 464 027900 0x03167798 0x00000004 0x03167788 0x00000024 0x00000000 new N N ??(0) ?? 465 027903 0x031677F8 0x00000020 0x031677E8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 466 027874 0x03167B70 0x0000000C 0x03167B60 0x0000002C 0x00000000 new N N ??(0) ?? 467 027977 0x03169808 0x0000000C 0x031697F8 0x0000002C 0x00000000 new N N ??(0) ?? 468 027799 0x03175F60 0x00000020 0x03175F50 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 469 027901 0x03176E20 0x000000C4 0x03176E10 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 470 027905 0x03176FA8 0x00000018 0x03176F98 0x00000038 0x00000000 new N N ??(0) ?? 471 027917 0x03177020 0x000000E4 0x03177010 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 472 028003 0x03177160 0x00000004 0x03177150 0x00000024 0x00000000 new N N ??(0) ?? 473 028004 0x0317A078 0x000000C4 0x0317A068 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 474 028006 0x0317A198 0x00000020 0x0317A188 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 475 028008 0x0317A218 0x00000018 0x0317A208 0x00000038 0x00000000 new N N ??(0) ?? 476 028020 0x0317A290 0x000000E4 0x0317A280 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 477 028108 0x0317A3D0 0x00000004 0x0317A3C0 0x00000024 0x00000000 new N N ??(0) ?? 478 028111 0x0317A430 0x00000020 0x0317A420 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 479 028082 0x0317B680 0x0000000C 0x0317B670 0x0000002C 0x00000000 new N N ??(0) ?? 480 028109 0x0317D2A0 0x000000C4 0x0317D290 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 481 028321 0x0317D3C0 0x00000018 0x0317D3B0 0x00000038 0x00000000 new N N ??(0) ?? 482 028113 0x0317D438 0x00000018 0x0317D428 0x00000038 0x00000000 new N N ??(0) ?? 483 028125 0x0317D4B0 0x000000E4 0x0317D4A0 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 484 028212 0x03185250 0x00000004 0x03185240 0x00000024 0x00000000 new N N ??(0) ?? 485 028186 0x031855B8 0x0000000C 0x031855A8 0x0000002C 0x00000000 new N N ??(0) ?? 486 028213 0x03188170 0x000000C4 0x03188160 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 487 028215 0x03188290 0x00000020 0x03188280 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 488 028216 0x03188310 0x00000018 0x03188300 0x00000038 0x00000000 new N N ??(0) ?? 489 028228 0x03188388 0x000000E4 0x03188378 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 490 028316 0x031884C8 0x00000004 0x031884B8 0x00000024 0x00000000 new N N ??(0) ?? 491 028290 0x03189778 0x0000000C 0x03189768 0x0000002C 0x00000000 new N N ??(0) ?? 492 028317 0x0318B398 0x000000C4 0x0318B388 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 493 028319 0x0318B4B8 0x00000020 0x0318B4A8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 494 028631 0x0318B538 0x00000018 0x0318B528 0x00000038 0x00000000 new N N ??(0) ?? 495 028333 0x0318B5B8 0x000000E4 0x0318B5A8 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 496 028421 0x0318B6F8 0x00000004 0x0318B6E8 0x00000024 0x00000000 new N N ??(0) ?? 497 028395 0x0318C9D8 0x0000000C 0x0318C9C8 0x0000002C 0x00000000 new N N ??(0) ?? 498 028422 0x0318E5F8 0x000000C4 0x0318E5E8 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 499 028424 0x0318E718 0x00000020 0x0318E708 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 500 028425 0x0318E798 0x00000018 0x0318E788 0x00000038 0x00000000 new N N ??(0) ?? 501 028437 0x0318E810 0x000000E4 0x0318E800 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 502 028524 0x0318E950 0x00000004 0x0318E940 0x00000024 0x00000000 new N N ??(0) ?? 503 028498 0x0318ECB8 0x0000000C 0x0318ECA8 0x0000002C 0x00000000 new N N ??(0) ?? 504 028600 0x03190B58 0x0000000C 0x03190B48 0x0000002C 0x00000000 new N N ??(0) ?? 505 028525 0x031994A8 0x000000C4 0x03199498 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 506 028527 0x031995C8 0x00000020 0x031995B8 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 507 028528 0x03199648 0x00000018 0x03199638 0x00000038 0x00000000 new N N ??(0) ?? 508 028540 0x031996C0 0x000000E4 0x031996B0 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 509 028626 0x03199800 0x00000004 0x031997F0 0x00000024 0x00000000 new N N ??(0) ?? 510 028627 0x0319C760 0x000000C4 0x0319C750 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 511 028629 0x0319C880 0x00000020 0x0319C870 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 512 028630 0x0319C900 0x00000034 0x0319C8F0 0x00000054 0x00000000 new N N ??(0) ?? 513 028643 0x0319C990 0x000000E4 0x0319C980 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 514 028731 0x0319CAD0 0x00000004 0x0319CAC0 0x00000024 0x00000000 new N N ??(0) ?? 515 028705 0x0319DDB0 0x0000000C 0x0319DDA0 0x0000002C 0x00000000 new N N ??(0) ?? 516 028732 0x0319F9D0 0x000000C4 0x0319F9C0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 517 028734 0x0319FAF0 0x00000020 0x0319FAE0 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 518 028735 0x0319FB70 0x00000018 0x0319FB60 0x00000038 0x00000000 new N N ??(0) ?? 519 028747 0x0319FBE8 0x000000E4 0x0319FBD8 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 520 028834 0x0319FD28 0x00000004 0x0319FD18 0x00000024 0x00000000 new N N ??(0) ?? 521 028808 0x031A0090 0x0000000C 0x031A0080 0x0000002C 0x00000000 new N N ??(0) ?? 522 028910 0x031A1F30 0x0000000C 0x031A1F20 0x0000002C 0x00000000 new N N ??(0) ?? 523 028835 0x031A2C48 0x000000C4 0x031A2C38 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 524 028837 0x031A2D68 0x00000020 0x031A2D58 0x00000040 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 525 028838 0x031A2DE8 0x00000018 0x031A2DD8 0x00000038 0x00000000 new N N ??(0) ?? 526 028850 0x031A2E60 0x000000E4 0x031A2E50 0x00000104 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 527 028936 0x031A2FA0 0x00000004 0x031A2F90 0x00000024 0x00000000 new N N ??(0) ?? -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log
r1879 r1885 1 1 -------------------------------------------------------------------------------- 2 2 3 OgreMemory.log - Memory logging file created on Mon Dec 11 14:59:0620063 OgreMemory.log - Memory logging file created on Wed Dec 13 15:08:25 2006 4 4 5 5 -------------------------------------------------------------------------------- -
GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log
r1882 r1885 1 1 3:03:28: Creating resource group General2 1 3:03:28: Creating resource group Internal3 1 3:03:28: Creating resource group Autodetect4 1 3:03:28: Registering ResourceManager for type Material5 1 3:03:28: Registering ResourceManager for type Mesh6 1 3:03:28: Registering ResourceManager for type Skeleton7 1 3:03:28: MovableObjectFactory for type 'ParticleSystem' registered.8 1 3:03:28: Loading library OgrePlatform.dll9 1 3:03:28: OverlayElementFactory for type Panel registered.10 1 3:03:28: OverlayElementFactory for type BorderPanel registered.11 1 3:03:28: OverlayElementFactory for type TextArea registered.12 1 3:03:28: Registering ResourceManager for type Font13 1 3:03:28: ArchiveFactory for archive type FileSystem registered.14 1 3:03:28: ArchiveFactory for archive type Zip registered.15 1 3:03:28: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 200516 1 3:03:28: 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 3:03:28: Registering ResourceManager for type HighLevelGpuProgram18 1 3:03:28: Registering ResourceManager for type Compositor19 1 3:03:28: MovableObjectFactory for type 'Entity' registered.20 1 3:03:28: MovableObjectFactory for type 'Light' registered.21 1 3:03:28: MovableObjectFactory for type 'BillboardSet' registered.22 1 3:03:28: MovableObjectFactory for type 'ManualObject' registered.23 1 3:03:28: MovableObjectFactory for type 'BillboardChain' registered.24 1 3:03:28: MovableObjectFactory for type 'RibbonTrail' registered.25 1 3:03:28: Loading library .\RenderSystem_Direct3D926 1 3:03:28: D3D9 : Direct3D9 Rendering Subsystem created.27 1 3:03:28: D3D9: Driver Detection Starts28 1 3:03:28: D3D9: Driver Detection Ends29 1 3:03:28: Loading library .\Plugin_ParticleFX30 1 3:03:28: Particle Emitter Type 'Point' registered31 1 3:03:28: Particle Emitter Type 'Box' registered32 1 3:03:28: Particle Emitter Type 'Ellipsoid' registered33 1 3:03:28: Particle Emitter Type 'Cylinder' registered34 1 3:03:28: Particle Emitter Type 'Ring' registered35 1 3:03:28: Particle Emitter Type 'HollowEllipsoid' registered36 1 3:03:28: Particle Affector Type 'LinearForce' registered37 1 3:03:28: Particle Affector Type 'ColourFader' registered38 1 3:03:28: Particle Affector Type 'ColourFader2' registered39 1 3:03:28: Particle Affector Type 'ColourImage' registered40 1 3:03:28: Particle Affector Type 'ColourInterpolator' registered41 1 3:03:28: Particle Affector Type 'Scaler' registered42 1 3:03:28: Particle Affector Type 'Rotator' registered43 1 3:03:28: Particle Affector Type 'DirectionRandomiser' registered44 1 3:03:28: Particle Affector Type 'DeflectorPlane' registered45 1 3:03:28: Loading library .\Plugin_BSPSceneManager46 1 3:03:28: Registering ResourceManager for type BspLevel47 1 3:03:28: Loading library .\Plugin_OctreeSceneManager48 1 3:03:28: Loading library .\Plugin_CgProgramManager49 1 3:03:28: *-*-* OGRE Initialising50 1 3:03:28: *-*-* Version 1.2.0 (Dagon)51 1 3:03:28: Creating resource group Bootstrap52 1 3:03:28: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'53 1 3:03:28: Added resource location '../../Media' of type 'FileSystem' to resource group 'General'54 1 3:03:28: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General'55 1 3:03:28: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General'56 1 3:03:28: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General'57 1 3:03:28: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General'58 1 3:03:28: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General'59 1 3:03:28: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General'60 1 3:03:28: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General'61 1 3:03:28: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General'62 1 3:03:28: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'63 1 3:03:28: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General'64 1 3:03:28: D3D9 : RenderSystem Option: Allow NVPerfHUD = No65 1 3:03:28: D3D9 : RenderSystem Option: Anti aliasing = Level 466 1 3:03:28: D3D9 : RenderSystem Option: Floating-point mode = Fastest67 1 3:03:28: D3D9 : RenderSystem Option: Full Screen = No68 1 3:03:28: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX269 1 3:03:28: D3D9 : RenderSystem Option: VSync = No70 1 3:03:28: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour71 1 3:03:29: D3D9 : Subsystem Initialising72 1 3:03:29: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false73 1 3:03:29: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp74 1 3:03:29: 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 3:03:29: Registering ResourceManager for type Texture76 1 3:03:29: Registering ResourceManager for type GpuProgram77 1 3:03:29: RenderSystem capabilities78 1 3:03:29: -------------------------79 1 3:03:29: * Hardware generation of mipmaps: yes80 1 3:03:29: * Texture blending: yes81 1 3:03:29: * Anisotropic texture filtering: yes82 1 3:03:29: * Dot product texture operation: yes83 1 3:03:29: * Cube mapping: yes84 1 3:03:29: * Hardware stencil buffer: yes85 1 3:03:29: - Stencil depth: 886 1 3:03:29: - Two sided stencil support: yes87 1 3:03:29: - Wrap stencil values: yes88 1 3:03:29: * Hardware vertex / index buffers: yes89 1 3:03:29: * Vertex programs: yes90 1 3:03:29: - Max vertex program version: vs_3_091 1 3:03:29: * Fragment programs: yes92 1 3:03:29: - Max fragment program version: ps_3_093 1 3:03:29: * Texture Compression: yes94 1 3:03:29: - DXT: yes95 1 3:03:29: - VTC: no96 1 3:03:29: * Scissor Rectangle: yes97 1 3:03:29: * Hardware Occlusion Query: yes98 1 3:03:29: * User clip planes: yes99 1 3:03:29: * VET_UBYTE4 vertex element type: yes100 1 3:03:29: * Infinite far plane projection: yes101 1 3:03:29: * Hardware render-to-texture: yes102 1 3:03:29: * Floating point textures: yes103 1 3:03:29: * Non-power-of-two textures: yes104 1 3:03:29: * Volume textures: yes105 1 3:03:29: * Multiple Render Targets: 4106 1 3:03:29: * Max Point Size: 8192107 1 3:03:29: ***************************************108 1 3:03:29: *** D3D9 : Subsystem Initialised OK ***109 1 3:03:29: ***************************************110 1 3:03:29: ResourceBackgroundQueue - threading disabled111 1 3:03:29: Particle Renderer Type 'billboard' registered112 1 3:03:29: Particle Renderer Type 'sprite' registered113 1 3:03:29: 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 3:03:29: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600115 1 3:03:29: Parsing scripts for resource group Autodetect116 1 3:03:29: Finished parsing scripts for resource group Autodetect117 1 3:03:29: Parsing scripts for resource group Bootstrap118 1 3:03:29: Parsing script OgreCore.material119 1 3:03:29: Parsing script OgreProfiler.material120 1 3:03:29: Parsing script Ogre.fontdef121 1 3:03:29: Parsing script OgreDebugPanel.overlay122 1 3:03:29: 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 3:03:29: 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 3:03:29: 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 3:03:29: Font TrebuchetMSBoldusing texture size 512x512126 1 3:03:29: Info: Freetype returned null for character 160 in font TrebuchetMSBold127 1 3:03:29: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.128 1 3:03:29: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.129 1 3:03:29: Parsing script OgreLoadingPanel.overlay130 1 3:03:29: Finished parsing scripts for resource group Bootstrap131 1 3:03:29: Parsing scripts for resource group General132 1 3:03:29: Parsing script GameTools.program133 1 3:03:29: Parsing script atlascube.material134 1 3:03:29: Parsing script colorcube.material135 1 3:03:29: Parsing script difflab.material136 1 3:03:30: An exception has been thrown!1 16:19:17: Creating resource group General 2 16:19:17: Creating resource group Internal 3 16:19:17: Creating resource group Autodetect 4 16:19:17: Registering ResourceManager for type Material 5 16:19:17: Registering ResourceManager for type Mesh 6 16:19:17: Registering ResourceManager for type Skeleton 7 16:19:17: MovableObjectFactory for type 'ParticleSystem' registered. 8 16:19:17: Loading library OgrePlatform.dll 9 16:19:17: OverlayElementFactory for type Panel registered. 10 16:19:17: OverlayElementFactory for type BorderPanel registered. 11 16:19:17: OverlayElementFactory for type TextArea registered. 12 16:19:17: Registering ResourceManager for type Font 13 16:19:17: ArchiveFactory for archive type FileSystem registered. 14 16:19:17: ArchiveFactory for archive type Zip registered. 15 16:19:17: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 16: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 raw 17 16:19:17: Registering ResourceManager for type HighLevelGpuProgram 18 16:19:17: Registering ResourceManager for type Compositor 19 16:19:17: MovableObjectFactory for type 'Entity' registered. 20 16:19:17: MovableObjectFactory for type 'Light' registered. 21 16:19:17: MovableObjectFactory for type 'BillboardSet' registered. 22 16:19:17: MovableObjectFactory for type 'ManualObject' registered. 23 16:19:17: MovableObjectFactory for type 'BillboardChain' registered. 24 16:19:17: MovableObjectFactory for type 'RibbonTrail' registered. 25 16:19:17: Loading library .\RenderSystem_Direct3D9 26 16:19:17: D3D9 : Direct3D9 Rendering Subsystem created. 27 16:19:17: D3D9: Driver Detection Starts 28 16:19:17: D3D9: Driver Detection Ends 29 16:19:17: Loading library .\Plugin_ParticleFX 30 16:19:17: Particle Emitter Type 'Point' registered 31 16:19:17: Particle Emitter Type 'Box' registered 32 16:19:17: Particle Emitter Type 'Ellipsoid' registered 33 16:19:17: Particle Emitter Type 'Cylinder' registered 34 16:19:17: Particle Emitter Type 'Ring' registered 35 16:19:17: Particle Emitter Type 'HollowEllipsoid' registered 36 16:19:17: Particle Affector Type 'LinearForce' registered 37 16:19:17: Particle Affector Type 'ColourFader' registered 38 16:19:17: Particle Affector Type 'ColourFader2' registered 39 16:19:17: Particle Affector Type 'ColourImage' registered 40 16:19:17: Particle Affector Type 'ColourInterpolator' registered 41 16:19:17: Particle Affector Type 'Scaler' registered 42 16:19:17: Particle Affector Type 'Rotator' registered 43 16:19:17: Particle Affector Type 'DirectionRandomiser' registered 44 16:19:17: Particle Affector Type 'DeflectorPlane' registered 45 16:19:17: Loading library .\Plugin_BSPSceneManager 46 16:19:17: Registering ResourceManager for type BspLevel 47 16:19:17: Loading library .\Plugin_OctreeSceneManager 48 16:19:17: Loading library .\Plugin_CgProgramManager 49 16:19:17: *-*-* OGRE Initialising 50 16:19:17: *-*-* Version 1.2.0 (Dagon) 51 16:19:17: Creating resource group Bootstrap 52 16:19:17: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 16:19:17: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 16:19:17: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 16:19:17: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 16:19:17: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 16:19:17: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 16:19:17: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 16:19:17: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 16:19:17: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 16:19:17: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 16:19:17: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 16:19:17: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 16:19:17: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 16:19:17: D3D9 : RenderSystem Option: Anti aliasing = Level 4 66 16:19:17: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 16:19:17: D3D9 : RenderSystem Option: Full Screen = No 68 16:19:17: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 69 16:19:17: D3D9 : RenderSystem Option: VSync = No 70 16:19:17: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 16:19:18: D3D9 : Subsystem Initialising 72 16:19:18: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 16:19:18: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 16: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 16:19:18: Registering ResourceManager for type Texture 76 16:19:18: Registering ResourceManager for type GpuProgram 77 16:19:18: RenderSystem capabilities 78 16:19:18: ------------------------- 79 16:19:18: * Hardware generation of mipmaps: yes 80 16:19:18: * Texture blending: yes 81 16:19:18: * Anisotropic texture filtering: yes 82 16:19:18: * Dot product texture operation: yes 83 16:19:18: * Cube mapping: yes 84 16:19:18: * Hardware stencil buffer: yes 85 16:19:18: - Stencil depth: 8 86 16:19:18: - Two sided stencil support: yes 87 16:19:18: - Wrap stencil values: yes 88 16:19:18: * Hardware vertex / index buffers: yes 89 16:19:18: * Vertex programs: yes 90 16:19:18: - Max vertex program version: vs_3_0 91 16:19:18: * Fragment programs: yes 92 16:19:18: - Max fragment program version: ps_3_0 93 16:19:18: * Texture Compression: yes 94 16:19:18: - DXT: yes 95 16:19:18: - VTC: no 96 16:19:18: * Scissor Rectangle: yes 97 16:19:18: * Hardware Occlusion Query: yes 98 16:19:18: * User clip planes: yes 99 16:19:18: * VET_UBYTE4 vertex element type: yes 100 16:19:18: * Infinite far plane projection: yes 101 16:19:18: * Hardware render-to-texture: yes 102 16:19:18: * Floating point textures: yes 103 16:19:18: * Non-power-of-two textures: yes 104 16:19:18: * Volume textures: yes 105 16:19:18: * Multiple Render Targets: 4 106 16:19:18: * Max Point Size: 8192 107 16:19:18: *************************************** 108 16:19:18: *** D3D9 : Subsystem Initialised OK *** 109 16:19:18: *************************************** 110 16:19:18: ResourceBackgroundQueue - threading disabled 111 16:19:18: Particle Renderer Type 'billboard' registered 112 16:19:18: Particle Renderer Type 'sprite' registered 113 16: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: 0 114 16:19:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 16:19:18: Parsing scripts for resource group Autodetect 116 16:19:18: Finished parsing scripts for resource group Autodetect 117 16:19:18: Parsing scripts for resource group Bootstrap 118 16:19:18: Parsing script OgreCore.material 119 16:19:18: Parsing script OgreProfiler.material 120 16:19:18: Parsing script Ogre.fontdef 121 16:19:18: Parsing script OgreDebugPanel.overlay 122 16: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 16: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 16: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 16:19:18: Font TrebuchetMSBoldusing texture size 512x512 126 16:19:18: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 16: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 16:19:18: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 16:19:18: Parsing script OgreLoadingPanel.overlay 130 16:19:18: Finished parsing scripts for resource group Bootstrap 131 16:19:18: Parsing scripts for resource group General 132 16:19:18: Parsing script GameTools.program 133 16:19:18: Parsing script atlascube.material 134 16:19:18: Parsing script colorcube.material 135 16:19:18: Parsing script difflab.material 136 16:19:19: An exception has been thrown! 137 137 138 138 ----------------------------------- … … 145 145 Line: 779 146 146 Stack unwinding: <<beginning of stack>> 147 1 3:03:30: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!147 16:19:19: 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 3:03:30: An exception has been thrown!158 16:19:19: An exception has been thrown! 159 159 160 160 ----------------------------------- … … 167 167 Line: 779 168 168 Stack unwinding: <<beginning of stack>> 169 1 3:03:30: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!169 16:19:19: 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 3:03:30: An exception has been thrown!180 16:19:19: An exception has been thrown! 181 181 182 182 ----------------------------------- … … 189 189 Line: 779 190 190 Stack unwinding: <<beginning of stack>> 191 1 3:03:30: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!191 16:19:19: 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 3:03:30: An exception has been thrown!202 16:19:19: An exception has been thrown! 203 203 204 204 ----------------------------------- … … 211 211 Line: 779 212 212 Stack unwinding: <<beginning of stack>> 213 1 3:03:30: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!213 16:19:19: 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 3:03:30: An exception has been thrown!224 16:19:19: An exception has been thrown! 225 225 226 226 ----------------------------------- … … 233 233 Line: 779 234 234 Stack unwinding: <<beginning of stack>> 235 1 3:03:30: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!235 16:19:19: 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 3:03:30: An exception has been thrown!246 16:19:19: An exception has been thrown! 247 247 248 248 ----------------------------------- … … 255 255 Line: 779 256 256 Stack unwinding: <<beginning of stack>> 257 1 3:03:30: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!257 16:19:19: 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 3:03:30: An exception has been thrown!268 16:19:19: An exception has been thrown! 269 269 270 270 ----------------------------------- … … 277 277 Line: 779 278 278 Stack unwinding: <<beginning of stack>> 279 1 3:03:30: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!279 16:19:19: 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 3:03:30: An exception has been thrown!290 16:19:19: An exception has been thrown! 291 291 292 292 ----------------------------------- … … 299 299 Line: 779 300 300 Stack unwinding: <<beginning of stack>> 301 1 3:03:30: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!301 16:19:19: 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 3:03:30: An exception has been thrown!312 16:19:19: An exception has been thrown! 313 313 314 314 ----------------------------------- … … 321 321 Line: 779 322 322 Stack unwinding: <<beginning of stack>> 323 1 3:03:30: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!323 16:19:19: 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 3:03:30: An exception has been thrown!334 16:19:19: An exception has been thrown! 335 335 336 336 ----------------------------------- … … 343 343 Line: 779 344 344 Stack unwinding: <<beginning of stack>> 345 1 3:03:30: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!345 16:19:19: 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 3:03:30: An exception has been thrown!356 16:19:19: An exception has been thrown! 357 357 358 358 ----------------------------------- … … 365 365 Line: 779 366 366 Stack unwinding: <<beginning of stack>> 367 1 3:03:30: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!367 16:19:19: 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 3:03:30: An exception has been thrown!378 16:19:19: An exception has been thrown! 379 379 380 380 ----------------------------------- … … 387 387 Line: 779 388 388 Stack unwinding: <<beginning of stack>> 389 1 3:03:30: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!389 16:19:19: 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 3:03:30: An exception has been thrown!400 16:19:19: An exception has been thrown! 401 401 402 402 ----------------------------------- … … 409 409 Line: 779 410 410 Stack unwinding: <<beginning of stack>> 411 1 3:03:30: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!411 16:19:19: 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 3:03:30: An exception has been thrown!422 16:19:19: An exception has been thrown! 423 423 424 424 ----------------------------------- … … 431 431 Line: 779 432 432 Stack unwinding: <<beginning of stack>> 433 1 3:03:30: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!433 16:19:19: 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 3:03:30: An exception has been thrown!444 16:19:19: An exception has been thrown! 445 445 446 446 ----------------------------------- … … 453 453 Line: 779 454 454 Stack unwinding: <<beginning of stack>> 455 1 3:03:30: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!455 16:19:19: 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 3:03:30: An exception has been thrown!466 16:19:19: An exception has been thrown! 467 467 468 468 ----------------------------------- … … 475 475 Line: 779 476 476 Stack unwinding: <<beginning of stack>> 477 1 3:03:30: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!477 16:19:19: 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 3:03:30: An exception has been thrown!488 16:19:19: An exception has been thrown! 489 489 490 490 ----------------------------------- … … 497 497 Line: 779 498 498 Stack unwinding: <<beginning of stack>> 499 1 3:03:30: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!499 16:19:19: 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 3:03:30: An exception has been thrown!510 16:19:19: An exception has been thrown! 511 511 512 512 ----------------------------------- … … 519 519 Line: 779 520 520 Stack unwinding: <<beginning of stack>> 521 1 3:03:30: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!521 16:19:19: 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 3:03:30: An exception has been thrown!532 16:19:19: An exception has been thrown! 533 533 534 534 ----------------------------------- … … 541 541 Line: 779 542 542 Stack unwinding: <<beginning of stack>> 543 1 3:03:30: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!543 16:19:19: 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 3:03:30: An exception has been thrown!554 16:19:19: An exception has been thrown! 555 555 556 556 ----------------------------------- … … 563 563 Line: 779 564 564 Stack unwinding: <<beginning of stack>> 565 1 3:03:30: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!565 16:19:19: 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 3:03:30: An exception has been thrown!576 16:19:19: An exception has been thrown! 577 577 578 578 ----------------------------------- … … 585 585 Line: 779 586 586 Stack unwinding: <<beginning of stack>> 587 1 3:03:30: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!587 16:19:19: 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 3:03:30: Parsing script diffscene.material599 1 3:03:30: An exception has been thrown!598 16:19:19: Parsing script diffscene.material 599 16:19:19: An exception has been thrown! 600 600 601 601 ----------------------------------- … … 608 608 Line: 779 609 609 Stack unwinding: <<beginning of stack>> 610 1 3:03:30: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!610 16:19:19: 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 3:03:30: An exception has been thrown!621 16:19:19: An exception has been thrown! 622 622 623 623 ----------------------------------- … … 630 630 Line: 779 631 631 Stack unwinding: <<beginning of stack>> 632 1 3:03:30: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!632 16:19:19: 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 3:03:30: An exception has been thrown!643 16:19:19: An exception has been thrown! 644 644 645 645 ----------------------------------- … … 652 652 Line: 779 653 653 Stack unwinding: <<beginning of stack>> 654 1 3:03:30: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!654 16:19:19: 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 3:03:30: An exception has been thrown!665 16:19:19: An exception has been thrown! 666 666 667 667 ----------------------------------- … … 674 674 Line: 779 675 675 Stack unwinding: <<beginning of stack>> 676 1 3:03:30: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!676 16:19:19: 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 3:03:30: An exception has been thrown!687 16:19:19: An exception has been thrown! 688 688 689 689 ----------------------------------- … … 696 696 Line: 779 697 697 Stack unwinding: <<beginning of stack>> 698 1 3:03:30: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!698 16:19:19: 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 3:03:30: An exception has been thrown!709 16:19:19: An exception has been thrown! 710 710 711 711 ----------------------------------- … … 718 718 Line: 779 719 719 Stack unwinding: <<beginning of stack>> 720 1 3:03:30: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!720 16:19:19: 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 3:03:30: An exception has been thrown!731 16:19:19: An exception has been thrown! 732 732 733 733 ----------------------------------- … … 740 740 Line: 779 741 741 Stack unwinding: <<beginning of stack>> 742 1 3:03:30: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!742 16:19:19: 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 3:03:30: An exception has been thrown!753 16:19:19: An exception has been thrown! 754 754 755 755 ----------------------------------- … … 762 762 Line: 779 763 763 Stack unwinding: <<beginning of stack>> 764 1 3:03:30: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!764 16:19:19: 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 3:03:30: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857776 1 3:03:30: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857777 1 3:03:30: Parsing script Diffuse.material778 1 3:03:30: An exception has been thrown!775 16:19:19: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 776 16:19:19: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 777 16:19:19: Parsing script Diffuse.material 778 16:19:19: An exception has been thrown! 779 779 780 780 ----------------------------------- … … 787 787 Line: 779 788 788 Stack unwinding: <<beginning of stack>> 789 1 3:03:30: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!789 16:19:19: 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 3:03:31: An exception has been thrown!800 16:19:20: An exception has been thrown! 801 801 802 802 ----------------------------------- … … 809 809 Line: 779 810 810 Stack unwinding: <<beginning of stack>> 811 1 3:03:31: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!811 16:19:20: 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 3:03:34: An exception has been thrown!822 16:19:23: An exception has been thrown! 823 823 824 824 ----------------------------------- … … 831 831 Line: 779 832 832 Stack unwinding: <<beginning of stack>> 833 1 3:03:34: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown!833 16:19:23: 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 3:03:34: An exception has been thrown!844 16:19:23: An exception has been thrown! 845 845 846 846 ----------------------------------- … … 853 853 Line: 779 854 854 Stack unwinding: <<beginning of stack>> 855 1 3:03:34: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!855 16:19:23: 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 3:03:35: Parsing script EnvMetals.material867 1 3:03:35: An exception has been thrown!866 16:19:24: Parsing script EnvMetals.material 867 16:19:24: An exception has been thrown! 868 868 869 869 ----------------------------------- … … 876 876 Line: 779 877 877 Stack unwinding: <<beginning of stack>> 878 1 3:03:35: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!878 16:19:24: 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 3:03:35: An exception has been thrown!889 16:19:24: An exception has been thrown! 890 890 891 891 ----------------------------------- … … 898 898 Line: 779 899 899 Stack unwinding: <<beginning of stack>> 900 1 3:03:35: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!900 16:19:24: 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 3:03:35: An exception has been thrown!911 16:19:24: An exception has been thrown! 912 912 913 913 ----------------------------------- … … 920 920 Line: 779 921 921 Stack unwinding: <<beginning of stack>> 922 1 3:03:35: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!922 16:19:24: 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 3:03:35: An exception has been thrown!933 16:19:24: An exception has been thrown! 934 934 935 935 ----------------------------------- … … 942 942 Line: 779 943 943 Stack unwinding: <<beginning of stack>> 944 1 3:03:35: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!944 16:19:24: 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 3:03:35: Parsing script GameTools.material956 1 3:03:35: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5)957 1 3:03:35: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend958 1 3:03:35: An exception has been thrown!955 16:19:24: Parsing script GameTools.material 956 16: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 16:19:24: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 958 16:19:24: An exception has been thrown! 959 959 960 960 ----------------------------------- … … 967 967 Line: 779 968 968 Stack unwinding: <<beginning of stack>> 969 1 3:03:35: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!969 16:19:24: 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 3:03:35: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend981 1 3:03:35: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.982 1 3:03:35: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend983 1 3:03:35: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend984 1 3:03:35: Parsing script GameTools_HPS.material985 1 3:03:35: An exception has been thrown!980 16:19:24: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 981 16:19:24: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 982 16:19:24: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 983 16:19:24: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 984 16:19:24: Parsing script GameTools_HPS.material 985 16:19:24: An exception has been thrown! 986 986 987 987 ----------------------------------- … … 994 994 Line: 779 995 995 Stack unwinding: <<beginning of stack>> 996 1 3:03:35: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!996 16: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! 997 997 998 998 ----------------------------------- … … 1005 1005 Line: 779 1006 1006 Stack unwinding: <<beginning of stack>> 1007 1 3:03:35: An exception has been thrown!1007 16:19:24: An exception has been thrown! 1008 1008 1009 1009 ----------------------------------- … … 1016 1016 Line: 779 1017 1017 Stack unwinding: <<beginning of stack>> 1018 1 3:03:35: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1018 16: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! 1019 1019 1020 1020 ----------------------------------- … … 1027 1027 Line: 779 1028 1028 Stack unwinding: <<beginning of stack>> 1029 1 3:03:35: An exception has been thrown!1029 16:19:24: An exception has been thrown! 1030 1030 1031 1031 ----------------------------------- … … 1038 1038 Line: 779 1039 1039 Stack unwinding: <<beginning of stack>> 1040 1 3:03:35: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1040 16: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! 1041 1041 1042 1042 ----------------------------------- … … 1049 1049 Line: 779 1050 1050 Stack unwinding: <<beginning of stack>> 1051 1 3:03:35: An exception has been thrown!1051 16:19:24: An exception has been thrown! 1052 1052 1053 1053 ----------------------------------- … … 1060 1060 Line: 779 1061 1061 Stack unwinding: <<beginning of stack>> 1062 1 3:03:35: 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 16: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! 1063 1063 1064 1064 ----------------------------------- … … 1071 1071 Line: 779 1072 1072 Stack unwinding: <<beginning of stack>> 1073 1 3:03:35: An exception has been thrown!1073 16:19:24: An exception has been thrown! 1074 1074 1075 1075 ----------------------------------- … … 1082 1082 Line: 779 1083 1083 Stack unwinding: <<beginning of stack>> 1084 1 3:03:35: 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 16: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! 1085 1085 1086 1086 ----------------------------------- … … 1093 1093 Line: 779 1094 1094 Stack unwinding: <<beginning of stack>> 1095 1 3:03:35: An exception has been thrown!1095 16:19:24: An exception has been thrown! 1096 1096 1097 1097 ----------------------------------- … … 1104 1104 Line: 779 1105 1105 Stack unwinding: <<beginning of stack>> 1106 1 3:03:35: 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 16: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! 1107 1107 1108 1108 ----------------------------------- … … 1115 1115 Line: 779 1116 1116 Stack unwinding: <<beginning of stack>> 1117 1 3:03:35: An exception has been thrown!1117 16:19:24: An exception has been thrown! 1118 1118 1119 1119 ----------------------------------- … … 1126 1126 Line: 779 1127 1127 Stack unwinding: <<beginning of stack>> 1128 1 3:03:35: 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 16: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! 1129 1129 1130 1130 ----------------------------------- … … 1137 1137 Line: 779 1138 1138 Stack unwinding: <<beginning of stack>> 1139 1 3:03:35: An exception has been thrown!1139 16:19:24: An exception has been thrown! 1140 1140 1141 1141 ----------------------------------- … … 1148 1148 Line: 779 1149 1149 Stack unwinding: <<beginning of stack>> 1150 1 3:03:35: 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 16: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! 1151 1151 1152 1152 ----------------------------------- … … 1159 1159 Line: 779 1160 1160 Stack unwinding: <<beginning of stack>> 1161 1 3:03:35: An exception has been thrown!1161 16:19:24: An exception has been thrown! 1162 1162 1163 1163 ----------------------------------- … … 1170 1170 Line: 779 1171 1171 Stack unwinding: <<beginning of stack>> 1172 1 3:03:35: 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 16: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! 1173 1173 1174 1174 ----------------------------------- … … 1181 1181 Line: 779 1182 1182 Stack unwinding: <<beginning of stack>> 1183 1 3:03:35: An exception has been thrown!1183 16:19:24: An exception has been thrown! 1184 1184 1185 1185 ----------------------------------- … … 1192 1192 Line: 779 1193 1193 Stack unwinding: <<beginning of stack>> 1194 1 3:03:35: 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 16: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! 1195 1195 1196 1196 ----------------------------------- … … 1203 1203 Line: 779 1204 1204 Stack unwinding: <<beginning of stack>> 1205 1 3:03:35: An exception has been thrown!1205 16:19:24: An exception has been thrown! 1206 1206 1207 1207 ----------------------------------- … … 1214 1214 Line: 779 1215 1215 Stack unwinding: <<beginning of stack>> 1216 1 3:03:35: 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 16: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! 1217 1217 1218 1218 ----------------------------------- … … 1225 1225 Line: 779 1226 1226 Stack unwinding: <<beginning of stack>> 1227 1 3:03:35: An exception has been thrown!1227 16:19:24: An exception has been thrown! 1228 1228 1229 1229 ----------------------------------- … … 1236 1236 Line: 779 1237 1237 Stack unwinding: <<beginning of stack>> 1238 1 3:03:35: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!1238 16:19:24: 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 3:03:35: Parsing script GlassHead.material1250 1 3:03:35: An exception has been thrown!1249 16:19:24: Parsing script GlassHead.material 1250 16:19:24: An exception has been thrown! 1251 1251 1252 1252 ----------------------------------- … … 1259 1259 Line: 779 1260 1260 Stack unwinding: <<beginning of stack>> 1261 1 3:03:35: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1261 16:19:24: 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 3:03:35: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.1273 1 3:03:35: An exception has been thrown!1272 16: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 16:19:24: An exception has been thrown! 1274 1274 1275 1275 ----------------------------------- … … 1282 1282 Line: 779 1283 1283 Stack unwinding: <<beginning of stack>> 1284 1 3:03:35: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1284 16:19:24: 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 3:03:35: An exception has been thrown!1295 16:19:24: An exception has been thrown! 1296 1296 1297 1297 ----------------------------------- … … 1304 1304 Line: 779 1305 1305 Stack unwinding: <<beginning of stack>> 1306 1 3:03:35: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1306 16:19:24: 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 3:03:35: An exception has been thrown!1317 16:19:24: An exception has been thrown! 1318 1318 1319 1319 ----------------------------------- … … 1326 1326 Line: 779 1327 1327 Stack unwinding: <<beginning of stack>> 1328 1 3:03:35: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1328 16:19:24: 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 3:03:35: Parsing script Glow.material1340 1 3:03:35: An exception has been thrown!1339 16:19:24: Parsing script Glow.material 1340 16:19:24: An exception has been thrown! 1341 1341 1342 1342 ----------------------------------- … … 1349 1349 Line: 779 1350 1350 Stack unwinding: <<beginning of stack>> 1351 1 3:03:35: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown!1351 16:19:24: 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 3:03:35: Parsing script hangar.material1363 1 3:03:35: Parsing script kupola.material1364 1 3:03:35: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1365 1 3:03:35: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1366 1 3:03:35: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1367 1 3:03:35: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1368 1 3:03:35: Parsing script MetalTeapot.material1369 1 3:03:35: An exception has been thrown!1362 16:19:24: Parsing script hangar.material 1363 16:19:24: Parsing script kupola.material 1364 16:19:24: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1365 16:19:24: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1366 16:19:24: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1367 16:19:24: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1368 16:19:24: Parsing script MetalTeapot.material 1369 16:19:24: An exception has been thrown! 1370 1370 1371 1371 ----------------------------------- … … 1378 1378 Line: 779 1379 1379 Stack unwinding: <<beginning of stack>> 1380 1 3:03:35: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1380 16:19:24: 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 3:03:35: An exception has been thrown!1391 16:19:24: An exception has been thrown! 1392 1392 1393 1393 ----------------------------------- … … 1400 1400 Line: 779 1401 1401 Stack unwinding: <<beginning of stack>> 1402 1 3:03:35: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1402 16:19:24: 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 3:03:35: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'min'1414 1 3:03:35: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Bad scene_blend_alpha attribute, unrecognised parameter 'max'1415 1 3:03:35: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'min'1416 1 3:03:35: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Bad scene_blend_alpha attribute, unrecognised parameter 'max'1417 1 3:04:00: An exception has been thrown!1413 16:19:24: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 1414 16:19:24: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 1415 16:19:24: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 1416 16:19:24: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 1417 16:19:36: An exception has been thrown! 1418 1418 1419 1419 ----------------------------------- … … 1426 1426 Line: 779 1427 1427 Stack unwinding: <<beginning of stack>> 1428 1 3:04:00: Error in material MetalTeapotMultipleBounce at line 277of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown!1428 16:19:36: 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 13:04:00: Parsing script Ogre.material 1440 13:04:00: Parsing script Particles.material 1441 13:04:00: An exception has been thrown! 1439 16:19:36: An exception has been thrown! 1440 1441 ----------------------------------- 1442 Details: 1443 ----------------------------------- 1444 Error #: 7 1445 Function: GpuProgramParameters::getParamIndex 1446 Description: Cannot find a parameter named refIndex. 1447 File: ..\src\OgreGpuProgram.cpp 1448 Line: 779 1449 Stack unwinding: <<beginning of stack>> 1450 16:19:36: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 1451 1452 ----------------------------------- 1453 Details: 1454 ----------------------------------- 1455 Error #: 7 1456 Function: GpuProgramParameters::getParamIndex 1457 Description: Cannot find a parameter named refIndex. 1458 File: ..\src\OgreGpuProgram.cpp 1459 Line: 779 1460 Stack unwinding: <<beginning of stack>> 1461 16:19:36: Parsing script Ogre.material 1462 16:19:36: Parsing script Particles.material 1463 16:19:36: An exception has been thrown! 1442 1464 1443 1465 ----------------------------------- … … 1450 1472 Line: 779 1451 1473 Stack unwinding: <<beginning of stack>> 1452 1 3:04:00: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!1474 16:19:36: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 1453 1475 1454 1476 ----------------------------------- … … 1461 1483 Line: 779 1462 1484 Stack unwinding: <<beginning of stack>> 1463 1 3:04:00: An exception has been thrown!1485 16:19:36: An exception has been thrown! 1464 1486 1465 1487 ----------------------------------- … … 1472 1494 Line: 779 1473 1495 Stack unwinding: <<beginning of stack>> 1474 1 3:04:00: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!1496 16:19:36: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 1475 1497 1476 1498 ----------------------------------- … … 1483 1505 Line: 779 1484 1506 Stack unwinding: <<beginning of stack>> 1485 1 3:04:00: Parsing script RaytraceDemo.material1486 1 3:04:00: Parsing script stairs.material1487 1 3:04:00: Parsing script terito.material1488 1 3:04:00: Parsing script uvegfolyoso2.material1489 1 3:04:00: An exception has been thrown!1507 16:19:36: Parsing script RaytraceDemo.material 1508 16:19:36: Parsing script stairs.material 1509 16:19:36: Parsing script terito.material 1510 16:19:36: Parsing script uvegfolyoso2.material 1511 16:19:36: An exception has been thrown! 1490 1512 1491 1513 ----------------------------------- … … 1498 1520 Line: 779 1499 1521 Stack unwinding: <<beginning of stack>> 1500 1 3:04:00: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1522 16:19:36: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1501 1523 1502 1524 ----------------------------------- … … 1509 1531 Line: 779 1510 1532 Stack unwinding: <<beginning of stack>> 1511 1 3:04:00: An exception has been thrown!1533 16:19:36: An exception has been thrown! 1512 1534 1513 1535 ----------------------------------- … … 1520 1542 Line: 779 1521 1543 Stack unwinding: <<beginning of stack>> 1522 1 3:04:00: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1544 16:19:36: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1523 1545 1524 1546 ----------------------------------- … … 1531 1553 Line: 779 1532 1554 Stack unwinding: <<beginning of stack>> 1533 1 3:04:00: An exception has been thrown!1555 16:19:36: An exception has been thrown! 1534 1556 1535 1557 ----------------------------------- … … 1542 1564 Line: 779 1543 1565 Stack unwinding: <<beginning of stack>> 1544 1 3:04:00: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1566 16:19:36: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1545 1567 1546 1568 ----------------------------------- … … 1553 1575 Line: 779 1554 1576 Stack unwinding: <<beginning of stack>> 1555 1 3:04:00: An exception has been thrown!1577 16:19:36: An exception has been thrown! 1556 1578 1557 1579 ----------------------------------- … … 1564 1586 Line: 779 1565 1587 Stack unwinding: <<beginning of stack>> 1566 1 3:04:00: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1588 16:19:36: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1567 1589 1568 1590 ----------------------------------- … … 1575 1597 Line: 779 1576 1598 Stack unwinding: <<beginning of stack>> 1577 1 3:04:00: An exception has been thrown!1599 16:19:36: An exception has been thrown! 1578 1600 1579 1601 ----------------------------------- … … 1586 1608 Line: 779 1587 1609 Stack unwinding: <<beginning of stack>> 1588 1 3:04:00: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1610 16:19:36: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1589 1611 1590 1612 ----------------------------------- … … 1597 1619 Line: 779 1598 1620 Stack unwinding: <<beginning of stack>> 1599 1 3:04:00: An exception has been thrown!1621 16:19:36: An exception has been thrown! 1600 1622 1601 1623 ----------------------------------- … … 1608 1630 Line: 779 1609 1631 Stack unwinding: <<beginning of stack>> 1610 1 3:04:00: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1632 16:19:36: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1611 1633 1612 1634 ----------------------------------- … … 1619 1641 Line: 779 1620 1642 Stack unwinding: <<beginning of stack>> 1621 1 3:04:00: An exception has been thrown!1643 16:19:36: An exception has been thrown! 1622 1644 1623 1645 ----------------------------------- … … 1630 1652 Line: 779 1631 1653 Stack unwinding: <<beginning of stack>> 1632 1 3:04:00: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1654 16:19:36: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1633 1655 1634 1656 ----------------------------------- … … 1641 1663 Line: 779 1642 1664 Stack unwinding: <<beginning of stack>> 1643 1 3:04:00: An exception has been thrown!1665 16:19:36: An exception has been thrown! 1644 1666 1645 1667 ----------------------------------- … … 1652 1674 Line: 779 1653 1675 Stack unwinding: <<beginning of stack>> 1654 1 3:04:00: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1676 16:19:36: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1655 1677 1656 1678 ----------------------------------- … … 1663 1685 Line: 779 1664 1686 Stack unwinding: <<beginning of stack>> 1665 1 3:04:00: An exception has been thrown!1687 16:19:36: An exception has been thrown! 1666 1688 1667 1689 ----------------------------------- … … 1674 1696 Line: 779 1675 1697 Stack unwinding: <<beginning of stack>> 1676 1 3:04:00: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1698 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1677 1699 1678 1700 ----------------------------------- … … 1685 1707 Line: 779 1686 1708 Stack unwinding: <<beginning of stack>> 1687 1 3:04:00: An exception has been thrown!1709 16:19:36: An exception has been thrown! 1688 1710 1689 1711 ----------------------------------- … … 1696 1718 Line: 779 1697 1719 Stack unwinding: <<beginning of stack>> 1698 1 3:04:00: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1720 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1699 1721 1700 1722 ----------------------------------- … … 1707 1729 Line: 779 1708 1730 Stack unwinding: <<beginning of stack>> 1709 1 3:04:00: An exception has been thrown!1731 16:19:36: An exception has been thrown! 1710 1732 1711 1733 ----------------------------------- … … 1718 1740 Line: 779 1719 1741 Stack unwinding: <<beginning of stack>> 1720 1 3:04:00: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1742 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1721 1743 1722 1744 ----------------------------------- … … 1729 1751 Line: 779 1730 1752 Stack unwinding: <<beginning of stack>> 1731 1 3:04:00: An exception has been thrown!1753 16:19:36: An exception has been thrown! 1732 1754 1733 1755 ----------------------------------- … … 1740 1762 Line: 779 1741 1763 Stack unwinding: <<beginning of stack>> 1742 1 3:04:00: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1764 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1743 1765 1744 1766 ----------------------------------- … … 1751 1773 Line: 779 1752 1774 Stack unwinding: <<beginning of stack>> 1753 1 3:04:00: An exception has been thrown!1775 16:19:36: An exception has been thrown! 1754 1776 1755 1777 ----------------------------------- … … 1762 1784 Line: 779 1763 1785 Stack unwinding: <<beginning of stack>> 1764 1 3:04:00: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1786 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1765 1787 1766 1788 ----------------------------------- … … 1773 1795 Line: 779 1774 1796 Stack unwinding: <<beginning of stack>> 1775 1 3:04:00: An exception has been thrown!1797 16:19:36: An exception has been thrown! 1776 1798 1777 1799 ----------------------------------- … … 1784 1806 Line: 779 1785 1807 Stack unwinding: <<beginning of stack>> 1786 1 3:04:00: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1808 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1787 1809 1788 1810 ----------------------------------- … … 1795 1817 Line: 779 1796 1818 Stack unwinding: <<beginning of stack>> 1797 1 3:04:00: An exception has been thrown!1819 16:19:36: An exception has been thrown! 1798 1820 1799 1821 ----------------------------------- … … 1806 1828 Line: 779 1807 1829 Stack unwinding: <<beginning of stack>> 1808 1 3:04:00: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1830 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1809 1831 1810 1832 ----------------------------------- … … 1817 1839 Line: 779 1818 1840 Stack unwinding: <<beginning of stack>> 1819 1 3:04:00: An exception has been thrown!1841 16:19:36: An exception has been thrown! 1820 1842 1821 1843 ----------------------------------- … … 1828 1850 Line: 779 1829 1851 Stack unwinding: <<beginning of stack>> 1830 1 3:04:00: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1852 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1831 1853 1832 1854 ----------------------------------- … … 1839 1861 Line: 779 1840 1862 Stack unwinding: <<beginning of stack>> 1841 13:04:00: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1842 13:04:00: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1843 13:04:00: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1844 13:04:00: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1845 13:04:00: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1846 13:04:00: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1847 13:04:00: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1848 13:04:00: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1849 13:04:00: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1850 13:04:00: Parsing script X3D.material 1851 13:04:01: Parsing script GameTools_Glow.compositor 1852 13:04:01: Parsing script GameTools_ToneMap.compositor 1853 13:04:01: Parsing script sample.fontdef 1854 13:04:01: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1855 13:04:01: Parsing script GameTools.particle 1856 13:04:01: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1857 13:04:01: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1858 13:04:01: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1859 13:04:01: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1860 13:04:01: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1861 13:04:01: Parsing script Compositor.overlay 1862 13:04:01: Parsing script DP3.overlay 1863 13:04:01: Parsing script Example-CubeMapping.overlay 1864 13:04:01: Parsing script Example-DynTex.overlay 1865 13:04:01: Parsing script Example-Water.overlay 1866 13:04:01: Parsing script FullScreen.overlay 1867 13:04:01: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1868 13:04:01: Parsing script Shadows.overlay 1869 13:04:01: Finished parsing scripts for resource group General 1870 13:04:01: Parsing scripts for resource group Internal 1871 13:04:01: Finished parsing scripts for resource group Internal 1872 13:04:01: Mesh: Loading teapot.mesh. 1873 13:04:01: 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? 1874 13:04:01: Mesh: Loading difflab.mesh. 1875 13:04:01: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1876 13:04:01: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1877 13:04:01: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 1878 13:04:01: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1879 13:04:01: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1880 13:04:01: 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 1881 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1882 13:04:01: Creating viewport on target 'rtt/42649376', 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 1883 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1884 13:04:01: Creating viewport on target 'rtt/42649440', 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 1885 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1886 13:04:01: Creating viewport on target 'rtt/42649504', 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 1887 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1888 13:04:01: Creating viewport on target 'rtt/42649568', 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 1889 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1890 13:04:01: Creating viewport on target 'rtt/42649632', 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 1891 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1892 13:04:01: 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. 1893 13:04:01: Creating viewport on target 'rtt/42650560', 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 1894 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1895 13:04:01: Creating viewport on target 'rtt/42650624', 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 1896 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1897 13:04:01: Creating viewport on target 'rtt/42650688', 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 1898 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1899 13:04:01: Creating viewport on target 'rtt/42650752', 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 1900 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1901 13:04:01: Creating viewport on target 'rtt/42650816', 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 1902 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1903 13:04:01: Creating viewport on target 'rtt/42650880', 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 1904 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1905 13:04:01: 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. 1906 13:04:01: Creating viewport on target 'rtt/42651936', 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 1907 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1908 13:04:01: Creating viewport on target 'rtt/42652000', 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 1909 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1910 13:04:01: Creating viewport on target 'rtt/42652064', 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 1911 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1912 13:04:01: Creating viewport on target 'rtt/42652128', 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 1913 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1914 13:04:01: Creating viewport on target 'rtt/42652192', 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 1915 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1916 13:04:01: Creating viewport on target 'rtt/42652256', 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 1917 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1918 13:04:01: 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. 1919 13:04:01: Creating viewport on target 'rtt/42653280', 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 1920 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1921 13:04:01: Creating viewport on target 'rtt/42653344', 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 1922 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1923 13:04:01: Creating viewport on target 'rtt/42653408', 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 1924 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1925 13:04:01: Creating viewport on target 'rtt/42653472', 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 1926 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1927 13:04:01: Creating viewport on target 'rtt/42653536', 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 1928 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1929 13:04:01: Creating viewport on target 'rtt/42653600', 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 1930 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1931 13:04:01: 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. 1932 13:04:01: Creating viewport on target 'rtt/42654656', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1933 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 1934 13:04:01: Creating viewport on target 'rtt/42654720', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1935 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 1936 13:04:01: Creating viewport on target 'rtt/42654784', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1937 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 1938 13:04:01: Creating viewport on target 'rtt/42654848', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1939 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 1940 13:04:01: Creating viewport on target 'rtt/42654912', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1941 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 1942 13:04:01: Creating viewport on target 'rtt/42654976', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1943 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 1863 16:19:36: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1864 16:19:36: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1865 16:19:36: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1866 16:19:36: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1867 16:19:36: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1868 16:19:36: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1869 16:19:36: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1870 16:19:36: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1871 16:19:36: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1872 16:19:36: Parsing script X3D.material 1873 16:19:36: Parsing script GameTools_Glow.compositor 1874 16:19:36: Parsing script GameTools_ToneMap.compositor 1875 16:19:36: Parsing script sample.fontdef 1876 16:19:36: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1877 16:19:36: Parsing script GameTools.particle 1878 16:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1879 16:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1880 16:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1881 16:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1882 16:19:36: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1883 16:19:36: Parsing script Compositor.overlay 1884 16:19:36: Parsing script DP3.overlay 1885 16:19:36: Parsing script Example-CubeMapping.overlay 1886 16:19:36: Parsing script Example-DynTex.overlay 1887 16:19:36: Parsing script Example-Water.overlay 1888 16:19:36: Parsing script FullScreen.overlay 1889 16:19:36: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1890 16:19:36: Parsing script Shadows.overlay 1891 16:19:36: Finished parsing scripts for resource group General 1892 16:19:36: Parsing scripts for resource group Internal 1893 16:19:36: Finished parsing scripts for resource group Internal 1894 16:19:36: Mesh: Loading teapot.mesh. 1895 16: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 16:19:36: Mesh: Loading difflab.mesh. 1897 16:19:36: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1898 16:19:36: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1899 16:19:36: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 1900 16:19:36: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1901 16:19:36: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1902 16: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: 0 1903 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1904 16: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: 0 1905 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1906 16: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: 0 1907 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1908 16: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: 0 1909 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1910 16: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: 0 1911 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1912 16: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: 0 1913 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1914 16: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 16: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: 0 1916 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1917 16: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: 0 1918 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1919 16: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: 0 1920 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1921 16: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: 0 1922 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1923 16: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: 0 1924 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1925 16: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: 0 1926 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1927 16: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 16: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: 0 1929 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1930 16: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: 0 1931 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1932 16: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: 0 1933 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1934 16: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: 0 1935 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1936 16: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: 0 1937 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1938 16: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: 0 1939 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1940 16: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 16: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: 0 1942 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1943 16: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: 0 1944 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1945 16: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: 0 1946 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1947 16: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: 0 1948 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1949 16: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: 0 1950 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1951 16: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: 0 1952 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 1953 16: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 16:19:36: Win32Input8: DirectInput Activation Starts 1955 16:19:36: Win32Input8: Establishing keyboard input. 1956 16:19:36: Win32Input8: Keyboard input established. 1957 16:19:36: Win32Input8: Initializing mouse input in immediate mode. 1958 16:19:36: Win32Input8: Mouse input in immediate mode initialized. 1959 16:19:36: Win32Input8: DirectInput OK. 1960 16: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: 0 1961 16:19:36: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1962 16: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: 0 1963 16:19:36: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1964 16: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: 0 1965 16:19:36: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 1966 16: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: 0 1967 16:19:36: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1968 16: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 16: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 16:20:34: Unregistering ResourceManager for type BspLevel 1971 16:20:34: Render Target 'rtt/42868704' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1972 16:20:34: Render Target 'rtt/42868640' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1973 16:20:34: Render Target 'rtt/42868288' Average FPS: 4.78385 Best FPS: 19.4363 Worst FPS: 0.0806159 1974 16:20:34: Render Target 'rtt/42648256' Average FPS: 4.78385 Best FPS: 19.4175 Worst FPS: 0.0806192 1975 16:20:34: Render Target 'rtt/42795616' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 1976 16:20:34: Render Target 'rtt/42795680' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 1977 16:20:34: Render Target 'rtt/42795744' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 1978 16:20:34: Render Target 'rtt/42795808' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 1979 16:20:34: Render Target 'rtt/42795872' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 1980 16:20:34: Render Target 'rtt/42795936' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 1981 16:20:34: Render Target 'rtt/42794240' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1982 16:20:34: Render Target 'rtt/42794304' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1983 16:20:34: Render Target 'rtt/42794368' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1984 16:20:34: Render Target 'rtt/42794432' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1985 16:20:34: Render Target 'rtt/42794496' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1986 16:20:34: Render Target 'rtt/42794560' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1987 16:20:34: Render Target 'rtt/42792896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1988 16:20:34: Render Target 'rtt/42792960' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1989 16:20:34: Render Target 'rtt/42793024' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1990 16:20:34: Render Target 'rtt/42793088' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1991 16:20:34: Render Target 'rtt/42793152' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1992 16:20:34: Render Target 'rtt/42793216' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1993 16:20:34: Render Target 'rtt/42791616' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1994 16:20:34: Render Target 'rtt/42791680' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1995 16:20:34: Render Target 'rtt/42791744' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1996 16:20:34: Render Target 'rtt/42791808' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1997 16:20:34: Render Target 'rtt/42791872' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1998 16:20:34: Render Target 'rtt/42791936' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1999 16:20:34: *-*-* OGRE Shutdown 2000 16:20:34: Unregistering ResourceManager for type Compositor 2001 16:20:34: Unregistering ResourceManager for type Font 2002 16:20:34: Unregistering ResourceManager for type Skeleton 2003 16:20:34: Unregistering ResourceManager for type Mesh 2004 16:20:34: Unregistering ResourceManager for type HighLevelGpuProgram 2005 16:20:34: Unloading library .\Plugin_CgProgramManager 2006 16:20:34: Unloading library .\Plugin_OctreeSceneManager 2007 16:20:34: Unloading library .\Plugin_BSPSceneManager 2008 16:20:34: Unloading library .\Plugin_ParticleFX 2009 16:20:34: Render Target 'OGRE Render Window' Average FPS: 4.7854 Best FPS: 20.3095 Worst FPS: 0.0402933 2010 16:20:34: D3D9 : Shutting down cleanly. 2011 16:20:34: Unregistering ResourceManager for type Texture 2012 16:20:34: Unregistering ResourceManager for type GpuProgram 2013 16:20:34: D3D9 : Direct3D9 Rendering Subsystem destroyed. 2014 16:20:34: Unloading library .\RenderSystem_Direct3D9 2015 16:20:34: Unregistering ResourceManager for type Material 2016 16:20:34: Unloading library OgrePlatform.dll
Note: See TracChangeset
for help on using the changeset viewer.