Changeset 1487 for GTP/trunk/App/Demos
- Timestamp:
- 09/26/06 09:47:54 (18 years ago)
- Location:
- GTP/trunk/App/Demos/Illum
- Files:
-
- 1 deleted
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/GameTools_Cau.hlsl
r1094 r1487 31 31 float4 pos = tex2Dlod(PhotonHitMap, float4(position.x, 1.0 - position.y,0,0)).rgba; 32 32 // float4 pos = float4(0,0,-0.5,1); 33 33 34 if(pos.a == 0)//no photon hit 34 35 { -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/GameTools_CauCube.hlsl
r1355 r1487 16 16 17 17 float4 cPosition; 18 float pixel = 1.0 / resolution;18 float pixel = 1.0 / 32.0; 19 19 float2 uv = float2(position.x, 1.0 - position.y); 20 20 float4 pos = tex2Dlod(PhotonHitMap, float4(uv,0,0)).rgba; … … 23 23 { 24 24 OUT.color = float4(0,0,0,0); 25 OUT.hPosition = float4(0, 0, 1000000 00, 1);25 OUT.hPosition = float4(0, 0, 1000000, 1); 26 26 } 27 27 else … … 31 31 OUT.hPosition = mul(Proj, cPosition); 32 32 33 float intensity = 0. 5;33 float intensity = 0.25; 34 34 35 35 //read four neighbours 36 float valids = 0;37 36 float sumdist = 0; 38 37 float dist; 39 float4 pos1 = tex2Dlod(PhotonHitMap, float4(uv + float2(pixel, pixel),0,0)).rgba; 38 float valids = 0; 39 float4 pos1 = tex2Dlod(PhotonHitMap, float4(uv + float2(pixel, pixel),0,0)); 40 40 if(pos1.a != 0) 41 41 { 42 42 dist = length(pos1.xyz - pos.xyz); 43 sumdist += dist; 43 44 valids++; 44 sumdist += dist;45 45 } 46 float4 pos2 = tex2Dlod(PhotonHitMap, float4(uv + float2(-pixel, pixel),0,0)).rgba; 46 47 float4 pos2 = tex2Dlod(PhotonHitMap, float4(uv + float2(-pixel, pixel),0,0)); 47 48 if(pos2.a != 0) 48 49 { 49 50 dist = length(pos2.xyz - pos.xyz); 51 sumdist += dist; 50 52 valids++; 51 sumdist += dist;52 53 } 53 float4 pos3 = tex2Dlod(PhotonHitMap, float4(uv + float2(pixel, -pixel),0,0)).rgba; 54 55 float4 pos3 = tex2Dlod(PhotonHitMap, float4(uv + float2(pixel, -pixel),0,0)); 54 56 if(pos3.a != 0) 55 57 { 56 58 dist = length(pos3.xyz - pos.xyz); 59 sumdist += dist; 57 60 valids++; 58 sumdist += dist;59 61 } 60 float4 pos4 = tex2Dlod(PhotonHitMap, float4(uv + float2(-pixel, -pixel),0,0)).rgba; 62 63 float4 pos4 = tex2Dlod(PhotonHitMap, float4(uv + float2(-pixel, -pixel),0,0)); 61 64 if(pos4.a != 0) 62 65 { 63 66 dist = length(pos4.xyz - pos.xyz); 67 sumdist += dist; 64 68 valids++; 65 sumdist += dist;66 69 } 67 68 float avrdist = sumdist / valids;69 float maxdist = 0.1;70 71 float avrdist = sumdist / 4;//valids; 72 float maxdist = 1; 70 73 intensity = max(maxdist - avrdist, 0.0) / maxdist; 71 74 72 OUT.color = float4(1,1,1,intensity); 75 //intensity = valids / 4.0;//avrdist; 76 77 //OUT.color = float4(1,1,1,intensity); 78 OUT.color = intensity; 73 79 } 74 80 -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/GameTools_Localized_EnvMap.hlsl
r1094 r1487 128 128 129 129 float cos_theta = -dot(V, mNormal); 130 float sFresnel = 0. 5;130 float sFresnel = 0.1; 131 131 float F = (sFresnel + pow(1-cos_theta, 5.0f) * (1-sFresnel)); 132 132 … … 229 229 float3 V = normalize(wPos - cameraPos); 230 230 231 float3 R = refract(V, mNormal, 0. 9);231 float3 R = refract(V, mNormal, 0.85); 232 232 //float3 R = V; 233 233 newTexCoord = R; -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/GlassHead.material
r1445 r1487 38 38 cull_software none 39 39 lighting off 40 scene_blend add40 //scene_blend add 41 41 scene_blend src_alpha one 42 42 depth_write off … … 49 49 param_named_auto Proj projection_matrix 50 50 param_named_auto resolution viewport_width 51 param_named CauSpriteSize float 10.0 51 //param_named CauSpriteSize float 10.0 52 param_named CauSpriteSize float 70.0 52 53 } 53 54 fragment_program_ref GameTools/CauPS … … 94 95 cull_software none 95 96 lighting off 96 scene_blend add97 //scene_blend add 97 98 scene_blend src_alpha one 98 99 depth_write off … … 111 112 texture_unit 112 113 { 113 vertex_texture true 114 texture flare.png 114 vertex_texture true 115 115 } 116 116 } … … 131 131 RenderTechnique ColorCubeMap 132 132 { 133 update_interval 0133 update_interval 5 134 134 distance_calc true 3.5 135 135 } 136 136 RenderTechnique DistanceCubeMap 137 137 { 138 update_interval 0138 update_interval 5 139 139 distance_calc true 3.5 140 140 } 141 141 RenderTechnique CausticCaster 142 142 { 143 attenuation 0 143 attenuation 0 144 photonmap_resolution 32 145 caustic_cubemap_resolution 512 144 146 caustic_map_material GameTools/CauTri 145 147 use_triangles true -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log
r1474 r1487 1 20:04:19: Creating resource group General2 20:04:19: Creating resource group Internal3 20:04:19: Creating resource group Autodetect4 20:04:19: Registering ResourceManager for type Material5 20:04:19: Registering ResourceManager for type Mesh6 20:04:19: Registering ResourceManager for type Skeleton7 20:04:19: MovableObjectFactory for type 'ParticleSystem' registered.8 20:04:19: Loading library OgrePlatform_d.dll9 20:04:19: OverlayElementFactory for type Panel registered.10 20:04:19: OverlayElementFactory for type BorderPanel registered.11 20:04:19: OverlayElementFactory for type TextArea registered.12 20:04:19: Registering ResourceManager for type Font13 20:04:19: ArchiveFactory for archive type FileSystem registered.14 20:04:19: ArchiveFactory for archive type Zip registered.15 20:04:19: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 200516 20:04:19: 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 20:04:19: Registering ResourceManager for type HighLevelGpuProgram18 20:04:19: Registering ResourceManager for type Compositor19 20:04:19: MovableObjectFactory for type 'Entity' registered.20 20:04:19: MovableObjectFactory for type 'Light' registered.21 20:04:19: MovableObjectFactory for type 'BillboardSet' registered.22 20:04:19: MovableObjectFactory for type 'ManualObject' registered.23 20:04:19: MovableObjectFactory for type 'BillboardChain' registered.24 20:04:19: MovableObjectFactory for type 'RibbonTrail' registered.25 20:04:19: Loading library .\RenderSystem_Direct3D926 20:04:19: D3D9 : Direct3D9 Rendering Subsystem created.27 20:04:19: D3D9: Driver Detection Starts28 20:04:19: D3D9: Driver Detection Ends29 20:04:19: Loading library .\Plugin_ParticleFX30 20:04:19: Particle Emitter Type 'Point' registered31 20:04:19: Particle Emitter Type 'Box' registered32 20:04:19: Particle Emitter Type 'Ellipsoid' registered33 20:04:19: Particle Emitter Type 'Cylinder' registered34 20:04:19: Particle Emitter Type 'Ring' registered35 20:04:19: Particle Emitter Type 'HollowEllipsoid' registered36 20:04:19: Particle Affector Type 'LinearForce' registered37 20:04:19: Particle Affector Type 'ColourFader' registered38 20:04:19: Particle Affector Type 'ColourFader2' registered39 20:04:19: Particle Affector Type 'ColourImage' registered40 20:04:19: Particle Affector Type 'ColourInterpolator' registered41 20:04:19: Particle Affector Type 'Scaler' registered42 20:04:19: Particle Affector Type 'Rotator' registered43 20:04:19: Particle Affector Type 'DirectionRandomiser' registered44 20:04:19: Particle Affector Type 'DeflectorPlane' registered45 20:04:19: Loading library .\Plugin_BSPSceneManager46 20:04:19: Registering ResourceManager for type BspLevel47 20:04:19: Loading library .\Plugin_OctreeSceneManager48 20:04:19: Loading library .\Plugin_CgProgramManager49 20:04:19: *-*-* OGRE Initialising50 20:04:19: *-*-* Version 1.2.0 (Dagon)51 20:04:19: Creating resource group Bootstrap52 20:04:19: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'53 20:04:19: Added resource location '../../Media' of type 'FileSystem' to resource group 'General'54 20:04:19: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General'55 20:04:19: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General'56 20:04:19: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General'57 20:04:19: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General'58 20:04:19: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General'59 20:04:19: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General'60 20:04:19: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General'61 20:04:19: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General'62 20:04:19: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'63 20:04:19: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General'64 20:04:20: D3D9 : RenderSystem Option: Allow NVPerfHUD = No65 20:04:20: D3D9 : RenderSystem Option: Anti aliasing = None66 20:04:20: D3D9 : RenderSystem Option: Floating-point mode = Fastest67 20:04:20: D3D9 : RenderSystem Option: Full Screen = No68 20:04:20: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT69 20:04:20: D3D9 : RenderSystem Option: VSync = No70 20:04:20: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour71 20:04:21: D3D9 : Subsystem Initialising72 20:04:21: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false73 20:04:21: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp74 20:04:21: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.75 20:04:21: Registering ResourceManager for type Texture76 20:04:21: Registering ResourceManager for type GpuProgram77 20:04:21: RenderSystem capabilities78 20:04:21: -------------------------79 20:04:21: * Hardware generation of mipmaps: yes80 20:04:21: * Texture blending: yes81 20:04:21: * Anisotropic texture filtering: yes82 20:04:21: * Dot product texture operation: yes83 20:04:21: * Cube mapping: yes84 20:04:21: * Hardware stencil buffer: yes85 20:04:21: - Stencil depth: 886 20:04:21: - Two sided stencil support: yes87 20:04:21: - Wrap stencil values: yes88 20:04:21: * Hardware vertex / index buffers: yes89 20:04:21: * Vertex programs: yes90 20:04:21: - Max vertex program version: vs_3_091 20:04:21: * Fragment programs: yes92 20:04:21: - Max fragment program version: ps_3_093 20:04:21: * Texture Compression: yes94 20:04:21: - DXT: yes95 20:04:21: - VTC: no96 20:04:21: * Scissor Rectangle: yes97 20:04:21: * Hardware Occlusion Query: yes98 20:04:21: * User clip planes: yes99 20:04:21: * VET_UBYTE4 vertex element type: yes100 20:04:21: * Infinite far plane projection: yes101 20:04:21: * Hardware render-to-texture: yes102 20:04:21: * Floating point textures: yes103 20:04:21: * Non-power-of-two textures: yes104 20:04:21: * Volume textures: yes105 20:04:21: * Multiple Render Targets: 4106 20:04:21: * Max Point Size: 8192107 20:04:21: ***************************************108 20:04:21: *** D3D9 : Subsystem Initialised OK ***109 20:04:21: ***************************************110 20:04:21: ResourceBackgroundQueue - threading disabled111 20:04:21: Particle Renderer Type 'billboard' registered112 20:04:21: Particle Renderer Type 'sprite' registered113 20:04:21: 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 20:04:21: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600115 20:04:21: Parsing scripts for resource group Autodetect116 20:04:21: Finished parsing scripts for resource group Autodetect117 20:04:21: Parsing scripts for resource group Bootstrap118 20:04:21: Parsing script OgreCore.material119 20:04:21: Parsing script OgreProfiler.material120 20:04:21: Parsing script Ogre.fontdef121 20:04:21: Parsing script OgreDebugPanel.overlay122 20:04:21: 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 20:04:21: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.124 20:04:21: 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 20:04:21: Font TrebuchetMSBoldusing texture size 512x512126 20:04:21: Info: Freetype returned null for character 160 in font TrebuchetMSBold127 20:04:21: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.128 20:04:21: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.129 20:04:21: Parsing script OgreLoadingPanel.overlay130 20:04:21: Finished parsing scripts for resource group Bootstrap131 20:04:21: Parsing scripts for resource group General132 20:04:21: Parsing script GameTools.program133 20:04:21: Parsing script atlascube.material134 20:04:21: Parsing script Diffuse.material135 20:04:23: An exception has been thrown!1 09:22:23: Creating resource group General 2 09:22:23: Creating resource group Internal 3 09:22:23: Creating resource group Autodetect 4 09:22:23: Registering ResourceManager for type Material 5 09:22:23: Registering ResourceManager for type Mesh 6 09:22:23: Registering ResourceManager for type Skeleton 7 09:22:23: MovableObjectFactory for type 'ParticleSystem' registered. 8 09:22:23: Loading library OgrePlatform_d.dll 9 09:22:23: OverlayElementFactory for type Panel registered. 10 09:22:23: OverlayElementFactory for type BorderPanel registered. 11 09:22:23: OverlayElementFactory for type TextArea registered. 12 09:22:23: Registering ResourceManager for type Font 13 09:22:23: ArchiveFactory for archive type FileSystem registered. 14 09:22:23: ArchiveFactory for archive type Zip registered. 15 09:22:23: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 09:22:23: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw 17 09:22:23: Registering ResourceManager for type HighLevelGpuProgram 18 09:22:23: Registering ResourceManager for type Compositor 19 09:22:23: MovableObjectFactory for type 'Entity' registered. 20 09:22:23: MovableObjectFactory for type 'Light' registered. 21 09:22:23: MovableObjectFactory for type 'BillboardSet' registered. 22 09:22:23: MovableObjectFactory for type 'ManualObject' registered. 23 09:22:23: MovableObjectFactory for type 'BillboardChain' registered. 24 09:22:23: MovableObjectFactory for type 'RibbonTrail' registered. 25 09:22:23: Loading library .\RenderSystem_Direct3D9 26 09:22:23: D3D9 : Direct3D9 Rendering Subsystem created. 27 09:22:23: D3D9: Driver Detection Starts 28 09:22:23: D3D9: Driver Detection Ends 29 09:22:23: Loading library .\Plugin_ParticleFX 30 09:22:23: Particle Emitter Type 'Point' registered 31 09:22:23: Particle Emitter Type 'Box' registered 32 09:22:23: Particle Emitter Type 'Ellipsoid' registered 33 09:22:23: Particle Emitter Type 'Cylinder' registered 34 09:22:23: Particle Emitter Type 'Ring' registered 35 09:22:23: Particle Emitter Type 'HollowEllipsoid' registered 36 09:22:23: Particle Affector Type 'LinearForce' registered 37 09:22:23: Particle Affector Type 'ColourFader' registered 38 09:22:23: Particle Affector Type 'ColourFader2' registered 39 09:22:23: Particle Affector Type 'ColourImage' registered 40 09:22:23: Particle Affector Type 'ColourInterpolator' registered 41 09:22:23: Particle Affector Type 'Scaler' registered 42 09:22:23: Particle Affector Type 'Rotator' registered 43 09:22:23: Particle Affector Type 'DirectionRandomiser' registered 44 09:22:23: Particle Affector Type 'DeflectorPlane' registered 45 09:22:23: Loading library .\Plugin_BSPSceneManager 46 09:22:23: Registering ResourceManager for type BspLevel 47 09:22:23: Loading library .\Plugin_OctreeSceneManager 48 09:22:23: Loading library .\Plugin_CgProgramManager 49 09:22:23: *-*-* OGRE Initialising 50 09:22:23: *-*-* Version 1.2.0 (Dagon) 51 09:22:23: Creating resource group Bootstrap 52 09:22:23: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 09:22:23: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 09:22:23: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 09:22:23: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 09:22:23: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 09:22:23: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 09:22:23: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 09:22:23: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 09:22:23: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 09:22:23: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 09:22:23: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 09:22:23: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 09:22:23: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 09:22:23: D3D9 : RenderSystem Option: Anti aliasing = None 66 09:22:23: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 09:22:23: D3D9 : RenderSystem Option: Full Screen = No 68 09:22:23: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 69 09:22:23: D3D9 : RenderSystem Option: VSync = No 70 09:22:23: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 09:22:25: D3D9 : Subsystem Initialising 72 09:22:25: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 09:22:25: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 09:22:25: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 09:22:25: Registering ResourceManager for type Texture 76 09:22:25: Registering ResourceManager for type GpuProgram 77 09:22:25: RenderSystem capabilities 78 09:22:25: ------------------------- 79 09:22:25: * Hardware generation of mipmaps: yes 80 09:22:25: * Texture blending: yes 81 09:22:25: * Anisotropic texture filtering: yes 82 09:22:25: * Dot product texture operation: yes 83 09:22:25: * Cube mapping: yes 84 09:22:25: * Hardware stencil buffer: yes 85 09:22:25: - Stencil depth: 8 86 09:22:25: - Two sided stencil support: yes 87 09:22:25: - Wrap stencil values: yes 88 09:22:25: * Hardware vertex / index buffers: yes 89 09:22:25: * Vertex programs: yes 90 09:22:25: - Max vertex program version: vs_3_0 91 09:22:25: * Fragment programs: yes 92 09:22:25: - Max fragment program version: ps_3_0 93 09:22:25: * Texture Compression: yes 94 09:22:25: - DXT: yes 95 09:22:25: - VTC: no 96 09:22:25: * Scissor Rectangle: yes 97 09:22:25: * Hardware Occlusion Query: yes 98 09:22:25: * User clip planes: yes 99 09:22:25: * VET_UBYTE4 vertex element type: yes 100 09:22:25: * Infinite far plane projection: yes 101 09:22:25: * Hardware render-to-texture: yes 102 09:22:25: * Floating point textures: yes 103 09:22:25: * Non-power-of-two textures: yes 104 09:22:25: * Volume textures: yes 105 09:22:25: * Multiple Render Targets: 4 106 09:22:25: * Max Point Size: 8192 107 09:22:25: *************************************** 108 09:22:25: *** D3D9 : Subsystem Initialised OK *** 109 09:22:25: *************************************** 110 09:22:25: ResourceBackgroundQueue - threading disabled 111 09:22:25: Particle Renderer Type 'billboard' registered 112 09:22:25: Particle Renderer Type 'sprite' registered 113 09:22:25: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 114 09:22:25: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 09:22:25: Parsing scripts for resource group Autodetect 116 09:22:25: Finished parsing scripts for resource group Autodetect 117 09:22:25: Parsing scripts for resource group Bootstrap 118 09:22:25: Parsing script OgreCore.material 119 09:22:25: Parsing script OgreProfiler.material 120 09:22:25: Parsing script Ogre.fontdef 121 09:22:25: Parsing script OgreDebugPanel.overlay 122 09:22:25: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 123 09:22:25: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 124 09:22:25: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 125 09:22:25: Font TrebuchetMSBoldusing texture size 512x512 126 09:22:25: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 09:22:25: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 128 09:22:25: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 09:22:25: Parsing script OgreLoadingPanel.overlay 130 09:22:25: Finished parsing scripts for resource group Bootstrap 131 09:22:25: Parsing scripts for resource group General 132 09:22:25: Parsing script GameTools.program 133 09:22:25: Parsing script atlascube.material 134 09:22:25: Parsing script Diffuse.material 135 09:22:27: An exception has been thrown! 136 136 137 137 ----------------------------------- … … 144 144 Line: 768 145 145 Stack unwinding: <<beginning of stack>> 146 20:04:23: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown!146 09:22:27: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 147 147 148 148 ----------------------------------- … … 155 155 Line: 768 156 156 Stack unwinding: <<beginning of stack>> 157 20:04:23: An exception has been thrown!157 09:22:27: An exception has been thrown! 158 158 159 159 ----------------------------------- … … 166 166 Line: 768 167 167 Stack unwinding: <<beginning of stack>> 168 20:04:23: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!168 09:22:27: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 169 169 170 170 ----------------------------------- … … 177 177 Line: 768 178 178 Stack unwinding: <<beginning of stack>> 179 20:04:23: Parsing script EnvMetals.material180 20:04:23: An exception has been thrown!181 182 ----------------------------------- 183 Details: 184 ----------------------------------- 185 Error #: 7 186 Function: GpuProgramParameters::getParamIndex 187 Description: Cannot find a parameter named lightPosition. 188 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 189 Line: 768 190 Stack unwinding: <<beginning of stack>> 191 20:04:23: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!192 193 ----------------------------------- 194 Details: 195 ----------------------------------- 196 Error #: 7 197 Function: GpuProgramParameters::getParamIndex 198 Description: Cannot find a parameter named lightPosition. 199 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 200 Line: 768 201 Stack unwinding: <<beginning of stack>> 202 20:04:23: An exception has been thrown!203 204 ----------------------------------- 205 Details: 206 ----------------------------------- 207 Error #: 7 208 Function: GpuProgramParameters::getParamIndex 209 Description: Cannot find a parameter named lightPosition. 210 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 211 Line: 768 212 Stack unwinding: <<beginning of stack>> 213 20:04:23: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!214 215 ----------------------------------- 216 Details: 217 ----------------------------------- 218 Error #: 7 219 Function: GpuProgramParameters::getParamIndex 220 Description: Cannot find a parameter named lightPosition. 221 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 222 Line: 768 223 Stack unwinding: <<beginning of stack>> 224 20:04:23: An exception has been thrown!225 226 ----------------------------------- 227 Details: 228 ----------------------------------- 229 Error #: 7 230 Function: GpuProgramParameters::getParamIndex 231 Description: Cannot find a parameter named lightPosition. 232 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 233 Line: 768 234 Stack unwinding: <<beginning of stack>> 235 20:04:23: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!236 237 ----------------------------------- 238 Details: 239 ----------------------------------- 240 Error #: 7 241 Function: GpuProgramParameters::getParamIndex 242 Description: Cannot find a parameter named lightPosition. 243 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 244 Line: 768 245 Stack unwinding: <<beginning of stack>> 246 20:04:23: An exception has been thrown!247 248 ----------------------------------- 249 Details: 250 ----------------------------------- 251 Error #: 7 252 Function: GpuProgramParameters::getParamIndex 253 Description: Cannot find a parameter named lightPosition. 254 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 255 Line: 768 256 Stack unwinding: <<beginning of stack>> 257 20:04:23: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!258 259 ----------------------------------- 260 Details: 261 ----------------------------------- 262 Error #: 7 263 Function: GpuProgramParameters::getParamIndex 264 Description: Cannot find a parameter named lightPosition. 265 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 266 Line: 768 267 Stack unwinding: <<beginning of stack>> 268 20:04:23: Parsing script GameTools.material269 20:04:23: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend270 20:04:23: An exception has been thrown!179 09:22:27: Parsing script EnvMetals.material 180 09:22:27: An exception has been thrown! 181 182 ----------------------------------- 183 Details: 184 ----------------------------------- 185 Error #: 7 186 Function: GpuProgramParameters::getParamIndex 187 Description: Cannot find a parameter named lightPosition. 188 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 189 Line: 768 190 Stack unwinding: <<beginning of stack>> 191 09:22:27: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 192 193 ----------------------------------- 194 Details: 195 ----------------------------------- 196 Error #: 7 197 Function: GpuProgramParameters::getParamIndex 198 Description: Cannot find a parameter named lightPosition. 199 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 200 Line: 768 201 Stack unwinding: <<beginning of stack>> 202 09:22:27: An exception has been thrown! 203 204 ----------------------------------- 205 Details: 206 ----------------------------------- 207 Error #: 7 208 Function: GpuProgramParameters::getParamIndex 209 Description: Cannot find a parameter named lightPosition. 210 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 211 Line: 768 212 Stack unwinding: <<beginning of stack>> 213 09:22:27: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 214 215 ----------------------------------- 216 Details: 217 ----------------------------------- 218 Error #: 7 219 Function: GpuProgramParameters::getParamIndex 220 Description: Cannot find a parameter named lightPosition. 221 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 222 Line: 768 223 Stack unwinding: <<beginning of stack>> 224 09:22:27: An exception has been thrown! 225 226 ----------------------------------- 227 Details: 228 ----------------------------------- 229 Error #: 7 230 Function: GpuProgramParameters::getParamIndex 231 Description: Cannot find a parameter named lightPosition. 232 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 233 Line: 768 234 Stack unwinding: <<beginning of stack>> 235 09:22:27: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 236 237 ----------------------------------- 238 Details: 239 ----------------------------------- 240 Error #: 7 241 Function: GpuProgramParameters::getParamIndex 242 Description: Cannot find a parameter named lightPosition. 243 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 244 Line: 768 245 Stack unwinding: <<beginning of stack>> 246 09:22:27: An exception has been thrown! 247 248 ----------------------------------- 249 Details: 250 ----------------------------------- 251 Error #: 7 252 Function: GpuProgramParameters::getParamIndex 253 Description: Cannot find a parameter named lightPosition. 254 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 255 Line: 768 256 Stack unwinding: <<beginning of stack>> 257 09:22:27: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 258 259 ----------------------------------- 260 Details: 261 ----------------------------------- 262 Error #: 7 263 Function: GpuProgramParameters::getParamIndex 264 Description: Cannot find a parameter named lightPosition. 265 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 266 Line: 768 267 Stack unwinding: <<beginning of stack>> 268 09:22:27: Parsing script GameTools.material 269 09:22:27: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 270 09:22:27: An exception has been thrown! 271 271 272 272 ----------------------------------- … … 279 279 Line: 768 280 280 Stack unwinding: <<beginning of stack>> 281 20:04:23: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!281 09:22:27: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 282 282 283 283 ----------------------------------- … … 290 290 Line: 768 291 291 Stack unwinding: <<beginning of stack>> 292 20:04:23: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend293 20:04:23: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.294 20:04:23: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend295 20:04:23: Parsing script GameTools_HPS.material296 20:04:23: An exception has been thrown!297 298 ----------------------------------- 299 Details: 300 ----------------------------------- 301 Error #: 7 302 Function: GpuProgramParameters::getParamIndex 303 Description: Cannot find a parameter named worldViewProj. 304 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 305 Line: 768 306 Stack unwinding: <<beginning of stack>> 307 20:04:23: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!308 309 ----------------------------------- 310 Details: 311 ----------------------------------- 312 Error #: 7 313 Function: GpuProgramParameters::getParamIndex 314 Description: Cannot find a parameter named worldViewProj. 315 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 316 Line: 768 317 Stack unwinding: <<beginning of stack>> 318 20:04:23: An exception has been thrown!319 320 ----------------------------------- 321 Details: 322 ----------------------------------- 323 Error #: 7 324 Function: GpuProgramParameters::getParamIndex 325 Description: Cannot find a parameter named worldViewProj. 326 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 327 Line: 768 328 Stack unwinding: <<beginning of stack>> 329 20:04:23: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!330 331 ----------------------------------- 332 Details: 333 ----------------------------------- 334 Error #: 7 335 Function: GpuProgramParameters::getParamIndex 336 Description: Cannot find a parameter named worldViewProj. 337 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 338 Line: 768 339 Stack unwinding: <<beginning of stack>> 340 20:04:23: An exception has been thrown!292 09:22:27: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 293 09:22:27: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 294 09:22:27: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 295 09:22:27: Parsing script GameTools_HPS.material 296 09:22:27: An exception has been thrown! 297 298 ----------------------------------- 299 Details: 300 ----------------------------------- 301 Error #: 7 302 Function: GpuProgramParameters::getParamIndex 303 Description: Cannot find a parameter named worldViewProj. 304 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 305 Line: 768 306 Stack unwinding: <<beginning of stack>> 307 09:22:27: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 308 309 ----------------------------------- 310 Details: 311 ----------------------------------- 312 Error #: 7 313 Function: GpuProgramParameters::getParamIndex 314 Description: Cannot find a parameter named worldViewProj. 315 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 316 Line: 768 317 Stack unwinding: <<beginning of stack>> 318 09:22:27: An exception has been thrown! 319 320 ----------------------------------- 321 Details: 322 ----------------------------------- 323 Error #: 7 324 Function: GpuProgramParameters::getParamIndex 325 Description: Cannot find a parameter named worldViewProj. 326 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 327 Line: 768 328 Stack unwinding: <<beginning of stack>> 329 09:22:27: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 330 331 ----------------------------------- 332 Details: 333 ----------------------------------- 334 Error #: 7 335 Function: GpuProgramParameters::getParamIndex 336 Description: Cannot find a parameter named worldViewProj. 337 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 338 Line: 768 339 Stack unwinding: <<beginning of stack>> 340 09:22:27: An exception has been thrown! 341 341 342 342 ----------------------------------- … … 349 349 Line: 768 350 350 Stack unwinding: <<beginning of stack>> 351 20:04:23: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!351 09:22:27: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 352 352 353 353 ----------------------------------- … … 360 360 Line: 768 361 361 Stack unwinding: <<beginning of stack>> 362 20:04:23: An exception has been thrown!363 364 ----------------------------------- 365 Details: 366 ----------------------------------- 367 Error #: 7 368 Function: GpuProgramParameters::getParamIndex 369 Description: Cannot find a parameter named worldViewProj. 370 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 371 Line: 768 372 Stack unwinding: <<beginning of stack>> 373 20:04:23: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!374 375 ----------------------------------- 376 Details: 377 ----------------------------------- 378 Error #: 7 379 Function: GpuProgramParameters::getParamIndex 380 Description: Cannot find a parameter named worldViewProj. 381 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 382 Line: 768 383 Stack unwinding: <<beginning of stack>> 384 20:04:23: An exception has been thrown!362 09:22:27: An exception has been thrown! 363 364 ----------------------------------- 365 Details: 366 ----------------------------------- 367 Error #: 7 368 Function: GpuProgramParameters::getParamIndex 369 Description: Cannot find a parameter named worldViewProj. 370 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 371 Line: 768 372 Stack unwinding: <<beginning of stack>> 373 09:22:27: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 374 375 ----------------------------------- 376 Details: 377 ----------------------------------- 378 Error #: 7 379 Function: GpuProgramParameters::getParamIndex 380 Description: Cannot find a parameter named worldViewProj. 381 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 382 Line: 768 383 Stack unwinding: <<beginning of stack>> 384 09:22:27: An exception has been thrown! 385 385 386 386 ----------------------------------- … … 393 393 Line: 768 394 394 Stack unwinding: <<beginning of stack>> 395 20:04:23: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!395 09:22:27: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 396 396 397 397 ----------------------------------- … … 404 404 Line: 768 405 405 Stack unwinding: <<beginning of stack>> 406 20:04:23: An exception has been thrown!406 09:22:27: An exception has been thrown! 407 407 408 408 ----------------------------------- … … 415 415 Line: 768 416 416 Stack unwinding: <<beginning of stack>> 417 20:04:23: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!417 09:22:27: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 418 418 419 419 ----------------------------------- … … 426 426 Line: 768 427 427 Stack unwinding: <<beginning of stack>> 428 20:04:23: An exception has been thrown!429 430 ----------------------------------- 431 Details: 432 ----------------------------------- 433 Error #: 7 434 Function: GpuProgramParameters::getParamIndex 435 Description: Cannot find a parameter named worldViewProj. 436 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 437 Line: 768 438 Stack unwinding: <<beginning of stack>> 439 20:04:23: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!440 441 ----------------------------------- 442 Details: 443 ----------------------------------- 444 Error #: 7 445 Function: GpuProgramParameters::getParamIndex 446 Description: Cannot find a parameter named worldViewProj. 447 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 448 Line: 768 449 Stack unwinding: <<beginning of stack>> 450 20:04:23: Parsing script GlassHead.material451 20:04:23: An exception has been thrown!428 09:22:27: An exception has been thrown! 429 430 ----------------------------------- 431 Details: 432 ----------------------------------- 433 Error #: 7 434 Function: GpuProgramParameters::getParamIndex 435 Description: Cannot find a parameter named worldViewProj. 436 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 437 Line: 768 438 Stack unwinding: <<beginning of stack>> 439 09:22:27: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 440 441 ----------------------------------- 442 Details: 443 ----------------------------------- 444 Error #: 7 445 Function: GpuProgramParameters::getParamIndex 446 Description: Cannot find a parameter named worldViewProj. 447 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 448 Line: 768 449 Stack unwinding: <<beginning of stack>> 450 09:22:27: Parsing script GlassHead.material 451 09:22:27: An exception has been thrown! 452 452 453 453 ----------------------------------- … … 460 460 Line: 768 461 461 Stack unwinding: <<beginning of stack>> 462 20:04:23: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!462 09:22:27: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 463 463 464 464 ----------------------------------- … … 471 471 Line: 768 472 472 Stack unwinding: <<beginning of stack>> 473 20:04:23: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.474 20:04:23: An exception has been thrown!475 476 ----------------------------------- 477 Details: 478 ----------------------------------- 479 Error #: 7 480 Function: GpuProgramParameters::getParamIndex 481 Description: Cannot find a parameter named worldViewProj. 482 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 483 Line: 768 484 Stack unwinding: <<beginning of stack>> 485 20:04:23: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!486 487 ----------------------------------- 488 Details: 489 ----------------------------------- 490 Error #: 7 491 Function: GpuProgramParameters::getParamIndex 492 Description: Cannot find a parameter named worldViewProj. 493 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 494 Line: 768 495 Stack unwinding: <<beginning of stack>> 496 20:04:23: An exception has been thrown!473 09:22:27: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 474 09:22:27: An exception has been thrown! 475 476 ----------------------------------- 477 Details: 478 ----------------------------------- 479 Error #: 7 480 Function: GpuProgramParameters::getParamIndex 481 Description: Cannot find a parameter named worldViewProj. 482 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 483 Line: 768 484 Stack unwinding: <<beginning of stack>> 485 09:22:27: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 486 487 ----------------------------------- 488 Details: 489 ----------------------------------- 490 Error #: 7 491 Function: GpuProgramParameters::getParamIndex 492 Description: Cannot find a parameter named worldViewProj. 493 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 494 Line: 768 495 Stack unwinding: <<beginning of stack>> 496 09:22:27: An exception has been thrown! 497 497 498 498 ----------------------------------- … … 505 505 Line: 768 506 506 Stack unwinding: <<beginning of stack>> 507 20:04:23: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!507 09:22:27: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 508 508 509 509 ----------------------------------- … … 516 516 Line: 768 517 517 Stack unwinding: <<beginning of stack>> 518 20:04:24: Parsing script Glow.material 519 20:04:24: An exception has been thrown! 518 09:22:27: An exception has been thrown! 519 520 ----------------------------------- 521 Details: 522 ----------------------------------- 523 Error #: 7 524 Function: GpuProgramParameters::getParamIndex 525 Description: Cannot find a parameter named resolution. 526 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 527 Line: 768 528 Stack unwinding: <<beginning of stack>> 529 09:22:27: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 530 531 ----------------------------------- 532 Details: 533 ----------------------------------- 534 Error #: 7 535 Function: GpuProgramParameters::getParamIndex 536 Description: Cannot find a parameter named resolution. 537 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 538 Line: 768 539 Stack unwinding: <<beginning of stack>> 540 09:22:28: Parsing script Glow.material 541 09:22:28: An exception has been thrown! 520 542 521 543 ----------------------------------- … … 528 550 Line: 768 529 551 Stack unwinding: <<beginning of stack>> 530 20:04:24: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown!552 09:22:28: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 531 553 532 554 ----------------------------------- … … 539 561 Line: 768 540 562 Stack unwinding: <<beginning of stack>> 541 20:04:24: Parsing script hangar.material 542 20:04:24: Parsing script kupola.material 543 20:04:24: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 544 20:04:24: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 545 20:04:24: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 546 20:04:24: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 547 20:04:24: Parsing script Ogre.material 548 20:04:24: Parsing script Particles.material 549 20:04:24: An exception has been thrown! 550 551 ----------------------------------- 552 Details: 553 ----------------------------------- 554 Error #: 7 555 Function: GpuProgramParameters::getParamIndex 556 Description: Cannot find a parameter named worldViewProj. 557 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 558 Line: 768 559 Stack unwinding: <<beginning of stack>> 560 20:04:24: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 561 562 ----------------------------------- 563 Details: 564 ----------------------------------- 565 Error #: 7 566 Function: GpuProgramParameters::getParamIndex 567 Description: Cannot find a parameter named worldViewProj. 568 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 569 Line: 768 570 Stack unwinding: <<beginning of stack>> 571 20:04:24: An exception has been thrown! 572 573 ----------------------------------- 574 Details: 575 ----------------------------------- 576 Error #: 7 577 Function: GpuProgramParameters::getParamIndex 578 Description: Cannot find a parameter named worldViewProj. 579 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 580 Line: 768 581 Stack unwinding: <<beginning of stack>> 582 20:04:24: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 583 584 ----------------------------------- 585 Details: 586 ----------------------------------- 587 Error #: 7 588 Function: GpuProgramParameters::getParamIndex 589 Description: Cannot find a parameter named worldViewProj. 590 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 591 Line: 768 592 Stack unwinding: <<beginning of stack>> 593 20:04:24: Parsing script RaytraceDemo.material 594 20:04:24: Parsing script stairs.material 595 20:04:24: Parsing script X3D.material 596 20:04:24: Parsing script GameTools_Glow.compositor 597 20:04:24: Parsing script GameTools_ToneMap.compositor 598 20:04:24: Parsing script sample.fontdef 599 20:04:24: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 600 20:04:24: Parsing script GameTools.particle 601 20:04:24: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 602 20:04:24: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 603 20:04:24: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 604 20:04:24: Parsing script Compositor.overlay 605 20:04:24: Parsing script DP3.overlay 606 20:04:24: Parsing script Example-CubeMapping.overlay 607 20:04:24: Parsing script Example-DynTex.overlay 608 20:04:24: Parsing script Example-Water.overlay 609 20:04:24: Parsing script FullScreen.overlay 610 20:04:24: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 611 20:04:24: Parsing script Shadows.overlay 612 20:04:24: Finished parsing scripts for resource group General 613 20:04:24: Parsing scripts for resource group Internal 614 20:04:24: Finished parsing scripts for resource group Internal 615 20:04:24: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 616 20:04:24: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 617 20:04:24: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 618 20:04:25: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 619 20:04:25: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 620 20:04:25: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 621 20:04:25: Mesh: Loading sphere.mesh. 622 20:04:25: An exception has been thrown! 623 624 ----------------------------------- 625 Details: 626 ----------------------------------- 627 Error #: 8 628 Function: ResourceGroupManager::openResource 629 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group.. 630 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 631 Line: 583 632 Stack unwinding: <<beginning of stack>> 633 20:04:25: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 634 635 ----------------------------------- 636 Details: 637 ----------------------------------- 638 Error #: 8 639 Function: ResourceGroupManager::openResource 640 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group.. 641 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 642 Line: 583 643 Stack unwinding: <<beginning of stack>> 644 20:04:25: An exception has been thrown! 645 646 ----------------------------------- 647 Details: 648 ----------------------------------- 649 Error #: 8 650 Function: ResourceGroupManager::openResource 651 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group.. 652 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 653 Line: 583 654 Stack unwinding: <<beginning of stack>> 655 20:04:25: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 656 657 ----------------------------------- 658 Details: 659 ----------------------------------- 660 Error #: 8 661 Function: ResourceGroupManager::openResource 662 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group.. 663 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 664 Line: 583 665 Stack unwinding: <<beginning of stack>> 666 20:04:25: An exception has been thrown! 667 668 ----------------------------------- 669 Details: 670 ----------------------------------- 671 Error #: 8 672 Function: ResourceGroupManager::openResource 673 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group.. 674 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 675 Line: 583 676 Stack unwinding: <<beginning of stack>> 677 20:04:25: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 678 679 ----------------------------------- 680 Details: 681 ----------------------------------- 682 Error #: 8 683 Function: ResourceGroupManager::openResource 684 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group.. 685 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 686 Line: 583 687 Stack unwinding: <<beginning of stack>> 688 20:04:25: An exception has been thrown! 689 690 ----------------------------------- 691 Details: 692 ----------------------------------- 693 Error #: 8 694 Function: ResourceGroupManager::openResource 695 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group.. 696 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 697 Line: 583 698 Stack unwinding: <<beginning of stack>> 699 20:04:25: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 700 701 ----------------------------------- 702 Details: 703 ----------------------------------- 704 Error #: 8 705 Function: ResourceGroupManager::openResource 706 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group.. 707 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 708 Line: 583 709 Stack unwinding: <<beginning of stack>> 710 20:04:25: Creating viewport on target 'rtt/27747296', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 711 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 712 20:04:25: Creating viewport on target 'rtt/27747840', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 713 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 714 20:04:25: Creating viewport on target 'rtt/27748704', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 715 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 716 20:04:25: Creating viewport on target 'rtt/27748768', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 717 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 718 20:04:25: Creating viewport on target 'rtt/27748832', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 719 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 720 20:04:25: Creating viewport on target 'rtt/27748896', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 721 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 722 20:04:25: WARNING: Texture instance 'sphere_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. 723 20:04:25: Creating viewport on target 'rtt/27749632', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 724 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 725 20:04:25: Creating viewport on target 'rtt/27749696', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 726 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 727 20:04:25: Creating viewport on target 'rtt/27749760', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 728 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 729 20:04:25: Creating viewport on target 'rtt/27749824', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 730 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 731 20:04:25: Creating viewport on target 'rtt/27749888', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 732 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 733 20:04:25: Creating viewport on target 'rtt/27749952', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 734 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 735 20:04:25: WARNING: Texture instance 'sphere_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. 736 20:04:25: Creating viewport on target 'rtt/2297344', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 737 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 738 20:04:25: Creating viewport on target 'rtt/2297408', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 739 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 740 20:04:25: Creating viewport on target 'rtt/2297472', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 741 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 742 20:04:25: Creating viewport on target 'rtt/2297536', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 743 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 744 20:04:25: Creating viewport on target 'rtt/2297600', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 745 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 746 20:04:25: Creating viewport on target 'rtt/2297664', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 747 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 748 20:04:25: Creating viewport on target 'rtt/2298080', rendering from camera 'sphere_SE_0_PHOTONMAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 749 20:04:25: Viewport for camera 'sphere_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 64 H: 64 750 20:04:25: sphere_SE_0_CAUSTICCUBEMAP map: sphere_SE_0_PHOTONMAP material: GameTools/CauTrisphere_SE_0_clone 751 20:04:25: Win32Input8: DirectInput Activation Starts 752 20:04:25: Win32Input8: Establishing keyboard input. 753 20:04:25: Win32Input8: Keyboard input established. 754 20:04:25: Win32Input8: Initializing mouse input in immediate mode. 755 20:04:25: Win32Input8: Mouse input in immediate mode initialized. 756 20:04:25: Win32Input8: DirectInput OK. 757 20:04:25: WARNING: Mesh instance 'FullScreenGrid' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 758 20:04:25: WARNING: Texture instance 'sphere_SE_0_PHOTONMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 759 20:04:25: WARNING: Texture instance 'sphere_SE_0_CAUSTICCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 760 20:04:47: Unregistering ResourceManager for type BspLevel 761 20:04:47: Render Target 'rtt/2298080' Average FPS: 65.6686 Best FPS: 78.7637 Worst FPS: 41.5842 762 20:04:47: Render Target 'rtt/2297344' Average FPS: 11.0697 Best FPS: 12.9482 Worst FPS: 7.75946 763 20:04:47: Render Target 'rtt/2297408' Average FPS: 11.0651 Best FPS: 12.9096 Worst FPS: 7.62631 764 20:04:47: Render Target 'rtt/2297472' Average FPS: 11.0575 Best FPS: 12.9353 Worst FPS: 7.50469 765 20:04:47: Render Target 'rtt/2297536' Average FPS: 11.055 Best FPS: 12.9482 Worst FPS: 7.39372 766 20:04:47: Render Target 'rtt/2297600' Average FPS: 11.047 Best FPS: 12.9482 Worst FPS: 7.28597 767 20:04:47: Render Target 'rtt/2297664' Average FPS: 11.0789 Best FPS: 12.9225 Worst FPS: 6.89655 768 20:04:47: Render Target 'rtt/27749632' Average FPS: 0 Best FPS: 0 Worst FPS: 999 769 20:04:47: Render Target 'rtt/27749696' Average FPS: 0 Best FPS: 0 Worst FPS: 999 770 20:04:47: Render Target 'rtt/27749760' Average FPS: 0 Best FPS: 0 Worst FPS: 999 771 20:04:47: Render Target 'rtt/27749824' Average FPS: 0 Best FPS: 0 Worst FPS: 999 772 20:04:47: Render Target 'rtt/27749888' Average FPS: 0 Best FPS: 0 Worst FPS: 999 773 20:04:47: Render Target 'rtt/27749952' Average FPS: 0 Best FPS: 0 Worst FPS: 999 774 20:04:47: Render Target 'rtt/27747296' Average FPS: 0 Best FPS: 0 Worst FPS: 999 775 20:04:47: Render Target 'rtt/27747840' Average FPS: 0 Best FPS: 0 Worst FPS: 999 776 20:04:47: Render Target 'rtt/27748704' Average FPS: 0 Best FPS: 0 Worst FPS: 999 777 20:04:47: Render Target 'rtt/27748768' Average FPS: 0 Best FPS: 0 Worst FPS: 999 778 20:04:47: Render Target 'rtt/27748832' Average FPS: 0 Best FPS: 0 Worst FPS: 999 779 20:04:47: Render Target 'rtt/27748896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 780 20:04:47: *-*-* OGRE Shutdown 781 20:04:47: Unregistering ResourceManager for type Compositor 782 20:04:47: Unregistering ResourceManager for type Font 783 20:04:47: Unregistering ResourceManager for type Skeleton 784 20:04:47: Unregistering ResourceManager for type Mesh 785 20:04:47: Unregistering ResourceManager for type HighLevelGpuProgram 786 20:04:47: Unloading library .\Plugin_CgProgramManager 787 20:04:47: Unloading library .\Plugin_OctreeSceneManager 788 20:04:47: Unloading library .\Plugin_BSPSceneManager 789 20:04:47: Unloading library .\Plugin_ParticleFX 790 20:04:47: Render Target 'OGRE Render Window' Average FPS: 65.5915 Best FPS: 78.7637 Worst FPS: 41.958 791 20:04:47: D3D9 : Shutting down cleanly. 792 20:04:47: Unregistering ResourceManager for type Texture 793 20:04:47: Unregistering ResourceManager for type GpuProgram 794 20:04:47: D3D9 : Direct3D9 Rendering Subsystem destroyed. 795 20:04:47: Unloading library .\RenderSystem_Direct3D9 796 20:04:47: Unregistering ResourceManager for type Material 797 20:04:47: Unloading library OgrePlatform_d.dll 563 09:22:28: Parsing script hangar.material 564 09:22:28: Parsing script kupola.material 565 09:22:28: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 566 09:22:28: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 567 09:22:28: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 568 09:22:28: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 569 09:22:28: Parsing script Ogre.material 570 09:22:28: Parsing script Particles.material 571 09:22:28: An exception has been thrown! 572 573 ----------------------------------- 574 Details: 575 ----------------------------------- 576 Error #: 7 577 Function: GpuProgramParameters::getParamIndex 578 Description: Cannot find a parameter named worldViewProj. 579 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 580 Line: 768 581 Stack unwinding: <<beginning of stack>> 582 09:22:28: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 583 584 ----------------------------------- 585 Details: 586 ----------------------------------- 587 Error #: 7 588 Function: GpuProgramParameters::getParamIndex 589 Description: Cannot find a parameter named worldViewProj. 590 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 591 Line: 768 592 Stack unwinding: <<beginning of stack>> 593 09:22:28: An exception has been thrown! 594 595 ----------------------------------- 596 Details: 597 ----------------------------------- 598 Error #: 7 599 Function: GpuProgramParameters::getParamIndex 600 Description: Cannot find a parameter named worldViewProj. 601 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 602 Line: 768 603 Stack unwinding: <<beginning of stack>> 604 09:22:28: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 605 606 ----------------------------------- 607 Details: 608 ----------------------------------- 609 Error #: 7 610 Function: GpuProgramParameters::getParamIndex 611 Description: Cannot find a parameter named worldViewProj. 612 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 613 Line: 768 614 Stack unwinding: <<beginning of stack>> 615 09:22:28: Parsing script RaytraceDemo.material 616 09:22:28: Parsing script stairs.material 617 09:22:28: Parsing script X3D.material 618 09:22:28: Parsing script GameTools_Glow.compositor 619 09:22:29: Parsing script GameTools_ToneMap.compositor 620 09:22:29: Parsing script sample.fontdef 621 09:22:29: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 622 09:22:29: Parsing script GameTools.particle 623 09:22:29: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 624 09:22:29: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 625 09:22:29: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 626 09:22:29: Parsing script Compositor.overlay 627 09:22:29: Parsing script DP3.overlay 628 09:22:29: Parsing script Example-CubeMapping.overlay 629 09:22:29: Parsing script Example-DynTex.overlay 630 09:22:29: Parsing script Example-Water.overlay 631 09:22:29: Parsing script FullScreen.overlay 632 09:22:29: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 633 09:22:29: Parsing script Shadows.overlay 634 09:22:29: Finished parsing scripts for resource group General 635 09:22:29: Parsing scripts for resource group Internal 636 09:22:29: Finished parsing scripts for resource group Internal 637 09:22:29: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 638 09:22:29: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 639 09:22:29: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 640 09:22:29: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 641 09:22:29: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 642 09:22:29: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 643 09:22:29: Win32Input8: DirectInput Activation Starts 644 09:22:29: Win32Input8: Establishing keyboard input. 645 09:22:29: Win32Input8: Keyboard input established. 646 09:22:29: Win32Input8: Initializing mouse input in immediate mode. 647 09:22:29: Win32Input8: Mouse input in immediate mode initialized. 648 09:22:29: Win32Input8: DirectInput OK. -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log
r1474 r1487 1 1 ---------------------------------------------------------------------------------------------------------------------------------- 2 | Memory leak report for: 09/2 1/2006 20:04:47|2 | Memory leak report for: 09/26/2006 09:14:54 | 3 3 ---------------------------------------------------------------------------------------------------------------------------------- 4 4 5 5 6 236memory leaks found:6 341 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 019839 0x00C9DC80 0x0000000C 0x00C9DC70 0x0000002C 0x00000000 new N N ??(0) ?? 12 019872 0x00CD5B98 0x00000030 0x00CD5B88 0x00000050 0x00000000 new N N ??(0) ?? 13 019874 0x00CD5C18 0x0000004C 0x00CD5C08 0x0000006C 0x00000000 new N N ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 14 019875 0x00CD5CB0 0x00000030 0x00CD5CA0 0x00000050 0x00000000 new N N ??(0) ?? 15 019876 0x00CD5D30 0x00000030 0x00CD5D20 0x00000050 0x00000000 new N N ??(0) ?? 16 019877 0x00CD5DB0 0x00000030 0x00CD5DA0 0x00000050 0x00000000 new N N ??(0) ?? 17 019878 0x00CD5E30 0x00000030 0x00CD5E20 0x00000050 0x00000000 new N N ??(0) ?? 18 019879 0x00CD5EB0 0x00000030 0x00CD5EA0 0x00000050 0x00000000 new N N ??(0) ?? 19 019880 0x00CD5F30 0x00000030 0x00CD5F20 0x00000050 0x00000000 new N N ??(0) ?? 20 019881 0x00CD5FB0 0x00000030 0x00CD5FA0 0x00000050 0x00000000 new N N ??(0) ?? 21 019882 0x00CD6030 0x00000030 0x00CD6020 0x00000050 0x00000000 new N N ??(0) ?? 22 019883 0x00CD60B0 0x00000030 0x00CD60A0 0x00000050 0x00000000 new N N ??(0) ?? 23 019884 0x00CD6130 0x0000000C 0x00CD6120 0x0000002C 0x00000000 new N N ??(0) ?? 24 019885 0x00CD6188 0x0000007C 0x00CD6178 0x0000009C 0x00000000 new N N ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 25 019886 0x00CD6250 0x00000030 0x00CD6240 0x00000050 0x00000000 new N N ??(0) ?? 26 019887 0x00CD62D0 0x00000030 0x00CD62C0 0x00000050 0x00000000 new N N ??(0) ?? 27 019888 0x00CD6350 0x00000030 0x00CD6340 0x00000050 0x00000000 new N N ??(0) ?? 28 019889 0x00CD63D0 0x00000030 0x00CD63C0 0x00000050 0x00000000 new N N ??(0) ?? 29 019890 0x00CD6450 0x00000030 0x00CD6440 0x00000050 0x00000000 new N N ??(0) ?? 30 019865 0x00CD6680 0x00000030 0x00CD6670 0x00000050 0x00000000 new N N ??(0) ?? 31 019866 0x00CD6700 0x00000030 0x00CD66F0 0x00000050 0x00000000 new N N ??(0) ?? 32 019867 0x00CD6780 0x00000030 0x00CD6770 0x00000050 0x00000000 new N N ??(0) ?? 33 019868 0x00CD6800 0x00000030 0x00CD67F0 0x00000050 0x00000000 new N N ??(0) ?? 34 019869 0x00CD6880 0x00000030 0x00CD6870 0x00000050 0x00000000 new N N ??(0) ?? 35 019870 0x00CD6900 0x00000030 0x00CD68F0 0x00000050 0x00000000 new N N ??(0) ?? 36 019871 0x00CD6980 0x00000030 0x00CD6970 0x00000050 0x00000000 new N N ??(0) ?? 37 019838 0x00CD6AD0 0x00000140 0x00CD6AC0 0x00000160 0x00000000 new N N ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 38 019854 0x00CD6C60 0x00000048 0x00CD6C50 0x00000068 0x00000000 new N N ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 39 019855 0x00CD6CF8 0x00000030 0x00CD6CE8 0x00000050 0x00000000 new N N ??(0) ?? 40 019858 0x00CD6E48 0x00000030 0x00CD6E38 0x00000050 0x00000000 new N N ??(0) ?? 41 019859 0x00CD6EC8 0x00000030 0x00CD6EB8 0x00000050 0x00000000 new N N ??(0) ?? 42 019860 0x00CD6F48 0x00000030 0x00CD6F38 0x00000050 0x00000000 new N N ??(0) ?? 43 019861 0x00CD6FC8 0x00000030 0x00CD6FB8 0x00000050 0x00000000 new N N ??(0) ?? 44 019862 0x00CD7048 0x00000030 0x00CD7038 0x00000050 0x00000000 new N N ??(0) ?? 45 019864 0x00CD70C8 0x00000048 0x00CD70B8 0x00000068 0x00000000 new N N ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 46 019873 0x00CD7160 0x0000000C 0x00CD7150 0x0000002C 0x00000000 new N N ??(0) ?? 47 019843 0x00CD7278 0x00000018 0x00CD7268 0x00000038 0x00000000 new N N ??(0) ?? 48 019863 0x00CD7600 0x0000000C 0x00CD75F0 0x0000002C 0x00000000 new N N ??(0) ?? 49 019845 0x00CD7770 0x00000018 0x00CD7760 0x00000038 0x00000000 new N N ??(0) ?? 50 019847 0x00CD77D8 0x00000018 0x00CD77C8 0x00000038 0x00000000 new N N ??(0) ?? 51 019844 0x00CD7F88 0x00000030 0x00CD7F78 0x00000050 0x00000000 new N N ??(0) ?? 52 019841 0x00CF0E58 0x0000000C 0x00CF0E48 0x0000002C 0x00000000 new N N ??(0) ?? 53 019856 0x00D0B300 0x00000030 0x00D0B2F0 0x00000050 0x00000000 new N N ??(0) ?? 54 019857 0x00D0B380 0x00000030 0x00D0B370 0x00000050 0x00000000 new N N ??(0) ?? 55 006776 0x00D1DDF8 0x00000028 0x00D1DDE8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 56 006618 0x00D1EE50 0x00000048 0x00D1EE40 0x00000068 0x00000000 new N N ??(0) ?? 57 006612 0x00D1F4E8 0x00000028 0x00D1F4D8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 58 006613 0x00D1F560 0x00000048 0x00D1F550 0x00000068 0x00000000 new N N ??(0) ?? 59 006622 0x00D1F698 0x00000048 0x00D1F688 0x00000068 0x00000000 new N N ??(0) ?? 60 006626 0x00D1F730 0x00000048 0x00D1F720 0x00000068 0x00000000 new N N ??(0) ?? 61 006630 0x00D1F7C8 0x00000048 0x00D1F7B8 0x00000068 0x00000000 new N N ??(0) ?? 62 006777 0x00D21320 0x00000048 0x00D21310 0x00000068 0x00000000 new N N ??(0) ?? 63 006782 0x00D213B8 0x00000048 0x00D213A8 0x00000068 0x00000000 new N N ??(0) ?? 64 006786 0x00D21450 0x00000048 0x00D21440 0x00000068 0x00000000 new N N ??(0) ?? 65 006790 0x00D214E8 0x00000048 0x00D214D8 0x00000068 0x00000000 new N N ??(0) ?? 66 006795 0x00D21580 0x00000048 0x00D21570 0x00000068 0x00000000 new N N ??(0) ?? 67 006800 0x00D216F8 0x00000048 0x00D216E8 0x00000068 0x00000000 new N N ??(0) ?? 68 006804 0x00D21790 0x00000048 0x00D21780 0x00000068 0x00000000 new N N ??(0) ?? 69 006808 0x00D21828 0x00000048 0x00D21818 0x00000068 0x00000000 new N N ??(0) ?? 70 006956 0x00D22628 0x00000028 0x00D22618 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 71 006957 0x00D226A0 0x00000048 0x00D22690 0x00000068 0x00000000 new N N ??(0) ?? 72 006962 0x00D22788 0x00000048 0x00D22778 0x00000068 0x00000000 new N N ??(0) ?? 73 006966 0x00D22820 0x00000048 0x00D22810 0x00000068 0x00000000 new N N ??(0) ?? 74 006970 0x00D228B8 0x00000048 0x00D228A8 0x00000068 0x00000000 new N N ??(0) ?? 75 006974 0x00D22950 0x00000028 0x00D22940 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 76 006975 0x00D229C8 0x00000048 0x00D229B8 0x00000068 0x00000000 new N N ??(0) ?? 77 006980 0x00D22AB8 0x00000048 0x00D22AA8 0x00000068 0x00000000 new N N ??(0) ?? 78 006984 0x00D22B50 0x00000048 0x00D22B40 0x00000068 0x00000000 new N N ??(0) ?? 79 006988 0x00D22BE8 0x00000048 0x00D22BD8 0x00000068 0x00000000 new N N ??(0) ?? 80 007128 0x00D22FA0 0x00000028 0x00D22F90 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 81 007146 0x00D23E88 0x00000028 0x00D23E78 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 82 007129 0x00D24760 0x00000048 0x00D24750 0x00000068 0x00000000 new N N ??(0) ?? 83 007134 0x00D247F8 0x00000048 0x00D247E8 0x00000068 0x00000000 new N N ??(0) ?? 84 007138 0x00D24890 0x00000048 0x00D24880 0x00000068 0x00000000 new N N ??(0) ?? 85 007142 0x00D24928 0x00000048 0x00D24918 0x00000068 0x00000000 new N N ??(0) ?? 86 007147 0x00D249C0 0x00000048 0x00D249B0 0x00000068 0x00000000 new N N ??(0) ?? 87 007152 0x00D24AB0 0x00000048 0x00D24AA0 0x00000068 0x00000000 new N N ??(0) ?? 88 007156 0x00D24B48 0x00000048 0x00D24B38 0x00000068 0x00000000 new N N ??(0) ?? 89 007160 0x00D24BE0 0x00000048 0x00D24BD0 0x00000068 0x00000000 new N N ??(0) ?? 90 019840 0x00D27990 0x00000018 0x00D27980 0x00000038 0x00000000 new N N ??(0) ?? 91 019850 0x00D28120 0x00000018 0x00D28110 0x00000038 0x00000000 new N N ??(0) ?? 92 019851 0x00D28188 0x00000018 0x00D28178 0x00000038 0x00000000 new N N ??(0) ?? 93 019919 0x00D28EA0 0x000000B4 0x00D28E90 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 94 019920 0x00D28FA0 0x00000030 0x00D28F90 0x00000050 0x00000000 new N N ??(0) ?? 95 019921 0x00D29020 0x00000030 0x00D29010 0x00000050 0x00000000 new N N ??(0) ?? 96 019922 0x00D290A0 0x00000030 0x00D29090 0x00000050 0x00000000 new N N ??(0) ?? 97 019923 0x00D29120 0x00000030 0x00D29110 0x00000050 0x00000000 new N N ??(0) ?? 98 019924 0x00D291A0 0x00000030 0x00D29190 0x00000050 0x00000000 new N N ??(0) ?? 99 019925 0x00D29220 0x00000030 0x00D29210 0x00000050 0x00000000 new N N ??(0) ?? 100 019926 0x00D292A0 0x00000030 0x00D29290 0x00000050 0x00000000 new N N ??(0) ?? 101 019927 0x00D29320 0x00000030 0x00D29310 0x00000050 0x00000000 new N N ??(0) ?? 102 019928 0x00D293A0 0x00000030 0x00D29390 0x00000050 0x00000000 new N N ??(0) ?? 103 019929 0x00D29420 0x00000030 0x00D29410 0x00000050 0x00000000 new N N ??(0) ?? 104 019930 0x00D294A0 0x00000030 0x00D29490 0x00000050 0x00000000 new N N ??(0) ?? 105 019932 0x00D29520 0x00000080 0x00D29510 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 106 019933 0x00D295F0 0x00000030 0x00D295E0 0x00000050 0x00000000 new N N ??(0) ?? 107 019934 0x00D29670 0x00000030 0x00D29660 0x00000050 0x00000000 new N N ??(0) ?? 108 019935 0x00D296F0 0x00000030 0x00D296E0 0x00000050 0x00000000 new N N ??(0) ?? 109 019936 0x00D29770 0x00000030 0x00D29760 0x00000050 0x00000000 new N N ??(0) ?? 110 019937 0x00D297F0 0x00000030 0x00D297E0 0x00000050 0x00000000 new N N ??(0) ?? 111 019938 0x00D29870 0x00000030 0x00D29860 0x00000050 0x00000000 new N N ??(0) ?? 112 019939 0x00D29940 0x00000030 0x00D29930 0x00000050 0x00000000 new N N ??(0) ?? 113 019940 0x00D29A10 0x00000030 0x00D29A00 0x00000050 0x00000000 new N N ??(0) ?? 114 019941 0x00D29A90 0x00000030 0x00D29A80 0x00000050 0x00000000 new N N ??(0) ?? 115 019942 0x00D29B10 0x00000030 0x00D29B00 0x00000050 0x00000000 new N N ??(0) ?? 116 019943 0x00D29B90 0x00000030 0x00D29B80 0x00000050 0x00000000 new N N ??(0) ?? 117 019944 0x00D29C60 0x0000000C 0x00D29C50 0x0000002C 0x00000000 new N N ??(0) ?? 118 006794 0x00D2FFB0 0x00000028 0x00D2FFA0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 119 007300 0x00D3E598 0x00000028 0x00D3E588 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 120 007301 0x00D3E610 0x00000048 0x00D3E600 0x00000068 0x00000000 new N N ??(0) ?? 121 007306 0x00D3E6F8 0x00000048 0x00D3E6E8 0x00000068 0x00000000 new N N ??(0) ?? 122 007310 0x00D3E790 0x00000048 0x00D3E780 0x00000068 0x00000000 new N N ??(0) ?? 123 007314 0x00D3E828 0x00000048 0x00D3E818 0x00000068 0x00000000 new N N ??(0) ?? 124 007318 0x00D3E8C0 0x00000028 0x00D3E8B0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 125 007319 0x00D3E938 0x00000048 0x00D3E928 0x00000068 0x00000000 new N N ??(0) ?? 126 007324 0x00D3EA28 0x00000048 0x00D3EA18 0x00000068 0x00000000 new N N ??(0) ?? 127 007328 0x00D3EAC0 0x00000048 0x00D3EAB0 0x00000068 0x00000000 new N N ??(0) ?? 128 007332 0x00D3EB58 0x00000048 0x00D3EB48 0x00000068 0x00000000 new N N ??(0) ?? 129 007730 0x00D43860 0x00000048 0x00D43850 0x00000068 0x00000000 new N N ??(0) ?? 130 007724 0x00D43EA8 0x00000028 0x00D43E98 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 131 007725 0x00D43F20 0x00000048 0x00D43F10 0x00000068 0x00000000 new N N ??(0) ?? 132 008567 0x00D62CC0 0x00000028 0x00D62CB0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 133 008568 0x00D62DD0 0x00000048 0x00D62DC0 0x00000068 0x00000000 new N N ??(0) ?? 134 008573 0x00D62EB8 0x00000048 0x00D62EA8 0x00000068 0x00000000 new N N ??(0) ?? 135 008577 0x00D62FA0 0x00000048 0x00D62F90 0x00000068 0x00000000 new N N ??(0) ?? 136 008581 0x00D63038 0x00000048 0x00D63028 0x00000068 0x00000000 new N N ??(0) ?? 137 008753 0x00D64778 0x00000048 0x00D64768 0x00000068 0x00000000 new N N ??(0) ?? 138 008757 0x00D64860 0x00000048 0x00D64850 0x00000068 0x00000000 new N N ??(0) ?? 139 008761 0x00D648F8 0x00000048 0x00D648E8 0x00000068 0x00000000 new N N ??(0) ?? 140 008765 0x00D64990 0x00000048 0x00D64980 0x00000068 0x00000000 new N N ??(0) ?? 141 008769 0x00D64A78 0x00000028 0x00D64A68 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 142 008770 0x00D64AF0 0x00000048 0x00D64AE0 0x00000068 0x00000000 new N N ??(0) ?? 143 008775 0x00D64BE0 0x00000048 0x00D64BD0 0x00000068 0x00000000 new N N ??(0) ?? 144 008779 0x00D64C78 0x00000028 0x00D64C68 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 145 008780 0x00D64CF0 0x00000048 0x00D64CE0 0x00000068 0x00000000 new N N ??(0) ?? 146 008785 0x00D64DE0 0x00000048 0x00D64DD0 0x00000068 0x00000000 new N N ??(0) ?? 147 008789 0x00D64E78 0x00000048 0x00D64E68 0x00000068 0x00000000 new N N ??(0) ?? 148 008747 0x00D65AC0 0x00000028 0x00D65AB0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 149 008748 0x00D65B90 0x00000048 0x00D65B80 0x00000068 0x00000000 new N N ??(0) ?? 150 009592 0x01BE26A8 0x00000028 0x01BE2698 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 151 009620 0x01BE2720 0x00000028 0x01BE2710 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 152 009593 0x01BF1480 0x00000048 0x01BF1470 0x00000068 0x00000000 new N N ??(0) ?? 153 009598 0x01BF1518 0x00000048 0x01BF1508 0x00000068 0x00000000 new N N ??(0) ?? 154 009602 0x01BF15B0 0x00000048 0x01BF15A0 0x00000068 0x00000000 new N N ??(0) ?? 155 009606 0x01BF1648 0x00000028 0x01BF1638 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 156 009607 0x01BF16C0 0x00000048 0x01BF16B0 0x00000068 0x00000000 new N N ??(0) ?? 157 009612 0x01BF17B0 0x00000048 0x01BF17A0 0x00000068 0x00000000 new N N ??(0) ?? 158 009616 0x01BF1848 0x00000048 0x01BF1838 0x00000068 0x00000000 new N N ??(0) ?? 159 009621 0x01BF18E0 0x00000048 0x01BF18D0 0x00000068 0x00000000 new N N ??(0) ?? 160 009626 0x01BF19D0 0x00000048 0x01BF19C0 0x00000068 0x00000000 new N N ??(0) ?? 161 009630 0x01BF1B08 0x00000048 0x01BF1AF8 0x00000068 0x00000000 new N N ??(0) ?? 162 009634 0x01BF1BF0 0x00000048 0x01BF1BE0 0x00000068 0x00000000 new N N ??(0) ?? 163 010597 0x01BFBFF8 0x00000048 0x01BFBFE8 0x00000068 0x00000000 new N N ??(0) ?? 164 010752 0x01BFC380 0x00000048 0x01BFC370 0x00000068 0x00000000 new N N ??(0) ?? 165 010522 0x01C14718 0x00000028 0x01C14708 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 166 010523 0x01C14790 0x00000048 0x01C14780 0x00000068 0x00000000 new N N ??(0) ?? 167 010591 0x01C14F28 0x00000028 0x01C14F18 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 168 010592 0x01C14FA0 0x00000048 0x01C14F90 0x00000068 0x00000000 new N N ??(0) ?? 169 010746 0x01C17340 0x00000028 0x01C17330 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 170 010747 0x01C173B8 0x00000048 0x01C173A8 0x00000068 0x00000000 new N N ??(0) ?? 171 011616 0x01C2E280 0x00000028 0x01C2E270 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 172 011617 0x01C2E390 0x00000048 0x01C2E380 0x00000068 0x00000000 new N N ??(0) ?? 173 011622 0x01C2E478 0x00000048 0x01C2E468 0x00000068 0x00000000 new N N ??(0) ?? 174 011626 0x01C2E560 0x00000048 0x01C2E550 0x00000068 0x00000000 new N N ??(0) ?? 175 019842 0x01C85240 0x00000018 0x01C85230 0x00000038 0x00000000 new N N ??(0) ?? 176 019891 0x01C86038 0x00000030 0x01C86028 0x00000050 0x00000000 new N N ??(0) ?? 177 019892 0x01C860B8 0x00000030 0x01C860A8 0x00000050 0x00000000 new N N ??(0) ?? 178 019893 0x01C86138 0x00000030 0x01C86128 0x00000050 0x00000000 new N N ??(0) ?? 179 019894 0x01C861B8 0x00000030 0x01C861A8 0x00000050 0x00000000 new N N ??(0) ?? 180 019895 0x01C86238 0x00000030 0x01C86228 0x00000050 0x00000000 new N N ??(0) ?? 181 019896 0x01C862B8 0x00000030 0x01C862A8 0x00000050 0x00000000 new N N ??(0) ?? 182 019897 0x01C86338 0x00000030 0x01C86328 0x00000050 0x00000000 new N N ??(0) ?? 183 019898 0x01C863B8 0x0000000C 0x01C863A8 0x0000002C 0x00000000 new N N ??(0) ?? 184 019899 0x01C86410 0x00000068 0x01C86400 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 185 019900 0x01C864C8 0x00000030 0x01C864B8 0x00000050 0x00000000 new N N ??(0) ?? 186 019901 0x01C86548 0x00000030 0x01C86538 0x00000050 0x00000000 new N N ??(0) ?? 187 019902 0x01C86618 0x00000030 0x01C86608 0x00000050 0x00000000 new N N ??(0) ?? 188 019903 0x01C866E8 0x00000030 0x01C866D8 0x00000050 0x00000000 new N N ??(0) ?? 189 019904 0x01C867B8 0x0000000C 0x01C867A8 0x0000002C 0x00000000 new N N ??(0) ?? 190 019905 0x01C86810 0x00000068 0x01C86800 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 191 019906 0x01C868C8 0x00000030 0x01C868B8 0x00000050 0x00000000 new N N ??(0) ?? 192 019907 0x01C86948 0x00000030 0x01C86938 0x00000050 0x00000000 new N N ??(0) ?? 193 019908 0x01C86A18 0x00000030 0x01C86A08 0x00000050 0x00000000 new N N ??(0) ?? 194 019909 0x01C86AE8 0x00000030 0x01C86AD8 0x00000050 0x00000000 new N N ??(0) ?? 195 019910 0x01C86BB8 0x0000000C 0x01C86BA8 0x0000002C 0x00000000 new N N ??(0) ?? 196 019911 0x01C86C10 0x00000030 0x01C86C00 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 197 019912 0x01C86C90 0x00000030 0x01C86C80 0x00000050 0x00000000 new N N ??(0) ?? 198 019913 0x01C86D10 0x00000030 0x01C86D00 0x00000050 0x00000000 new N N ??(0) ?? 199 019914 0x01C86D90 0x0000000C 0x01C86D80 0x0000002C 0x00000000 new N N ??(0) ?? 200 019915 0x01C86DE8 0x00000030 0x01C86DD8 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 201 019916 0x01C86E68 0x00000030 0x01C86E58 0x00000050 0x00000000 new N N ??(0) ?? 202 019917 0x01C86EE8 0x00000030 0x01C86ED8 0x00000050 0x00000000 new N N ??(0) ?? 203 019918 0x01C86F68 0x0000000C 0x01C86F58 0x0000002C 0x00000000 new N N ??(0) ?? 204 019931 0x01C86FC0 0x0000000C 0x01C86FB0 0x0000002C 0x00000000 new N N ??(0) ?? 205 019846 0x01C968D8 0x00000008 0x01C968C8 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 206 019852 0x01C96988 0x00000018 0x01C96978 0x00000038 0x00000000 new N N ??(0) ?? 207 019853 0x01C969F0 0x00000018 0x01C969E0 0x00000038 0x00000000 new N N ??(0) ?? 208 019848 0x01C96AE8 0x00000018 0x01C96AD8 0x00000038 0x00000000 new N N ??(0) ?? 209 019849 0x01C96B50 0x00000018 0x01C96B40 0x00000038 0x00000000 new N N ??(0) ?? 210 214662 0x01CA3EC0 0x00000004 0x01CA3EB0 0x00000024 0x00000000 new N N ??(0) ?? 211 020737 0x01CD5CE8 0x000000C0 0x01CD5CD8 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 212 020749 0x01CD6558 0x0000001C 0x01CD6548 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 213 020750 0x01CD65C0 0x000000C4 0x01CD65B0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 214 020751 0x01CD66D0 0x00000018 0x01CD66C0 0x00000038 0x00000000 new N N ??(0) ?? 215 020752 0x01CD6738 0x00000018 0x01CD6728 0x00000038 0x00000000 new N N ??(0) ?? 216 020753 0x01CD67A0 0x0000000C 0x01CD6790 0x0000002C 0x00000000 new N N ??(0) ?? 217 020754 0x01CD67F8 0x00000004 0x01CD67E8 0x00000024 0x00000000 new N N ??(0) ?? 218 020755 0x01CD6848 0x00000018 0x01CD6838 0x00000038 0x00000000 new N N ??(0) ?? 219 020759 0x01CD6950 0x00000084 0x01CD6940 0x000000A4 0x00000000 new N N ogrecausticrecieverrendertechnique.cpp(166) OgreCausticRecieverRenderTechniqueFacto 220 021074 0x01CD6A20 0x0000001C 0x01CD6A10 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 221 021043 0x01CE83A8 0x00000034 0x01CE8398 0x00000054 0x00000000 new N N ??(0) ?? 222 021079 0x01CE8A50 0x00000004 0x01CE8A40 0x00000024 0x00000000 new N N ??(0) ?? 223 021071 0x01CE8B70 0x00000004 0x01CE8B60 0x00000024 0x00000000 new N N ??(0) ?? 224 021072 0x01CE9198 0x000000C0 0x01CE9188 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 225 021075 0x01CE92A8 0x000000C4 0x01CE9298 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 226 021076 0x01CE93B8 0x00000018 0x01CE93A8 0x00000038 0x00000000 new N N ??(0) ?? 227 021077 0x01CE9420 0x00000018 0x01CE9410 0x00000038 0x00000000 new N N ??(0) ?? 228 021078 0x01CE9488 0x0000000C 0x01CE9478 0x0000002C 0x00000000 new N N ??(0) ?? 229 021080 0x01CE94E0 0x00000018 0x01CE94D0 0x00000038 0x00000000 new N N ??(0) ?? 230 021088 0x01CE9548 0x0000004C 0x01CE9538 0x0000006C 0x00000000 new N N ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 231 021089 0x01CE95E0 0x0000008C 0x01CE95D0 0x000000AC 0x00000000 new N N ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 232 021090 0x01CE9758 0x00000030 0x01CE9748 0x00000050 0x00000000 new N N ??(0) ?? 233 021210 0x01CF77D8 0x00000018 0x01CF77C8 0x00000038 0x00000000 new N N ??(0) ?? 234 021218 0x01CF7840 0x0000004C 0x01CF7830 0x0000006C 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 235 021219 0x01CF78D8 0x0000008C 0x01CF78C8 0x000000AC 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 236 021220 0x01CF79B0 0x00000030 0x01CF79A0 0x00000050 0x00000000 new N N ??(0) ?? 237 021532 0x01CFC588 0x0000000C 0x01CFC578 0x0000002C 0x00000000 new N N ??(0) ?? 238 021339 0x01CFDC50 0x00000018 0x01CFDC40 0x00000038 0x00000000 new N N ??(0) ?? 239 021345 0x01CFDCB8 0x00000084 0x01CFDCA8 0x000000A4 0x00000000 new N N ogrecausticcasterrendertechnique.cpp(252) OgreCausticCasterRenderTechniqueFactory 240 021385 0x01CFF2E8 0x000000A8 0x01CFF2D8 0x000000C8 0x00000000 new N N ogrecausticcasterrendertechnique.cpp(102) OgreCausticCasterRenderTechnique::creat 241 021386 0x01CFF4E0 0x00000030 0x01CFF4D0 0x00000050 0x00000000 new N N ??(0) ?? 242 021504 0x01D0D580 0x00000018 0x01D0D570 0x00000038 0x00000000 new N N ??(0) ?? 243 021505 0x01D0D5E8 0x000000A4 0x01D0D5D8 0x000000C4 0x00000000 new N N ogrecausticcasterrendertechnique.cpp(90) OgreCausticCasterRenderTechnique::creat 244 021506 0x01D0D6D8 0x00000030 0x01D0D6C8 0x00000050 0x00000000 new N N ??(0) ?? 245 021530 0x01D0EA60 0x00000018 0x01D0EA50 0x00000038 0x00000000 new N N ??(0) ?? 246 214615 0x01D114C0 0x00000034 0x01D114B0 0x00000054 0x00000000 new N N ??(0) ?? 11 023912 0x00CE7C78 0x00000018 0x00CE7C68 0x00000038 0x00000000 new N N ??(0) ?? 12 023918 0x00CE8C10 0x00000018 0x00CE8C00 0x00000038 0x00000000 new N N ??(0) ?? 13 023890 0x00CF6B38 0x00000018 0x00CF6B28 0x00000038 0x00000000 new N N ??(0) ?? 14 023892 0x00D28B48 0x00000018 0x00D28B38 0x00000038 0x00000000 new N N ??(0) ?? 15 006776 0x00D2B370 0x00000028 0x00D2B360 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 16 006622 0x00D2B6E0 0x00000048 0x00D2B6D0 0x00000068 0x00000000 new N N ??(0) ?? 17 006626 0x00D2B788 0x00000048 0x00D2B778 0x00000068 0x00000000 new N N ??(0) ?? 18 006630 0x00D2B830 0x00000048 0x00D2B820 0x00000068 0x00000000 new N N ??(0) ?? 19 006794 0x00D2CDC0 0x00000028 0x00D2CDB0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 20 006612 0x00D2E390 0x00000028 0x00D2E380 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 21 006618 0x00D2EE08 0x00000048 0x00D2EDF8 0x00000068 0x00000000 new N N ??(0) ?? 22 006613 0x00D2EF00 0x00000048 0x00D2EEF0 0x00000068 0x00000000 new N N ??(0) ?? 23 007128 0x00D2F020 0x00000028 0x00D2F010 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 24 006956 0x00D2F928 0x00000028 0x00D2F918 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 25 006957 0x00D2F9B0 0x00000048 0x00D2F9A0 0x00000068 0x00000000 new N N ??(0) ?? 26 006962 0x00D2FAB8 0x00000048 0x00D2FAA8 0x00000068 0x00000000 new N N ??(0) ?? 27 006966 0x00D2FB60 0x00000048 0x00D2FB50 0x00000068 0x00000000 new N N ??(0) ?? 28 006970 0x00D2FC08 0x00000048 0x00D2FBF8 0x00000068 0x00000000 new N N ??(0) ?? 29 006974 0x00D2FCB0 0x00000028 0x00D2FCA0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 30 006975 0x00D2FD38 0x00000048 0x00D2FD28 0x00000068 0x00000000 new N N ??(0) ?? 31 006980 0x00D2FE48 0x00000048 0x00D2FE38 0x00000068 0x00000000 new N N ??(0) ?? 32 006984 0x00D2FEF0 0x00000048 0x00D2FEE0 0x00000068 0x00000000 new N N ??(0) ?? 33 006988 0x00D2FF98 0x00000048 0x00D2FF88 0x00000068 0x00000000 new N N ??(0) ?? 34 006777 0x00D41670 0x00000048 0x00D41660 0x00000068 0x00000000 new N N ??(0) ?? 35 006782 0x00D41718 0x00000048 0x00D41708 0x00000068 0x00000000 new N N ??(0) ?? 36 006786 0x00D417C0 0x00000048 0x00D417B0 0x00000068 0x00000000 new N N ??(0) ?? 37 006790 0x00D41868 0x00000048 0x00D41858 0x00000068 0x00000000 new N N ??(0) ?? 38 006795 0x00D41910 0x00000048 0x00D41900 0x00000068 0x00000000 new N N ??(0) ?? 39 006800 0x00D419B8 0x00000048 0x00D419A8 0x00000068 0x00000000 new N N ??(0) ?? 40 006804 0x00D41A60 0x00000048 0x00D41A50 0x00000068 0x00000000 new N N ??(0) ?? 41 006808 0x00D41B08 0x00000048 0x00D41AF8 0x00000068 0x00000000 new N N ??(0) ?? 42 007129 0x00D42C38 0x00000048 0x00D42C28 0x00000068 0x00000000 new N N ??(0) ?? 43 007134 0x00D42CE0 0x00000048 0x00D42CD0 0x00000068 0x00000000 new N N ??(0) ?? 44 007138 0x00D42D88 0x00000048 0x00D42D78 0x00000068 0x00000000 new N N ??(0) ?? 45 007142 0x00D42E30 0x00000048 0x00D42E20 0x00000068 0x00000000 new N N ??(0) ?? 46 007146 0x00D42ED8 0x00000028 0x00D42EC8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 47 007147 0x00D42F60 0x00000048 0x00D42F50 0x00000068 0x00000000 new N N ??(0) ?? 48 007152 0x00D43070 0x00000048 0x00D43060 0x00000068 0x00000000 new N N ??(0) ?? 49 007156 0x00D43118 0x00000048 0x00D43108 0x00000068 0x00000000 new N N ??(0) ?? 50 007160 0x00D431C0 0x00000048 0x00D431B0 0x00000068 0x00000000 new N N ??(0) ?? 51 007300 0x00D4B218 0x00000028 0x00D4B208 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 52 007301 0x00D4B2A0 0x00000048 0x00D4B290 0x00000068 0x00000000 new N N ??(0) ?? 53 007306 0x00D4B3A8 0x00000048 0x00D4B398 0x00000068 0x00000000 new N N ??(0) ?? 54 007310 0x00D4B450 0x00000048 0x00D4B440 0x00000068 0x00000000 new N N ??(0) ?? 55 007314 0x00D4B4F8 0x00000048 0x00D4B4E8 0x00000068 0x00000000 new N N ??(0) ?? 56 007318 0x00D4B5A0 0x00000028 0x00D4B590 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 57 007319 0x00D4B628 0x00000048 0x00D4B618 0x00000068 0x00000000 new N N ??(0) ?? 58 007324 0x00D4B738 0x00000048 0x00D4B728 0x00000068 0x00000000 new N N ??(0) ?? 59 007328 0x00D4B7E0 0x00000048 0x00D4B7D0 0x00000068 0x00000000 new N N ??(0) ?? 60 007332 0x00D4B888 0x00000048 0x00D4B878 0x00000068 0x00000000 new N N ??(0) ?? 61 023891 0x00D4D4B0 0x00000018 0x00D4D4A0 0x00000038 0x00000000 new N N ??(0) ?? 62 023899 0x00D4E7E0 0x00000018 0x00D4E7D0 0x00000038 0x00000000 new N N ??(0) ?? 63 023901 0x00D4F6A0 0x00000018 0x00D4F690 0x00000038 0x00000000 new N N ??(0) ?? 64 007730 0x00D50150 0x00000048 0x00D50140 0x00000068 0x00000000 new N N ??(0) ?? 65 007724 0x00D51590 0x00000028 0x00D51580 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 66 007725 0x00D51618 0x00000048 0x00D51608 0x00000068 0x00000000 new N N ??(0) ?? 67 023900 0x00D51918 0x00000018 0x00D51908 0x00000038 0x00000000 new N N ??(0) ?? 68 023902 0x00D5DFB0 0x00000018 0x00D5DFA0 0x00000038 0x00000000 new N N ??(0) ?? 69 023917 0x00D5FF58 0x000000C4 0x00D5FF48 0x000000E4 0x00000000 new N N ogresharedruns.cpp(147) OgreSharedRuns::createInstance 70 023910 0x00D67570 0x00000018 0x00D67560 0x00000038 0x00000000 new N N ??(0) ?? 71 023909 0x00D69B08 0x00000018 0x00D69AF8 0x00000038 0x00000000 new N N ??(0) ?? 72 008567 0x00D6A3E8 0x00000028 0x00D6A3D8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 73 008568 0x00D6A518 0x00000048 0x00D6A508 0x00000068 0x00000000 new N N ??(0) ?? 74 008573 0x00D6A620 0x00000048 0x00D6A610 0x00000068 0x00000000 new N N ??(0) ?? 75 008577 0x00D6A728 0x00000048 0x00D6A718 0x00000068 0x00000000 new N N ??(0) ?? 76 008581 0x00D6A7D0 0x00000048 0x00D6A7C0 0x00000068 0x00000000 new N N ??(0) ?? 77 008747 0x00D6B8C8 0x00000028 0x00D6B8B8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 78 008748 0x00D6C068 0x00000048 0x00D6C058 0x00000068 0x00000000 new N N ??(0) ?? 79 008753 0x00D6CC88 0x00000048 0x00D6CC78 0x00000068 0x00000000 new N N ??(0) ?? 80 008757 0x00D6CD90 0x00000048 0x00D6CD80 0x00000068 0x00000000 new N N ??(0) ?? 81 008761 0x00D6CE38 0x00000048 0x00D6CE28 0x00000068 0x00000000 new N N ??(0) ?? 82 008765 0x00D6CEE0 0x00000048 0x00D6CED0 0x00000068 0x00000000 new N N ??(0) ?? 83 008769 0x00D6CFE8 0x00000028 0x00D6CFD8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 84 008770 0x00D6D070 0x00000048 0x00D6D060 0x00000068 0x00000000 new N N ??(0) ?? 85 008775 0x00D6D180 0x00000048 0x00D6D170 0x00000068 0x00000000 new N N ??(0) ?? 86 008779 0x00D6D228 0x00000028 0x00D6D218 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 87 008780 0x00D6D2B0 0x00000048 0x00D6D2A0 0x00000068 0x00000000 new N N ??(0) ?? 88 008785 0x00D6D3C0 0x00000048 0x00D6D3B0 0x00000068 0x00000000 new N N ??(0) ?? 89 008789 0x00D6D468 0x00000048 0x00D6D458 0x00000068 0x00000000 new N N ??(0) ?? 90 023889 0x00D6EAE0 0x00000018 0x00D6EAD0 0x00000038 0x00000000 new N N ??(0) ?? 91 023911 0x01BECAD8 0x00000018 0x01BECAC8 0x00000038 0x00000000 new N N ??(0) ?? 92 047747 0x01BF2778 0x00000070 0x01BF2768 0x00000090 0x00000000 new N N ??(0) ?? 93 009572 0x01BF3650 0x00000028 0x01BF3640 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 94 009573 0x01BFF018 0x00000048 0x01BFF008 0x00000068 0x00000000 new N N ??(0) ?? 95 009582 0x01BFF0C0 0x00000048 0x01BFF0B0 0x00000068 0x00000000 new N N ??(0) ?? 96 009586 0x01BFF168 0x00000028 0x01BFF158 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 97 009592 0x01BFF1F0 0x00000048 0x01BFF1E0 0x00000068 0x00000000 new N N ??(0) ?? 98 009587 0x01BFF310 0x00000048 0x01BFF300 0x00000068 0x00000000 new N N ??(0) ?? 99 009600 0x01BFF3B8 0x00000028 0x01BFF3A8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 100 009606 0x01BFF440 0x00000048 0x01BFF430 0x00000068 0x00000000 new N N ??(0) ?? 101 009596 0x01BFF4E8 0x00000048 0x01BFF4D8 0x00000068 0x00000000 new N N ??(0) ?? 102 009601 0x01BFF590 0x00000048 0x01BFF580 0x00000068 0x00000000 new N N ??(0) ?? 103 009610 0x01BFF6D0 0x00000048 0x01BFF6C0 0x00000068 0x00000000 new N N ??(0) ?? 104 009614 0x01BFF838 0x00000048 0x01BFF828 0x00000068 0x00000000 new N N ??(0) ?? 105 009618 0x01BFF940 0x00000048 0x01BFF930 0x00000068 0x00000000 new N N ??(0) ?? 106 009622 0x01BFFA48 0x00000048 0x01BFFA38 0x00000068 0x00000000 new N N ??(0) ?? 107 009578 0x01C013E0 0x00000048 0x01C013D0 0x00000068 0x00000000 new N N ??(0) ?? 108 010740 0x01C035A0 0x00000048 0x01C03590 0x00000068 0x00000000 new N N ??(0) ?? 109 023908 0x01C03648 0x000000C4 0x01C03638 0x000000E4 0x00000000 new N N ogresharedruns.cpp(147) OgreSharedRuns::createInstance 110 023919 0x01C03768 0x00000018 0x01C03758 0x00000038 0x00000000 new N N ??(0) ?? 111 010734 0x01C03B58 0x00000028 0x01C03B48 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 112 010735 0x01C03BE0 0x00000048 0x01C03BD0 0x00000068 0x00000000 new N N ??(0) ?? 113 023888 0x01C1EEF0 0x000000C4 0x01C1EEE0 0x000000E4 0x00000000 new N N ogresharedruns.cpp(147) OgreSharedRuns::createInstance 114 010510 0x01C27970 0x00000028 0x01C27960 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 115 010511 0x01C279F8 0x00000048 0x01C279E8 0x00000068 0x00000000 new N N ??(0) ?? 116 010585 0x01C27D78 0x00000048 0x01C27D68 0x00000068 0x00000000 new N N ??(0) ?? 117 010579 0x01C298F0 0x00000028 0x01C298E0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 118 010580 0x01C29978 0x00000048 0x01C29968 0x00000068 0x00000000 new N N ??(0) ?? 119 023921 0x01C382D8 0x00000018 0x01C382C8 0x00000038 0x00000000 new N N ??(0) ?? 120 011604 0x01C3D4E0 0x00000028 0x01C3D4D0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 121 011605 0x01C3D568 0x00000048 0x01C3D558 0x00000068 0x00000000 new N N ??(0) ?? 122 011610 0x01C3D6D0 0x00000048 0x01C3D6C0 0x00000068 0x00000000 new N N ??(0) ?? 123 011614 0x01C3D7D8 0x00000048 0x01C3D7C8 0x00000068 0x00000000 new N N ??(0) ?? 124 023898 0x01C40DE8 0x000000C4 0x01C40DD8 0x000000E4 0x00000000 new N N ogresharedruns.cpp(147) OgreSharedRuns::createInstance 125 019951 0x01CA0B68 0x00000140 0x01CA0B58 0x00000160 0x00000000 new N N ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 126 019952 0x01CA0D08 0x0000000C 0x01CA0CF8 0x0000002C 0x00000000 new N N ??(0) ?? 127 019953 0x01CA0D70 0x00000018 0x01CA0D60 0x00000038 0x00000000 new N N ??(0) ?? 128 019954 0x01CA0DE8 0x0000000C 0x01CA0DD8 0x0000002C 0x00000000 new N N ??(0) ?? 129 019955 0x01CA0E50 0x00000018 0x01CA0E40 0x00000038 0x00000000 new N N ??(0) ?? 130 019956 0x01CA0EC8 0x00000018 0x01CA0EB8 0x00000038 0x00000000 new N N ??(0) ?? 131 019957 0x01CA0F40 0x00000030 0x01CA0F30 0x00000050 0x00000000 new N N ??(0) ?? 132 019958 0x01CA0FD0 0x00000018 0x01CA0FC0 0x00000038 0x00000000 new N N ??(0) ?? 133 019959 0x01CA1048 0x00000008 0x01CA1038 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 134 019960 0x01CA10B0 0x00000018 0x01CA10A0 0x00000038 0x00000000 new N N ??(0) ?? 135 019961 0x01CA1128 0x00000018 0x01CA1118 0x00000038 0x00000000 new N N ??(0) ?? 136 019962 0x01CA11A0 0x00000018 0x01CA1190 0x00000038 0x00000000 new N N ??(0) ?? 137 019963 0x01CA1218 0x00000018 0x01CA1208 0x00000038 0x00000000 new N N ??(0) ?? 138 019964 0x01CA1290 0x00000018 0x01CA1280 0x00000038 0x00000000 new N N ??(0) ?? 139 019965 0x01CA1308 0x00000018 0x01CA12F8 0x00000038 0x00000000 new N N ??(0) ?? 140 019966 0x01CA1380 0x00000018 0x01CA1370 0x00000038 0x00000000 new N N ??(0) ?? 141 019967 0x01CA13F8 0x00000018 0x01CA13E8 0x00000038 0x00000000 new N N ??(0) ?? 142 019968 0x01CA1470 0x00000018 0x01CA1460 0x00000038 0x00000000 new N N ??(0) ?? 143 019969 0x01CA14E8 0x00000018 0x01CA14D8 0x00000038 0x00000000 new N N ??(0) ?? 144 019970 0x01CA1560 0x00000018 0x01CA1550 0x00000038 0x00000000 new N N ??(0) ?? 145 019971 0x01CA15D8 0x00000048 0x01CA15C8 0x00000068 0x00000000 new N N ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 146 019972 0x01CA1680 0x00000030 0x01CA1670 0x00000050 0x00000000 new N N ??(0) ?? 147 019973 0x01CA1710 0x00000030 0x01CA1700 0x00000050 0x00000000 new N N ??(0) ?? 148 019974 0x01CA17A0 0x00000030 0x01CA1790 0x00000050 0x00000000 new N N ??(0) ?? 149 019975 0x01CA1830 0x00000030 0x01CA1820 0x00000050 0x00000000 new N N ??(0) ?? 150 019976 0x01CA18C0 0x00000030 0x01CA18B0 0x00000050 0x00000000 new N N ??(0) ?? 151 019977 0x01CA1950 0x00000030 0x01CA1940 0x00000050 0x00000000 new N N ??(0) ?? 152 019978 0x01CA19E0 0x00000030 0x01CA19D0 0x00000050 0x00000000 new N N ??(0) ?? 153 019979 0x01CA1A70 0x00000030 0x01CA1A60 0x00000050 0x00000000 new N N ??(0) ?? 154 019980 0x01CA1B00 0x0000000C 0x01CA1AF0 0x0000002C 0x00000000 new N N ??(0) ?? 155 019981 0x01CA1B68 0x00000048 0x01CA1B58 0x00000068 0x00000000 new N N ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 156 019982 0x01CA1C10 0x00000030 0x01CA1C00 0x00000050 0x00000000 new N N ??(0) ?? 157 019983 0x01CA1CA0 0x00000030 0x01CA1C90 0x00000050 0x00000000 new N N ??(0) ?? 158 019984 0x01CA1D30 0x00000030 0x01CA1D20 0x00000050 0x00000000 new N N ??(0) ?? 159 019985 0x01CA1DC0 0x00000030 0x01CA1DB0 0x00000050 0x00000000 new N N ??(0) ?? 160 019986 0x01CA1E50 0x00000030 0x01CA1E40 0x00000050 0x00000000 new N N ??(0) ?? 161 019987 0x01CA1EE0 0x00000030 0x01CA1ED0 0x00000050 0x00000000 new N N ??(0) ?? 162 019988 0x01CA1F70 0x00000030 0x01CA1F60 0x00000050 0x00000000 new N N ??(0) ?? 163 019989 0x01CA2000 0x00000030 0x01CA1FF0 0x00000050 0x00000000 new N N ??(0) ?? 164 019990 0x01CA2090 0x0000000C 0x01CA2080 0x0000002C 0x00000000 new N N ??(0) ?? 165 019991 0x01CA20F8 0x0000004C 0x01CA20E8 0x0000006C 0x00000000 new N N ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 166 019992 0x01CA21A0 0x00000030 0x01CA2190 0x00000050 0x00000000 new N N ??(0) ?? 167 019993 0x01CA2290 0x00000030 0x01CA2280 0x00000050 0x00000000 new N N ??(0) ?? 168 019994 0x01CA2320 0x00000030 0x01CA2310 0x00000050 0x00000000 new N N ??(0) ?? 169 019995 0x01CA23B0 0x00000030 0x01CA23A0 0x00000050 0x00000000 new N N ??(0) ?? 170 019997 0x01CA2440 0x00000030 0x01CA2430 0x00000050 0x00000000 new N N ??(0) ?? 171 019996 0x01CA2500 0x00000030 0x01CA24F0 0x00000050 0x00000000 new N N ??(0) ?? 172 019998 0x01CA25F0 0x00000030 0x01CA25E0 0x00000050 0x00000000 new N N ??(0) ?? 173 019999 0x01CA2680 0x00000030 0x01CA2670 0x00000050 0x00000000 new N N ??(0) ?? 174 020000 0x01CA2710 0x00000030 0x01CA2700 0x00000050 0x00000000 new N N ??(0) ?? 175 020001 0x01CA27A0 0x0000000C 0x01CA2790 0x0000002C 0x00000000 new N N ??(0) ?? 176 020002 0x01CA2808 0x0000007C 0x01CA27F8 0x0000009C 0x00000000 new N N ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 177 020003 0x01CA28E0 0x00000030 0x01CA28D0 0x00000050 0x00000000 new N N ??(0) ?? 178 020004 0x01CA2970 0x00000030 0x01CA2960 0x00000050 0x00000000 new N N ??(0) ?? 179 020005 0x01CA2A00 0x00000030 0x01CA29F0 0x00000050 0x00000000 new N N ??(0) ?? 180 020012 0x01CA2A90 0x00000030 0x01CA2A80 0x00000050 0x00000000 new N N ??(0) ?? 181 020006 0x01CA2B50 0x00000030 0x01CA2B40 0x00000050 0x00000000 new N N ??(0) ?? 182 020007 0x01CA2C40 0x00000030 0x01CA2C30 0x00000050 0x00000000 new N N ??(0) ?? 183 020008 0x01CA2D30 0x00000030 0x01CA2D20 0x00000050 0x00000000 new N N ??(0) ?? 184 020009 0x01CA2E20 0x00000030 0x01CA2E10 0x00000050 0x00000000 new N N ??(0) ?? 185 020010 0x01CA2F10 0x00000030 0x01CA2F00 0x00000050 0x00000000 new N N ??(0) ?? 186 020011 0x01CA3000 0x00000030 0x01CA2FF0 0x00000050 0x00000000 new N N ??(0) ?? 187 020013 0x01CA30F0 0x00000030 0x01CA30E0 0x00000050 0x00000000 new N N ??(0) ?? 188 020014 0x01CA3180 0x00000030 0x01CA3170 0x00000050 0x00000000 new N N ??(0) ?? 189 020015 0x01CA3210 0x0000000C 0x01CA3200 0x0000002C 0x00000000 new N N ??(0) ?? 190 020016 0x01CA3278 0x00000068 0x01CA3268 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 191 020017 0x01CA3340 0x00000030 0x01CA3330 0x00000050 0x00000000 new N N ??(0) ?? 192 020021 0x01CA33D0 0x0000000C 0x01CA33C0 0x0000002C 0x00000000 new N N ??(0) ?? 193 020018 0x01CA3490 0x00000030 0x01CA3480 0x00000050 0x00000000 new N N ??(0) ?? 194 020019 0x01CA3580 0x00000030 0x01CA3570 0x00000050 0x00000000 new N N ??(0) ?? 195 020020 0x01CA3670 0x00000030 0x01CA3660 0x00000050 0x00000000 new N N ??(0) ?? 196 020022 0x01CA3760 0x00000068 0x01CA3750 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 197 020023 0x01CA3828 0x00000030 0x01CA3818 0x00000050 0x00000000 new N N ??(0) ?? 198 020024 0x01CA3918 0x00000030 0x01CA3908 0x00000050 0x00000000 new N N ??(0) ?? 199 020027 0x01CA39A8 0x0000000C 0x01CA3998 0x0000002C 0x00000000 new N N ??(0) ?? 200 020025 0x01CA3A68 0x00000030 0x01CA3A58 0x00000050 0x00000000 new N N ??(0) ?? 201 020026 0x01CA3B58 0x00000030 0x01CA3B48 0x00000050 0x00000000 new N N ??(0) ?? 202 020028 0x01CA3C48 0x00000030 0x01CA3C38 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 203 020029 0x01CA3CD8 0x00000030 0x01CA3CC8 0x00000050 0x00000000 new N N ??(0) ?? 204 020030 0x01CA3DC8 0x00000030 0x01CA3DB8 0x00000050 0x00000000 new N N ??(0) ?? 205 020031 0x01CA3E58 0x0000000C 0x01CA3E48 0x0000002C 0x00000000 new N N ??(0) ?? 206 020032 0x01CA3EC0 0x00000030 0x01CA3EB0 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 207 020033 0x01CA3F50 0x00000030 0x01CA3F40 0x00000050 0x00000000 new N N ??(0) ?? 208 020034 0x01CA3FE0 0x00000030 0x01CA3FD0 0x00000050 0x00000000 new N N ??(0) ?? 209 020035 0x01CA4070 0x0000000C 0x01CA4060 0x0000002C 0x00000000 new N N ??(0) ?? 210 020036 0x01CA40D8 0x000000B4 0x01CA40C8 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 211 020037 0x01CA41E8 0x00000030 0x01CA41D8 0x00000050 0x00000000 new N N ??(0) ?? 212 020038 0x01CA4278 0x00000030 0x01CA4268 0x00000050 0x00000000 new N N ??(0) ?? 213 020039 0x01CA4308 0x00000030 0x01CA42F8 0x00000050 0x00000000 new N N ??(0) ?? 214 020040 0x01CA4398 0x00000030 0x01CA4388 0x00000050 0x00000000 new N N ??(0) ?? 215 020041 0x01CA4428 0x00000030 0x01CA4418 0x00000050 0x00000000 new N N ??(0) ?? 216 020042 0x01CA44B8 0x00000030 0x01CA44A8 0x00000050 0x00000000 new N N ??(0) ?? 217 020043 0x01CA4548 0x00000030 0x01CA4538 0x00000050 0x00000000 new N N ??(0) ?? 218 020044 0x01CA45D8 0x00000030 0x01CA45C8 0x00000050 0x00000000 new N N ??(0) ?? 219 020045 0x01CA4668 0x00000030 0x01CA4658 0x00000050 0x00000000 new N N ??(0) ?? 220 020046 0x01CA46F8 0x00000030 0x01CA46E8 0x00000050 0x00000000 new N N ??(0) ?? 221 020047 0x01CA4788 0x00000030 0x01CA4778 0x00000050 0x00000000 new N N ??(0) ?? 222 020048 0x01CA4818 0x0000000C 0x01CA4808 0x0000002C 0x00000000 new N N ??(0) ?? 223 020049 0x01CA4880 0x00000080 0x01CA4870 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 224 020050 0x01CA4960 0x00000030 0x01CA4950 0x00000050 0x00000000 new N N ??(0) ?? 225 020051 0x01CA49F0 0x00000030 0x01CA49E0 0x00000050 0x00000000 new N N ??(0) ?? 226 020052 0x01CA4A80 0x00000030 0x01CA4A70 0x00000050 0x00000000 new N N ??(0) ?? 227 020053 0x01CA4B10 0x00000030 0x01CA4B00 0x00000050 0x00000000 new N N ??(0) ?? 228 020054 0x01CA4BA0 0x00000030 0x01CA4B90 0x00000050 0x00000000 new N N ??(0) ?? 229 020055 0x01CA4C30 0x00000030 0x01CA4C20 0x00000050 0x00000000 new N N ??(0) ?? 230 020057 0x01CA4CC0 0x00000030 0x01CA4CB0 0x00000050 0x00000000 new N N ??(0) ?? 231 020056 0x01CA4D80 0x00000030 0x01CA4D70 0x00000050 0x00000000 new N N ??(0) ?? 232 020058 0x01CA4E70 0x00000030 0x01CA4E60 0x00000050 0x00000000 new N N ??(0) ?? 233 020059 0x01CA4F00 0x00000030 0x01CA4EF0 0x00000050 0x00000000 new N N ??(0) ?? 234 020061 0x01CA4F90 0x0000000C 0x01CA4F80 0x0000002C 0x00000000 new N N ??(0) ?? 235 020060 0x01CA5050 0x00000030 0x01CA5040 0x00000050 0x00000000 new N N ??(0) ?? 236 021176 0x01D2F5B8 0x00000028 0x01D2F5A8 0x00000048 0x00000000 new N N ogrepass.cpp(148) Ogre::Pass::operator`=' 237 021177 0x01D2F640 0x00000048 0x01D2F630 0x00000068 0x00000000 new N N ??(0) ?? 238 021179 0x01D2F6E8 0x00000028 0x01D2F6D8 0x00000048 0x00000000 new N N ogrepass.cpp(148) Ogre::Pass::operator`=' 239 021180 0x01D2F770 0x00000048 0x01D2F760 0x00000068 0x00000000 new N N ??(0) ?? 240 021227 0x01D31378 0x00000028 0x01D31368 0x00000048 0x00000000 new N N ogrepass.cpp(148) Ogre::Pass::operator`=' 241 021228 0x01D31400 0x00000048 0x01D313F0 0x00000068 0x00000000 new N N ??(0) ?? 242 021230 0x01D314A8 0x00000028 0x01D31498 0x00000048 0x00000000 new N N ogrepass.cpp(148) Ogre::Pass::operator`=' 243 021231 0x01D31530 0x00000048 0x01D31520 0x00000068 0x00000000 new N N ??(0) ?? 244 021375 0x01D32850 0x00000004 0x01D32840 0x00000024 0x00000000 new N N ??(0) ?? 245 021369 0x01D33380 0x000000C0 0x01D33370 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 246 021370 0x01D334A0 0x0000001C 0x01D33490 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 247 021371 0x01D33518 0x000000C4 0x01D33508 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 248 021372 0x01D33638 0x00000018 0x01D33628 0x00000038 0x00000000 new N N ??(0) ?? 249 021373 0x01D336B0 0x00000018 0x01D336A0 0x00000038 0x00000000 new N N ??(0) ?? 250 021376 0x01D33790 0x00000018 0x01D33780 0x00000038 0x00000000 new N N ??(0) ?? 251 021387 0x01D33808 0x0000004C 0x01D337F8 0x0000006C 0x00000000 new N N ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 252 021388 0x01D338B0 0x0000008C 0x01D338A0 0x000000AC 0x00000000 new N N ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 253 021389 0x01D339F8 0x00000030 0x01D339E8 0x00000050 0x00000000 new N N ??(0) ?? 254 021650 0x01D33A88 0x00000004 0x01D33A78 0x00000024 0x00000000 new N N ??(0) ?? 255 021643 0x01D38220 0x00000008 0x01D38210 0x00000028 0x00000000 new N N ??(0) ?? 256 021509 0x01D3A710 0x00000018 0x01D3A700 0x00000038 0x00000000 new N N ??(0) ?? 257 021521 0x01D3A788 0x0000004C 0x01D3A778 0x0000006C 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 258 021522 0x01D3A830 0x0000008C 0x01D3A820 0x000000AC 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 259 021523 0x01D3A918 0x00000030 0x01D3A908 0x00000050 0x00000000 new N N ??(0) ?? 260 021645 0x01D46C58 0x0000001C 0x01D46C48 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 261 021642 0x01D48E18 0x00000018 0x01D48E08 0x00000038 0x00000000 new N N ??(0) ?? 262 021644 0x01D49090 0x000000C0 0x01D49080 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 263 021646 0x01D491B0 0x000000C4 0x01D491A0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 264 021647 0x01D492D0 0x00000018 0x01D492C0 0x00000038 0x00000000 new N N ??(0) ?? 265 021648 0x01D49348 0x00000018 0x01D49338 0x00000038 0x00000000 new N N ??(0) ?? 266 021651 0x01D493C0 0x00000018 0x01D493B0 0x00000038 0x00000000 new N N ??(0) ?? 267 021658 0x01D49438 0x0000004C 0x01D49428 0x0000006C 0x00000000 new N N ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 268 021659 0x01D494E0 0x0000008C 0x01D494D0 0x000000AC 0x00000000 new N N ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 269 021660 0x01D49688 0x00000030 0x01D49678 0x00000050 0x00000000 new N N ??(0) ?? 270 022108 0x01D4EA70 0x00000004 0x01D4EA60 0x00000024 0x00000000 new N N ??(0) ?? 271 021778 0x01D502E8 0x00000018 0x01D502D8 0x00000038 0x00000000 new N N ??(0) ?? 272 021786 0x01D50360 0x0000004C 0x01D50350 0x0000006C 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 273 021787 0x01D50408 0x0000008C 0x01D503F8 0x000000AC 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 274 021788 0x01D504F0 0x00000030 0x01D504E0 0x00000050 0x00000000 new N N ??(0) ?? 275 022378 0x01D59400 0x00000018 0x01D593F0 0x00000038 0x00000000 new N N ??(0) ?? 276 021906 0x01D5EBC8 0x00000018 0x01D5EBB8 0x00000038 0x00000000 new N N ??(0) ?? 277 021914 0x01D5EC40 0x00000084 0x01D5EC30 0x000000A4 0x00000000 new N N ogrecausticcasterrendertechnique.cpp(252) OgreCausticCasterRenderTechniqueFactory 278 021952 0x01D60320 0x000000A8 0x01D60310 0x000000C8 0x00000000 new N N ogrecausticcasterrendertechnique.cpp(102) OgreCausticCasterRenderTechnique::creat 279 021953 0x01D60558 0x00000030 0x01D60548 0x00000050 0x00000000 new N N ??(0) ?? 280 022101 0x01D64120 0x0000000C 0x01D64110 0x0000002C 0x00000000 new N N ??(0) ?? 281 022072 0x01D67290 0x00000018 0x01D67280 0x00000038 0x00000000 new N N ??(0) ?? 282 022073 0x01D67308 0x000000A4 0x01D672F8 0x000000C4 0x00000000 new N N ogrecausticcasterrendertechnique.cpp(90) OgreCausticCasterRenderTechnique::creat 283 022074 0x01D67408 0x00000030 0x01D673F8 0x00000050 0x00000000 new N N ??(0) ?? 284 022098 0x01D70550 0x00000018 0x01D70540 0x00000038 0x00000000 new N N ??(0) ?? 285 022102 0x01D706B8 0x000000C0 0x01D706A8 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 286 022103 0x01D707D8 0x0000001C 0x01D707C8 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 287 022104 0x01D70850 0x000000C4 0x01D70840 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 288 022105 0x01D70970 0x00000018 0x01D70960 0x00000038 0x00000000 new N N ??(0) ?? 289 022106 0x01D709E8 0x00000018 0x01D709D8 0x00000038 0x00000000 new N N ??(0) ?? 290 022109 0x01D70A60 0x00000018 0x01D70A50 0x00000038 0x00000000 new N N ??(0) ?? 291 022120 0x01D70AD8 0x0000004C 0x01D70AC8 0x0000006C 0x00000000 new N N ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 292 022121 0x01D70B80 0x0000008C 0x01D70B70 0x000000AC 0x00000000 new N N ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 293 022122 0x01D70C68 0x00000030 0x01D70C58 0x00000050 0x00000000 new N N ??(0) ?? 294 022380 0x01D70CF8 0x00000004 0x01D70CE8 0x00000024 0x00000000 new N N ??(0) ?? 295 022240 0x01D775E0 0x00000018 0x01D775D0 0x00000038 0x00000000 new N N ??(0) ?? 296 022252 0x01D77858 0x0000004C 0x01D77848 0x0000006C 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 297 022253 0x01D77900 0x0000008C 0x01D778F0 0x000000AC 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 298 022254 0x01D779E8 0x00000030 0x01D779D8 0x00000050 0x00000000 new N N ??(0) ?? 299 022373 0x01D77A78 0x00000008 0x01D77A68 0x00000028 0x00000000 new N N ??(0) ?? 300 022375 0x01D7A918 0x0000001C 0x01D7A908 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 301 022377 0x01D7B268 0x00000018 0x01D7B258 0x00000038 0x00000000 new N N ??(0) ?? 302 022372 0x01D7B568 0x00000018 0x01D7B558 0x00000038 0x00000000 new N N ??(0) ?? 303 022374 0x01D7E5D8 0x000000C0 0x01D7E5C8 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 304 022376 0x01D7E6F8 0x000000C4 0x01D7E6E8 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 305 023920 0x01D864E8 0x00000018 0x01D864D8 0x00000038 0x00000000 new N N ??(0) ?? 306 022381 0x01D86568 0x00000018 0x01D86558 0x00000038 0x00000000 new N N ??(0) ?? 307 022383 0x01D865E0 0x0000004C 0x01D865D0 0x0000006C 0x00000000 new N N ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 308 022384 0x01D86688 0x0000008C 0x01D86678 0x000000AC 0x00000000 new N N ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 309 022385 0x01D86830 0x00000030 0x01D86820 0x00000050 0x00000000 new N N ??(0) ?? 310 022506 0x01D889E0 0x0000004C 0x01D889D0 0x0000006C 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 311 022503 0x01D89760 0x00000018 0x01D89750 0x00000038 0x00000000 new N N ??(0) ?? 312 022507 0x01D8D418 0x0000008C 0x01D8D408 0x000000AC 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 313 048004 0x01D8D500 0x00000004 0x01D8D4F0 0x00000024 0x00000000 new N N ??(0) ?? 314 022508 0x01D8D560 0x00000030 0x01D8D550 0x00000050 0x00000000 new N N ??(0) ?? 315 022630 0x01D8F718 0x0000001C 0x01D8F708 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 316 022627 0x01D903A0 0x00000008 0x01D90390 0x00000028 0x00000000 new N N ??(0) ?? 317 022626 0x01D90498 0x00000018 0x01D90488 0x00000038 0x00000000 new N N ??(0) ?? 318 022628 0x01D94140 0x000000C0 0x01D94130 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 319 022631 0x01D94260 0x000000C4 0x01D94250 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 320 022632 0x01D94380 0x00000018 0x01D94370 0x00000038 0x00000000 new N N ??(0) ?? 321 022633 0x01D943F8 0x00000018 0x01D943E8 0x00000038 0x00000000 new N N ??(0) ?? 322 022634 0x01D94470 0x0000000C 0x01D94460 0x0000002C 0x00000000 new N N ??(0) ?? 323 022636 0x01D944D8 0x00000018 0x01D944C8 0x00000038 0x00000000 new N N ??(0) ?? 324 022640 0x01D945B0 0x00000084 0x01D945A0 0x000000A4 0x00000000 new N N ogrecausticrecieverrendertechnique.cpp(166) OgreCausticRecieverRenderTechniqueFacto 325 022955 0x01D94690 0x0000001C 0x01D94680 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 326 022924 0x01DA6F70 0x00000034 0x01DA6F60 0x00000054 0x00000000 new N N ??(0) ?? 327 022952 0x01DA76E8 0x00000004 0x01DA76D8 0x00000024 0x00000000 new N N ??(0) ?? 328 023272 0x01DA7838 0x00000004 0x01DA7828 0x00000024 0x00000000 new N N ??(0) ?? 329 022953 0x01DA7ED0 0x000000C0 0x01DA7EC0 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 330 022956 0x01DA7FF0 0x00000008 0x01DA7FE0 0x00000028 0x00000000 new N N ??(0) ?? 331 022957 0x01DA8058 0x00000018 0x01DA8048 0x00000038 0x00000000 new N N ??(0) ?? 332 022961 0x01DA80D0 0x00000084 0x01DA80C0 0x000000A4 0x00000000 new N N ogrecausticrecieverrendertechnique.cpp(166) OgreCausticRecieverRenderTechniqueFacto 333 023237 0x01DB9E70 0x00000034 0x01DB9E60 0x00000054 0x00000000 new N N ??(0) ?? 334 023265 0x01DBA5E8 0x00000004 0x01DBA5D8 0x00000024 0x00000000 new N N ??(0) ?? 335 023266 0x01DBADD0 0x000000C0 0x01DBADC0 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 336 023267 0x01DBAEF0 0x0000001C 0x01DBAEE0 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 337 023268 0x01DBAF68 0x000000C4 0x01DBAF58 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 338 023269 0x01DBB088 0x00000018 0x01DBB078 0x00000038 0x00000000 new N N ??(0) ?? 339 023270 0x01DBB100 0x00000018 0x01DBB0F0 0x00000038 0x00000000 new N N ??(0) ?? 340 023922 0x01DBB178 0x0000000C 0x01DBB168 0x0000002C 0x00000000 new N N ??(0) ?? 341 023273 0x01DBB1E0 0x00000018 0x01DBB1D0 0x00000038 0x00000000 new N N ??(0) ?? 342 023275 0x01DBB258 0x0000004C 0x01DBB248 0x0000006C 0x00000000 new N N ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 343 023276 0x01DBB300 0x0000008C 0x01DBB2F0 0x000000AC 0x00000000 new N N ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 344 023277 0x01DBB448 0x00000030 0x01DBB438 0x00000050 0x00000000 new N N ??(0) ?? 345 023396 0x01DC9A40 0x00000018 0x01DC9A30 0x00000038 0x00000000 new N N ??(0) ?? 346 023399 0x01DC9CB8 0x0000004C 0x01DC9CA8 0x0000006C 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 347 023400 0x01DC9D60 0x0000008C 0x01DC9D50 0x000000AC 0x00000000 new N N ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 348 023401 0x01DC9E48 0x00000030 0x01DC9E38 0x00000050 0x00000000 new N N ??(0) ?? 349 023520 0x01DC9ED8 0x00000008 0x01DC9EC8 0x00000028 0x00000000 new N N ??(0) ?? 350 023519 0x01DCE608 0x00000018 0x01DCE5F8 0x00000038 0x00000000 new N N ??(0) ?? 351 048001 0x026F26C8 0x00000004 0x026F26B8 0x00000024 0x00000000 new N N ??(0) ?? -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log
r1474 r1487 1 1 -------------------------------------------------------------------------------- 2 2 3 OgreMemory.log - Memory logging file created on T hu Sep 21 20:04:1920063 OgreMemory.log - Memory logging file created on Tue Sep 26 09:22:23 2006 4 4 5 5 -------------------------------------------------------------------------------- -
GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log
r1474 r1487 1 20:04:53: Creating resource group General2 20:04:53: Creating resource group Internal3 20:04:53: Creating resource group Autodetect4 20:04:53: Registering ResourceManager for type Material5 20:04:53: Registering ResourceManager for type Mesh6 20:04:53: Registering ResourceManager for type Skeleton7 20:04:53: MovableObjectFactory for type 'ParticleSystem' registered.8 20:04:53: Loading library OgrePlatform.dll9 20:04:53: OverlayElementFactory for type Panel registered.10 20:04:53: OverlayElementFactory for type BorderPanel registered.11 20:04:53: OverlayElementFactory for type TextArea registered.12 20:04:53: Registering ResourceManager for type Font13 20:04:53: ArchiveFactory for archive type FileSystem registered.14 20:04:53: ArchiveFactory for archive type Zip registered.15 20:04:53: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 200516 20:04:53: 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 20:04:53: Registering ResourceManager for type HighLevelGpuProgram18 20:04:53: Registering ResourceManager for type Compositor19 20:04:53: MovableObjectFactory for type 'Entity' registered.20 20:04:53: MovableObjectFactory for type 'Light' registered.21 20:04:53: MovableObjectFactory for type 'BillboardSet' registered.22 20:04:53: MovableObjectFactory for type 'ManualObject' registered.23 20:04:53: MovableObjectFactory for type 'BillboardChain' registered.24 20:04:53: MovableObjectFactory for type 'RibbonTrail' registered.25 20:04:53: Loading library .\RenderSystem_Direct3D926 20:04:53: D3D9 : Direct3D9 Rendering Subsystem created.27 20:04:53: D3D9: Driver Detection Starts28 20:04:53: D3D9: Driver Detection Ends29 20:04:53: Loading library .\Plugin_ParticleFX30 20:04:53: Particle Emitter Type 'Point' registered31 20:04:53: Particle Emitter Type 'Box' registered32 20:04:53: Particle Emitter Type 'Ellipsoid' registered33 20:04:53: Particle Emitter Type 'Cylinder' registered34 20:04:53: Particle Emitter Type 'Ring' registered35 20:04:53: Particle Emitter Type 'HollowEllipsoid' registered36 20:04:53: Particle Affector Type 'LinearForce' registered37 20:04:53: Particle Affector Type 'ColourFader' registered38 20:04:53: Particle Affector Type 'ColourFader2' registered39 20:04:53: Particle Affector Type 'ColourImage' registered40 20:04:53: Particle Affector Type 'ColourInterpolator' registered41 20:04:53: Particle Affector Type 'Scaler' registered42 20:04:53: Particle Affector Type 'Rotator' registered43 20:04:53: Particle Affector Type 'DirectionRandomiser' registered44 20:04:53: Particle Affector Type 'DeflectorPlane' registered45 20:04:53: Loading library .\Plugin_BSPSceneManager46 20:04:53: Registering ResourceManager for type BspLevel47 20:04:53: Loading library .\Plugin_OctreeSceneManager48 20:04:53: Loading library .\Plugin_CgProgramManager49 20:04:53: *-*-* OGRE Initialising50 20:04:53: *-*-* Version 1.2.0 (Dagon)51 20:04:53: Creating resource group Bootstrap52 20:04:53: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'53 20:04:53: Added resource location '../../Media' of type 'FileSystem' to resource group 'General'54 20:04:53: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General'55 20:04:53: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General'56 20:04:53: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General'57 20:04:53: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General'58 20:04:53: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General'59 20:04:53: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General'60 20:04:53: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General'61 20:04:53: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General'62 20:04:53: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'63 20:04:53: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General'64 20:04:53: D3D9 : RenderSystem Option: Allow NVPerfHUD = No65 20:04:53: D3D9 : RenderSystem Option: Anti aliasing = None66 20:04:53: D3D9 : RenderSystem Option: Floating-point mode = Fastest67 20:04:53: D3D9 : RenderSystem Option: Full Screen = No68 20:04:53: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT69 20:04:53: D3D9 : RenderSystem Option: VSync = No70 20:04:53: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour71 20:04:54: D3D9 : Subsystem Initialising72 20:04:54: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false73 20:04:54: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp74 20:04:54: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.75 20:04:54: Registering ResourceManager for type Texture76 20:04:54: Registering ResourceManager for type GpuProgram77 20:04:54: RenderSystem capabilities78 20:04:54: -------------------------79 20:04:54: * Hardware generation of mipmaps: yes80 20:04:54: * Texture blending: yes81 20:04:54: * Anisotropic texture filtering: yes82 20:04:54: * Dot product texture operation: yes83 20:04:54: * Cube mapping: yes84 20:04:54: * Hardware stencil buffer: yes85 20:04:54: - Stencil depth: 886 20:04:54: - Two sided stencil support: yes87 20:04:54: - Wrap stencil values: yes88 20:04:54: * Hardware vertex / index buffers: yes89 20:04:54: * Vertex programs: yes90 20:04:54: - Max vertex program version: vs_3_091 20:04:54: * Fragment programs: yes92 20:04:54: - Max fragment program version: ps_3_093 20:04:54: * Texture Compression: yes94 20:04:54: - DXT: yes95 20:04:54: - VTC: no96 20:04:54: * Scissor Rectangle: yes97 20:04:54: * Hardware Occlusion Query: yes98 20:04:54: * User clip planes: yes99 20:04:54: * VET_UBYTE4 vertex element type: yes100 20:04:54: * Infinite far plane projection: yes101 20:04:54: * Hardware render-to-texture: yes102 20:04:54: * Floating point textures: yes103 20:04:54: * Non-power-of-two textures: yes104 20:04:54: * Volume textures: yes105 20:04:54: * Multiple Render Targets: 4106 20:04:54: * Max Point Size: 8192107 20:04:54: ***************************************108 20:04:54: *** D3D9 : Subsystem Initialised OK ***109 20:04:54: ***************************************110 20:04:54: ResourceBackgroundQueue - threading disabled111 20:04:54: Particle Renderer Type 'billboard' registered112 20:04:54: Particle Renderer Type 'sprite' registered113 20:04:54: 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 20:04:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600115 20:04:54: Parsing scripts for resource group Autodetect116 20:04:54: Finished parsing scripts for resource group Autodetect117 20:04:54: Parsing scripts for resource group Bootstrap118 20:04:54: Parsing script OgreCore.material119 20:04:54: Parsing script OgreProfiler.material120 20:04:54: Parsing script Ogre.fontdef121 20:04:54: Parsing script OgreDebugPanel.overlay122 20:04:54: 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 20:04:54: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.124 20:04:54: 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 20:04:54: Font TrebuchetMSBoldusing texture size 512x512126 20:04:54: Info: Freetype returned null for character 160 in font TrebuchetMSBold127 20:04:54: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.128 20:04:54: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.129 20:04:54: Parsing script OgreLoadingPanel.overlay130 20:04:54: Finished parsing scripts for resource group Bootstrap131 20:04:54: Parsing scripts for resource group General132 20:04:54: Parsing script GameTools.program133 20:04:54: Parsing script atlascube.material134 20:04:54: Parsing script Diffuse.material135 20:04:56: An exception has been thrown!1 08:50:08: Creating resource group General 2 08:50:08: Creating resource group Internal 3 08:50:08: Creating resource group Autodetect 4 08:50:08: Registering ResourceManager for type Material 5 08:50:08: Registering ResourceManager for type Mesh 6 08:50:08: Registering ResourceManager for type Skeleton 7 08:50:08: MovableObjectFactory for type 'ParticleSystem' registered. 8 08:50:08: Loading library OgrePlatform.dll 9 08:50:08: OverlayElementFactory for type Panel registered. 10 08:50:08: OverlayElementFactory for type BorderPanel registered. 11 08:50:08: OverlayElementFactory for type TextArea registered. 12 08:50:08: Registering ResourceManager for type Font 13 08:50:08: ArchiveFactory for archive type FileSystem registered. 14 08:50:08: ArchiveFactory for archive type Zip registered. 15 08:50:08: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 08:50:08: 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 08:50:08: Registering ResourceManager for type HighLevelGpuProgram 18 08:50:08: Registering ResourceManager for type Compositor 19 08:50:08: MovableObjectFactory for type 'Entity' registered. 20 08:50:08: MovableObjectFactory for type 'Light' registered. 21 08:50:08: MovableObjectFactory for type 'BillboardSet' registered. 22 08:50:08: MovableObjectFactory for type 'ManualObject' registered. 23 08:50:08: MovableObjectFactory for type 'BillboardChain' registered. 24 08:50:08: MovableObjectFactory for type 'RibbonTrail' registered. 25 08:50:08: Loading library .\RenderSystem_Direct3D9 26 08:50:08: D3D9 : Direct3D9 Rendering Subsystem created. 27 08:50:08: D3D9: Driver Detection Starts 28 08:50:08: D3D9: Driver Detection Ends 29 08:50:08: Loading library .\Plugin_ParticleFX 30 08:50:08: Particle Emitter Type 'Point' registered 31 08:50:08: Particle Emitter Type 'Box' registered 32 08:50:08: Particle Emitter Type 'Ellipsoid' registered 33 08:50:08: Particle Emitter Type 'Cylinder' registered 34 08:50:08: Particle Emitter Type 'Ring' registered 35 08:50:08: Particle Emitter Type 'HollowEllipsoid' registered 36 08:50:08: Particle Affector Type 'LinearForce' registered 37 08:50:08: Particle Affector Type 'ColourFader' registered 38 08:50:08: Particle Affector Type 'ColourFader2' registered 39 08:50:08: Particle Affector Type 'ColourImage' registered 40 08:50:08: Particle Affector Type 'ColourInterpolator' registered 41 08:50:08: Particle Affector Type 'Scaler' registered 42 08:50:08: Particle Affector Type 'Rotator' registered 43 08:50:08: Particle Affector Type 'DirectionRandomiser' registered 44 08:50:08: Particle Affector Type 'DeflectorPlane' registered 45 08:50:08: Loading library .\Plugin_BSPSceneManager 46 08:50:08: Registering ResourceManager for type BspLevel 47 08:50:08: Loading library .\Plugin_OctreeSceneManager 48 08:50:08: Loading library .\Plugin_CgProgramManager 49 08:50:08: *-*-* OGRE Initialising 50 08:50:08: *-*-* Version 1.2.0 (Dagon) 51 08:50:09: Creating resource group Bootstrap 52 08:50:09: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 08:50:09: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 08:50:09: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 08:50:09: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 08:50:09: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 08:50:09: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 08:50:09: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 08:50:09: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 08:50:09: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 08:50:09: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 08:50:09: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 08:50:09: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 08:50:09: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 08:50:09: D3D9 : RenderSystem Option: Anti aliasing = None 66 08:50:09: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 08:50:09: D3D9 : RenderSystem Option: Full Screen = No 68 08:50:09: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 69 08:50:09: D3D9 : RenderSystem Option: VSync = No 70 08:50:09: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 08:50:11: D3D9 : Subsystem Initialising 72 08:50:11: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 08:50:11: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 08:50:11: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 08:50:11: Registering ResourceManager for type Texture 76 08:50:11: Registering ResourceManager for type GpuProgram 77 08:50:11: RenderSystem capabilities 78 08:50:11: ------------------------- 79 08:50:11: * Hardware generation of mipmaps: yes 80 08:50:11: * Texture blending: yes 81 08:50:11: * Anisotropic texture filtering: yes 82 08:50:11: * Dot product texture operation: yes 83 08:50:11: * Cube mapping: yes 84 08:50:11: * Hardware stencil buffer: yes 85 08:50:11: - Stencil depth: 8 86 08:50:11: - Two sided stencil support: yes 87 08:50:11: - Wrap stencil values: yes 88 08:50:11: * Hardware vertex / index buffers: yes 89 08:50:11: * Vertex programs: yes 90 08:50:11: - Max vertex program version: vs_3_0 91 08:50:11: * Fragment programs: yes 92 08:50:11: - Max fragment program version: ps_3_0 93 08:50:11: * Texture Compression: yes 94 08:50:11: - DXT: yes 95 08:50:11: - VTC: no 96 08:50:11: * Scissor Rectangle: yes 97 08:50:11: * Hardware Occlusion Query: yes 98 08:50:11: * User clip planes: yes 99 08:50:11: * VET_UBYTE4 vertex element type: yes 100 08:50:11: * Infinite far plane projection: yes 101 08:50:11: * Hardware render-to-texture: yes 102 08:50:11: * Floating point textures: yes 103 08:50:11: * Non-power-of-two textures: yes 104 08:50:11: * Volume textures: yes 105 08:50:11: * Multiple Render Targets: 4 106 08:50:11: * Max Point Size: 8192 107 08:50:11: *************************************** 108 08:50:11: *** D3D9 : Subsystem Initialised OK *** 109 08:50:11: *************************************** 110 08:50:11: ResourceBackgroundQueue - threading disabled 111 08:50:11: Particle Renderer Type 'billboard' registered 112 08:50:11: Particle Renderer Type 'sprite' registered 113 08:50:11: 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 08:50:11: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 08:50:11: Parsing scripts for resource group Autodetect 116 08:50:11: Finished parsing scripts for resource group Autodetect 117 08:50:11: Parsing scripts for resource group Bootstrap 118 08:50:11: Parsing script OgreCore.material 119 08:50:11: Parsing script OgreProfiler.material 120 08:50:11: Parsing script Ogre.fontdef 121 08:50:11: Parsing script OgreDebugPanel.overlay 122 08:50:11: 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 08:50:11: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 124 08:50:11: 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 08:50:11: Font TrebuchetMSBoldusing texture size 512x512 126 08:50:11: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 08:50:11: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 128 08:50:11: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 08:50:11: Parsing script OgreLoadingPanel.overlay 130 08:50:11: Finished parsing scripts for resource group Bootstrap 131 08:50:11: Parsing scripts for resource group General 132 08:50:11: Parsing script GameTools.program 133 08:50:11: Parsing script atlascube.material 134 08:50:11: Parsing script Diffuse.material 135 08:50:13: An exception has been thrown! 136 136 137 137 ----------------------------------- … … 144 144 Line: 768 145 145 Stack unwinding: <<beginning of stack>> 146 20:04:56: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown!146 08:50:13: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 147 147 148 148 ----------------------------------- … … 155 155 Line: 768 156 156 Stack unwinding: <<beginning of stack>> 157 20:04:56: An exception has been thrown!157 08:50:13: An exception has been thrown! 158 158 159 159 ----------------------------------- … … 166 166 Line: 768 167 167 Stack unwinding: <<beginning of stack>> 168 20:04:56: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!168 08:50:13: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 169 169 170 170 ----------------------------------- … … 177 177 Line: 768 178 178 Stack unwinding: <<beginning of stack>> 179 20:04:56: Parsing script EnvMetals.material180 20:04:56: An exception has been thrown!179 08:50:13: Parsing script EnvMetals.material 180 08:50:13: An exception has been thrown! 181 181 182 182 ----------------------------------- … … 189 189 Line: 768 190 190 Stack unwinding: <<beginning of stack>> 191 20:04:56: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!191 08:50:13: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 192 192 193 193 ----------------------------------- … … 200 200 Line: 768 201 201 Stack unwinding: <<beginning of stack>> 202 20:04:56: An exception has been thrown!202 08:50:13: An exception has been thrown! 203 203 204 204 ----------------------------------- … … 211 211 Line: 768 212 212 Stack unwinding: <<beginning of stack>> 213 20:04:56: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!213 08:50:13: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 214 214 215 215 ----------------------------------- … … 222 222 Line: 768 223 223 Stack unwinding: <<beginning of stack>> 224 20:04:56: An exception has been thrown!224 08:50:13: An exception has been thrown! 225 225 226 226 ----------------------------------- … … 233 233 Line: 768 234 234 Stack unwinding: <<beginning of stack>> 235 20:04:56: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!235 08:50:13: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 236 236 237 237 ----------------------------------- … … 244 244 Line: 768 245 245 Stack unwinding: <<beginning of stack>> 246 20:04:56: An exception has been thrown!246 08:50:13: An exception has been thrown! 247 247 248 248 ----------------------------------- … … 255 255 Line: 768 256 256 Stack unwinding: <<beginning of stack>> 257 20:04:56: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!257 08:50:13: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 258 258 259 259 ----------------------------------- … … 266 266 Line: 768 267 267 Stack unwinding: <<beginning of stack>> 268 20:04:56: Parsing script GameTools.material269 20:04:56: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend270 20:04:56: An exception has been thrown!268 08:50:13: Parsing script GameTools.material 269 08:50:13: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 270 08:50:13: An exception has been thrown! 271 271 272 272 ----------------------------------- … … 279 279 Line: 768 280 280 Stack unwinding: <<beginning of stack>> 281 20:04:56: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!281 08:50:13: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 282 282 283 283 ----------------------------------- … … 290 290 Line: 768 291 291 Stack unwinding: <<beginning of stack>> 292 20:04:56: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend293 20:04:56: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.294 20:04:56: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend295 20:04:56: Parsing script GameTools_HPS.material296 20:04:56: An exception has been thrown!297 298 ----------------------------------- 299 Details: 300 ----------------------------------- 301 Error #: 7 302 Function: GpuProgramParameters::getParamIndex 303 Description: Cannot find a parameter named worldViewProj. 304 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 305 Line: 768 306 Stack unwinding: <<beginning of stack>> 307 20:04:56: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!308 309 ----------------------------------- 310 Details: 311 ----------------------------------- 312 Error #: 7 313 Function: GpuProgramParameters::getParamIndex 314 Description: Cannot find a parameter named worldViewProj. 315 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 316 Line: 768 317 Stack unwinding: <<beginning of stack>> 318 20:04:56: An exception has been thrown!319 320 ----------------------------------- 321 Details: 322 ----------------------------------- 323 Error #: 7 324 Function: GpuProgramParameters::getParamIndex 325 Description: Cannot find a parameter named worldViewProj. 326 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 327 Line: 768 328 Stack unwinding: <<beginning of stack>> 329 20:04:56: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!330 331 ----------------------------------- 332 Details: 333 ----------------------------------- 334 Error #: 7 335 Function: GpuProgramParameters::getParamIndex 336 Description: Cannot find a parameter named worldViewProj. 337 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 338 Line: 768 339 Stack unwinding: <<beginning of stack>> 340 20:04:56: An exception has been thrown!292 08:50:13: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 293 08:50:13: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 294 08:50:13: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 295 08:50:13: Parsing script GameTools_HPS.material 296 08:50:13: An exception has been thrown! 297 298 ----------------------------------- 299 Details: 300 ----------------------------------- 301 Error #: 7 302 Function: GpuProgramParameters::getParamIndex 303 Description: Cannot find a parameter named worldViewProj. 304 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 305 Line: 768 306 Stack unwinding: <<beginning of stack>> 307 08:50:13: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 308 309 ----------------------------------- 310 Details: 311 ----------------------------------- 312 Error #: 7 313 Function: GpuProgramParameters::getParamIndex 314 Description: Cannot find a parameter named worldViewProj. 315 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 316 Line: 768 317 Stack unwinding: <<beginning of stack>> 318 08:50:13: An exception has been thrown! 319 320 ----------------------------------- 321 Details: 322 ----------------------------------- 323 Error #: 7 324 Function: GpuProgramParameters::getParamIndex 325 Description: Cannot find a parameter named worldViewProj. 326 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 327 Line: 768 328 Stack unwinding: <<beginning of stack>> 329 08:50:13: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 330 331 ----------------------------------- 332 Details: 333 ----------------------------------- 334 Error #: 7 335 Function: GpuProgramParameters::getParamIndex 336 Description: Cannot find a parameter named worldViewProj. 337 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 338 Line: 768 339 Stack unwinding: <<beginning of stack>> 340 08:50:13: An exception has been thrown! 341 341 342 342 ----------------------------------- … … 349 349 Line: 768 350 350 Stack unwinding: <<beginning of stack>> 351 20:04:56: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!351 08:50:13: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 352 352 353 353 ----------------------------------- … … 360 360 Line: 768 361 361 Stack unwinding: <<beginning of stack>> 362 20:04:56: An exception has been thrown!363 364 ----------------------------------- 365 Details: 366 ----------------------------------- 367 Error #: 7 368 Function: GpuProgramParameters::getParamIndex 369 Description: Cannot find a parameter named worldViewProj. 370 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 371 Line: 768 372 Stack unwinding: <<beginning of stack>> 373 20:04:56: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!374 375 ----------------------------------- 376 Details: 377 ----------------------------------- 378 Error #: 7 379 Function: GpuProgramParameters::getParamIndex 380 Description: Cannot find a parameter named worldViewProj. 381 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 382 Line: 768 383 Stack unwinding: <<beginning of stack>> 384 20:04:56: An exception has been thrown!362 08:50:13: An exception has been thrown! 363 364 ----------------------------------- 365 Details: 366 ----------------------------------- 367 Error #: 7 368 Function: GpuProgramParameters::getParamIndex 369 Description: Cannot find a parameter named worldViewProj. 370 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 371 Line: 768 372 Stack unwinding: <<beginning of stack>> 373 08:50:13: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 374 375 ----------------------------------- 376 Details: 377 ----------------------------------- 378 Error #: 7 379 Function: GpuProgramParameters::getParamIndex 380 Description: Cannot find a parameter named worldViewProj. 381 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 382 Line: 768 383 Stack unwinding: <<beginning of stack>> 384 08:50:13: An exception has been thrown! 385 385 386 386 ----------------------------------- … … 393 393 Line: 768 394 394 Stack unwinding: <<beginning of stack>> 395 20:04:56: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!395 08:50:13: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 396 396 397 397 ----------------------------------- … … 404 404 Line: 768 405 405 Stack unwinding: <<beginning of stack>> 406 20:04:56: An exception has been thrown!406 08:50:13: An exception has been thrown! 407 407 408 408 ----------------------------------- … … 415 415 Line: 768 416 416 Stack unwinding: <<beginning of stack>> 417 20:04:56: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!417 08:50:13: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 418 418 419 419 ----------------------------------- … … 426 426 Line: 768 427 427 Stack unwinding: <<beginning of stack>> 428 20:04:56: An exception has been thrown!429 430 ----------------------------------- 431 Details: 432 ----------------------------------- 433 Error #: 7 434 Function: GpuProgramParameters::getParamIndex 435 Description: Cannot find a parameter named worldViewProj. 436 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 437 Line: 768 438 Stack unwinding: <<beginning of stack>> 439 20:04:56: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!440 441 ----------------------------------- 442 Details: 443 ----------------------------------- 444 Error #: 7 445 Function: GpuProgramParameters::getParamIndex 446 Description: Cannot find a parameter named worldViewProj. 447 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 448 Line: 768 449 Stack unwinding: <<beginning of stack>> 450 20:04:56: Parsing script GlassHead.material451 20:04:56: An exception has been thrown!428 08:50:13: An exception has been thrown! 429 430 ----------------------------------- 431 Details: 432 ----------------------------------- 433 Error #: 7 434 Function: GpuProgramParameters::getParamIndex 435 Description: Cannot find a parameter named worldViewProj. 436 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 437 Line: 768 438 Stack unwinding: <<beginning of stack>> 439 08:50:13: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 440 441 ----------------------------------- 442 Details: 443 ----------------------------------- 444 Error #: 7 445 Function: GpuProgramParameters::getParamIndex 446 Description: Cannot find a parameter named worldViewProj. 447 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 448 Line: 768 449 Stack unwinding: <<beginning of stack>> 450 08:50:13: Parsing script GlassHead.material 451 08:50:13: An exception has been thrown! 452 452 453 453 ----------------------------------- … … 460 460 Line: 768 461 461 Stack unwinding: <<beginning of stack>> 462 20:04:56: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!462 08:50:13: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 463 463 464 464 ----------------------------------- … … 471 471 Line: 768 472 472 Stack unwinding: <<beginning of stack>> 473 20:04:56: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.474 20:04:56: An exception has been thrown!475 476 ----------------------------------- 477 Details: 478 ----------------------------------- 479 Error #: 7 480 Function: GpuProgramParameters::getParamIndex 481 Description: Cannot find a parameter named worldViewProj. 482 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 483 Line: 768 484 Stack unwinding: <<beginning of stack>> 485 20:04:56: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!486 487 ----------------------------------- 488 Details: 489 ----------------------------------- 490 Error #: 7 491 Function: GpuProgramParameters::getParamIndex 492 Description: Cannot find a parameter named worldViewProj. 493 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 494 Line: 768 495 Stack unwinding: <<beginning of stack>> 496 20:04:56: An exception has been thrown!473 08:50:13: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 474 08:50:13: An exception has been thrown! 475 476 ----------------------------------- 477 Details: 478 ----------------------------------- 479 Error #: 7 480 Function: GpuProgramParameters::getParamIndex 481 Description: Cannot find a parameter named worldViewProj. 482 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 483 Line: 768 484 Stack unwinding: <<beginning of stack>> 485 08:50:13: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 486 487 ----------------------------------- 488 Details: 489 ----------------------------------- 490 Error #: 7 491 Function: GpuProgramParameters::getParamIndex 492 Description: Cannot find a parameter named worldViewProj. 493 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 494 Line: 768 495 Stack unwinding: <<beginning of stack>> 496 08:50:13: An exception has been thrown! 497 497 498 498 ----------------------------------- … … 505 505 Line: 768 506 506 Stack unwinding: <<beginning of stack>> 507 20:04:56: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!507 08:50:13: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 508 508 509 509 ----------------------------------- … … 516 516 Line: 768 517 517 Stack unwinding: <<beginning of stack>> 518 20:04:57: Parsing script Glow.material 519 20:04:57: An exception has been thrown! 518 08:50:13: An exception has been thrown! 519 520 ----------------------------------- 521 Details: 522 ----------------------------------- 523 Error #: 7 524 Function: GpuProgramParameters::getParamIndex 525 Description: Cannot find a parameter named resolution. 526 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 527 Line: 768 528 Stack unwinding: <<beginning of stack>> 529 08:50:13: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 530 531 ----------------------------------- 532 Details: 533 ----------------------------------- 534 Error #: 7 535 Function: GpuProgramParameters::getParamIndex 536 Description: Cannot find a parameter named resolution. 537 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 538 Line: 768 539 Stack unwinding: <<beginning of stack>> 540 08:50:14: Parsing script Glow.material 541 08:50:14: An exception has been thrown! 520 542 521 543 ----------------------------------- … … 528 550 Line: 768 529 551 Stack unwinding: <<beginning of stack>> 530 20:04:57: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown!552 08:50:14: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 531 553 532 554 ----------------------------------- … … 539 561 Line: 768 540 562 Stack unwinding: <<beginning of stack>> 541 20:04:57: Parsing script hangar.material542 20:04:57: Parsing script kupola.material543 20:04:57: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'544 20:04:57: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'545 20:04:57: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'546 20:04:57: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'547 20:04:57: Parsing script Ogre.material548 20:04:57: Parsing script Particles.material549 20:04:57: An exception has been thrown!550 551 ----------------------------------- 552 Details: 553 ----------------------------------- 554 Error #: 7 555 Function: GpuProgramParameters::getParamIndex 556 Description: Cannot find a parameter named worldViewProj. 557 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 558 Line: 768 559 Stack unwinding: <<beginning of stack>> 560 20:04:57: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!561 562 ----------------------------------- 563 Details: 564 ----------------------------------- 565 Error #: 7 566 Function: GpuProgramParameters::getParamIndex 567 Description: Cannot find a parameter named worldViewProj. 568 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 569 Line: 768 570 Stack unwinding: <<beginning of stack>> 571 20:04:57: An exception has been thrown!572 573 ----------------------------------- 574 Details: 575 ----------------------------------- 576 Error #: 7 577 Function: GpuProgramParameters::getParamIndex 578 Description: Cannot find a parameter named worldViewProj. 579 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 580 Line: 768 581 Stack unwinding: <<beginning of stack>> 582 20:04:57: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!583 584 ----------------------------------- 585 Details: 586 ----------------------------------- 587 Error #: 7 588 Function: GpuProgramParameters::getParamIndex 589 Description: Cannot find a parameter named worldViewProj. 590 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 591 Line: 768 592 Stack unwinding: <<beginning of stack>> 593 20:04:57: Parsing script RaytraceDemo.material594 20:04:57: Parsing script stairs.material595 20:04:57: Parsing script X3D.material596 20:04:57: Parsing script GameTools_Glow.compositor597 20:04:57: Parsing script GameTools_ToneMap.compositor598 20:04:57: Parsing script sample.fontdef599 20:04:57: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre600 20:04:57: Parsing script GameTools.particle601 20:04:57: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer)602 20:04:57: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer)603 20:04:57: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer)604 20:04:57: Parsing script Compositor.overlay605 20:04:57: Parsing script DP3.overlay606 20:04:57: Parsing script Example-CubeMapping.overlay607 20:04:57: Parsing script Example-DynTex.overlay608 20:04:57: Parsing script Example-Water.overlay609 20:04:57: Parsing script FullScreen.overlay610 20:04:57: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1.611 20:04:57: Parsing script Shadows.overlay612 20:04:57: Finished parsing scripts for resource group General613 20:04:57: Parsing scripts for resource group Internal614 20:04:57: Finished parsing scripts for resource group Internal615 20:04:57: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.616 20:04:57: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.617 20:04:57: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.618 20:04:57: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.619 20:04:58: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.620 20:04:58: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.621 20:04:58: Mesh: Loading sphere.mesh.622 20:04:58: An exception has been thrown!563 08:50:14: Parsing script hangar.material 564 08:50:14: Parsing script kupola.material 565 08:50:14: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 566 08:50:14: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 567 08:50:14: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 568 08:50:14: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 569 08:50:14: Parsing script Ogre.material 570 08:50:14: Parsing script Particles.material 571 08:50:14: An exception has been thrown! 572 573 ----------------------------------- 574 Details: 575 ----------------------------------- 576 Error #: 7 577 Function: GpuProgramParameters::getParamIndex 578 Description: Cannot find a parameter named worldViewProj. 579 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 580 Line: 768 581 Stack unwinding: <<beginning of stack>> 582 08:50:14: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 583 584 ----------------------------------- 585 Details: 586 ----------------------------------- 587 Error #: 7 588 Function: GpuProgramParameters::getParamIndex 589 Description: Cannot find a parameter named worldViewProj. 590 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 591 Line: 768 592 Stack unwinding: <<beginning of stack>> 593 08:50:14: An exception has been thrown! 594 595 ----------------------------------- 596 Details: 597 ----------------------------------- 598 Error #: 7 599 Function: GpuProgramParameters::getParamIndex 600 Description: Cannot find a parameter named worldViewProj. 601 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 602 Line: 768 603 Stack unwinding: <<beginning of stack>> 604 08:50:14: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 605 606 ----------------------------------- 607 Details: 608 ----------------------------------- 609 Error #: 7 610 Function: GpuProgramParameters::getParamIndex 611 Description: Cannot find a parameter named worldViewProj. 612 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 613 Line: 768 614 Stack unwinding: <<beginning of stack>> 615 08:50:14: Parsing script RaytraceDemo.material 616 08:50:14: Parsing script stairs.material 617 08:50:14: Parsing script X3D.material 618 08:50:14: Parsing script GameTools_Glow.compositor 619 08:50:14: Parsing script GameTools_ToneMap.compositor 620 08:50:14: Parsing script sample.fontdef 621 08:50:14: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 622 08:50:14: Parsing script GameTools.particle 623 08:50:14: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 624 08:50:14: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 625 08:50:14: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 626 08:50:14: Parsing script Compositor.overlay 627 08:50:14: Parsing script DP3.overlay 628 08:50:14: Parsing script Example-CubeMapping.overlay 629 08:50:14: Parsing script Example-DynTex.overlay 630 08:50:14: Parsing script Example-Water.overlay 631 08:50:14: Parsing script FullScreen.overlay 632 08:50:14: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 633 08:50:14: Parsing script Shadows.overlay 634 08:50:14: Finished parsing scripts for resource group General 635 08:50:14: Parsing scripts for resource group Internal 636 08:50:14: Finished parsing scripts for resource group Internal 637 08:50:14: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 638 08:50:14: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 639 08:50:14: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 640 08:50:14: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 641 08:50:14: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 642 08:50:14: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 643 08:50:14: Mesh: Loading sphere.mesh. 644 08:50:14: An exception has been thrown! 623 645 624 646 ----------------------------------- … … 631 653 Line: 583 632 654 Stack unwinding: <<beginning of stack>> 633 20:04:58: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown!655 08:50:14: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 634 656 635 657 ----------------------------------- … … 642 664 Line: 583 643 665 Stack unwinding: <<beginning of stack>> 644 20:04:58: An exception has been thrown!666 08:50:14: An exception has been thrown! 645 667 646 668 ----------------------------------- … … 653 675 Line: 583 654 676 Stack unwinding: <<beginning of stack>> 655 20:04:58: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown!677 08:50:14: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 656 678 657 679 ----------------------------------- … … 664 686 Line: 583 665 687 Stack unwinding: <<beginning of stack>> 666 20:04:58: An exception has been thrown!688 08:50:14: An exception has been thrown! 667 689 668 690 ----------------------------------- … … 675 697 Line: 583 676 698 Stack unwinding: <<beginning of stack>> 677 20:04:58: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown!699 08:50:14: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 678 700 679 701 ----------------------------------- … … 686 708 Line: 583 687 709 Stack unwinding: <<beginning of stack>> 688 20:04:58: An exception has been thrown!710 08:50:14: An exception has been thrown! 689 711 690 712 ----------------------------------- … … 697 719 Line: 583 698 720 Stack unwinding: <<beginning of stack>> 699 20:04:58: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown!721 08:50:14: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 700 722 701 723 ----------------------------------- … … 708 730 Line: 583 709 731 Stack unwinding: <<beginning of stack>> 710 20:04:58: Creating viewport on target 'rtt/2327904', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0711 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256712 20:04:58: Creating viewport on target 'rtt/2328032', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0713 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256714 20:04:58: Creating viewport on target 'rtt/2329792', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0715 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256716 20:04:58: Creating viewport on target 'rtt/2329856', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0717 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256718 20:04:58: Creating viewport on target 'rtt/2329920', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0719 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256720 20:04:58: Creating viewport on target 'rtt/2329984', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0721 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256722 20:04:58: WARNING: Texture instance 'sphere_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.723 20:04:58: Creating viewport on target 'rtt/2244000', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0724 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256725 20:04:58: Creating viewport on target 'rtt/2244064', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0726 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256727 20:04:58: Creating viewport on target 'rtt/2244128', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0728 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256729 20:04:58: Creating viewport on target 'rtt/2244192', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0730 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256731 20:04:58: Creating viewport on target 'rtt/2244256', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0732 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256733 20:04:58: Creating viewport on target 'rtt/2244320', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0734 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256735 20:04:58: WARNING: Texture instance 'sphere_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.736 20:04:58: Creating viewport on target 'rtt/2245376', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0737 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 738 20:04:58: Creating viewport on target 'rtt/2245440', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0739 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 740 20:04:58: Creating viewport on target 'rtt/2245504', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0741 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 742 20:04:58: Creating viewport on target 'rtt/2245568', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0743 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 744 20:04:58: Creating viewport on target 'rtt/2245632', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0745 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 746 20:04:58: Creating viewport on target 'rtt/2245696', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0747 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 748 20:04:58: Creating viewport on target 'rtt/2246144', rendering from camera 'sphere_SE_0_PHOTONMAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0749 20:04:58: Viewport for camera 'sphere_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 64 H: 64 750 20:04:58: sphere_SE_0_CAUSTICCUBEMAP map: sphere_SE_0_PHOTONMAP material: GameTools/CauTrisphere_SE_0_clone751 20:04:58: Win32Input8: DirectInput Activation Starts752 20:04:58: Win32Input8: Establishing keyboard input.753 20:04:58: Win32Input8: Keyboard input established.754 20:04:58: Win32Input8: Initializing mouse input in immediate mode.755 20:04:58: Win32Input8: Mouse input in immediate mode initialized.756 20:04:58: Win32Input8: DirectInput OK.757 20:04:58: WARNING: Mesh instance 'FullScreenGrid' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded.758 20:04:58: WARNING: Texture instance 'sphere_SE_0_PHOTONMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded.759 20:04:58: WARNING: Texture instance 'sphere_SE_0_CAUSTICCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded.760 20:05:31: Unregistering ResourceManager for type BspLevel761 20:05:31: Render Target 'rtt/2246144' Average FPS: 387.524 Best FPS: 394.605 Worst FPS: 241.517 762 20:05:31: Render Target 'rtt/2245376' Average FPS: 64.6619 Best FPS: 66.271 Worst FPS: 40.959763 20:05:31: Render Target 'rtt/2245440' Average FPS: 64.6779 Best FPS: 66.271 Worst FPS: 40.8367 764 20:05:31: Render Target 'rtt/2245504' Average FPS: 64.6496 Best FPS: 66.3366 Worst FPS: 40.715765 20:05:31: Render Target 'rtt/2245568' Average FPS: 64.6788 Best FPS: 66.271 Worst FPS: 40.5941 766 20:05:31: Render Target 'rtt/2245632' Average FPS: 64.6663 Best FPS: 66.3366 Worst FPS: 40.4738 767 20:05:31: Render Target 'rtt/2245696' Average FPS: 64.6908 Best FPS: 66.4683 Worst FPS: 40.3543 768 20:05:31: Render Target 'rtt/2244000' Average FPS: 0 Best FPS: 0 Worst FPS: 999 769 20:05:31: Render Target 'rtt/2244064' Average FPS: 0 Best FPS: 0 Worst FPS: 999 770 20:05:31: Render Target 'rtt/2244128' Average FPS: 0 Best FPS: 0 Worst FPS: 999 771 20:05:31: Render Target 'rtt/2244192' Average FPS: 0 Best FPS: 0 Worst FPS: 999 772 20:05:31: Render Target 'rtt/2244256' Average FPS: 0 Best FPS: 0 Worst FPS: 999 773 20:05:31: Render Target 'rtt/2244320' Average FPS: 0 Best FPS: 0 Worst FPS: 999 774 20:05:31: Render Target 'rtt/2327904' Average FPS: 0 Best FPS: 0 Worst FPS: 999 775 20:05:31: Render Target 'rtt/2328032' Average FPS: 0 Best FPS: 0 Worst FPS: 999 776 20:05:31: Render Target 'rtt/2329792' Average FPS: 0 Best FPS: 0 Worst FPS: 999 777 20:05:31: Render Target 'rtt/2329856' Average FPS: 0 Best FPS: 0 Worst FPS: 999 778 20:05:31: Render Target 'rtt/2329920' Average FPS: 0 Best FPS: 0 Worst FPS: 999 779 20:05:31: Render Target 'rtt/2329984' Average FPS: 0 Best FPS: 0 Worst FPS: 999 780 20:05:31: *-*-* OGRE Shutdown781 20:05:31: Unregistering ResourceManager for type Compositor782 20:05:31: Unregistering ResourceManager for type Font783 20:05:31: Unregistering ResourceManager for type Skeleton784 20:05:31: Unregistering ResourceManager for type Mesh785 20:05:31: Unregistering ResourceManager for type HighLevelGpuProgram786 20:05:31: Unloading library .\Plugin_CgProgramManager787 20:05:31: Unloading library .\Plugin_OctreeSceneManager788 20:05:31: Unloading library .\Plugin_BSPSceneManager789 20:05:31: Unloading library .\Plugin_ParticleFX790 20:05:31: Render Target 'OGRE Render Window' Average FPS: 387.683 Best FPS: 394.816 Worst FPS: 246.753791 20:05:31: D3D9 : Shutting down cleanly.792 20:05:31: Unregistering ResourceManager for type Texture793 20:05:31: Unregistering ResourceManager for type GpuProgram794 20:05:31: D3D9 : Direct3D9 Rendering Subsystem destroyed.795 20:05:31: Unloading library .\RenderSystem_Direct3D9796 20:05:31: Unregistering ResourceManager for type Material797 20:05:31: Unloading library OgrePlatform.dll732 08:50:14: Creating viewport on target 'rtt/2346464', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 733 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 734 08:50:14: Creating viewport on target 'rtt/2300736', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 735 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 736 08:50:14: Creating viewport on target 'rtt/2300800', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 737 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 738 08:50:14: Creating viewport on target 'rtt/2300864', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 739 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 740 08:50:14: Creating viewport on target 'rtt/2300928', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 741 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 742 08:50:14: Creating viewport on target 'rtt/2300992', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 743 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 744 08:50:14: WARNING: Texture instance 'sphere_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. 745 08:50:14: Creating viewport on target 'rtt/2301728', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 746 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 747 08:50:14: Creating viewport on target 'rtt/2301792', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 748 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 749 08:50:14: Creating viewport on target 'rtt/2301856', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 750 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 751 08:50:14: Creating viewport on target 'rtt/2301920', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 752 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 753 08:50:14: Creating viewport on target 'rtt/2301984', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 754 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 755 08:50:14: Creating viewport on target 'rtt/2302048', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 756 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 757 08:50:14: WARNING: Texture instance 'sphere_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. 758 08:50:14: Creating viewport on target 'rtt/2302816', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 759 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 760 08:50:14: Creating viewport on target 'rtt/2265376', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 761 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 762 08:50:14: Creating viewport on target 'rtt/2265440', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 763 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 764 08:50:14: Creating viewport on target 'rtt/2265504', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 765 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 766 08:50:14: Creating viewport on target 'rtt/2265568', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 767 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 768 08:50:14: Creating viewport on target 'rtt/2265632', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 769 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 770 08:50:14: Creating viewport on target 'rtt/2266208', rendering from camera 'sphere_SE_0_PHOTONMAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 771 08:50:14: Viewport for camera 'sphere_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 772 08:50:14: sphere_SE_0_CAUSTICCUBEMAP map: sphere_SE_0_PHOTONMAP material: GameTools/CauTrisphere_SE_0_clone 773 08:50:14: Win32Input8: DirectInput Activation Starts 774 08:50:14: Win32Input8: Establishing keyboard input. 775 08:50:14: Win32Input8: Keyboard input established. 776 08:50:14: Win32Input8: Initializing mouse input in immediate mode. 777 08:50:14: Win32Input8: Mouse input in immediate mode initialized. 778 08:50:14: Win32Input8: DirectInput OK. 779 08:50:14: WARNING: Mesh instance 'FullScreenGrid' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 780 08:50:14: WARNING: Texture instance 'sphere_SE_0_PHOTONMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 781 08:50:14: WARNING: Texture instance 'sphere_SE_0_CAUSTICCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 782 08:50:21: Unregistering ResourceManager for type BspLevel 783 08:50:21: Render Target 'rtt/2266208' Average FPS: 400.1 Best FPS: 452.547 Worst FPS: 229.312 784 08:50:21: Render Target 'rtt/2302816' Average FPS: 66.9028 Best FPS: 75.3221 Worst FPS: 39.1389 785 08:50:21: Render Target 'rtt/2265376' Average FPS: 66.8135 Best FPS: 75.2475 Worst FPS: 38.8834 786 08:50:21: Render Target 'rtt/2265440' Average FPS: 66.8122 Best FPS: 75.2475 Worst FPS: 38.6905 787 08:50:21: Render Target 'rtt/2265504' Average FPS: 66.8262 Best FPS: 75.2475 Worst FPS: 38.5376 788 08:50:21: Render Target 'rtt/2265568' Average FPS: 66.8519 Best FPS: 75.3221 Worst FPS: 38.4236 789 08:50:21: Render Target 'rtt/2265632' Average FPS: 66.858 Best FPS: 75.3221 Worst FPS: 38.3104 790 08:50:21: Render Target 'rtt/2301728' Average FPS: 10.6566 Best FPS: 13.1703 Worst FPS: 4.81232 791 08:50:21: Render Target 'rtt/2301792' Average FPS: 7.83934 Best FPS: 9.35454 Worst FPS: 4.35161 792 08:50:21: Render Target 'rtt/2301856' Average FPS: 8.98519 Best FPS: 13.6054 Worst FPS: 2.58844 793 08:50:21: Render Target 'rtt/2301920' Average FPS: 10.4154 Best FPS: 11.396 Worst FPS: 4.44774 794 08:50:21: Render Target 'rtt/2301984' Average FPS: 8.05231 Best FPS: 11.2254 Worst FPS: 2.3166 795 08:50:21: Render Target 'rtt/2302048' Average FPS: 10.065 Best FPS: 11.976 Worst FPS: 4.83481 796 08:50:21: Render Target 'rtt/2346464' Average FPS: 6.15098 Best FPS: 7.52587 Worst FPS: 3.46741 797 08:50:21: Render Target 'rtt/2300736' Average FPS: 5.85933 Best FPS: 6.77638 Worst FPS: 3.76648 798 08:50:21: Render Target 'rtt/2300800' Average FPS: 3.78998 Best FPS: 6.89655 Worst FPS: 1.92926 799 08:50:21: Render Target 'rtt/2300864' Average FPS: 5.05615 Best FPS: 7.72947 Worst FPS: 3.89105 800 08:50:21: Render Target 'rtt/2300928' Average FPS: 4.86086 Best FPS: 7.17131 Worst FPS: 3.80228 801 08:50:21: Render Target 'rtt/2300992' Average FPS: 7.02867 Best FPS: 7.75194 Worst FPS: 3.58102 802 08:50:21: *-*-* OGRE Shutdown 803 08:50:21: Unregistering ResourceManager for type Compositor 804 08:50:21: Unregistering ResourceManager for type Font 805 08:50:21: Unregistering ResourceManager for type Skeleton 806 08:50:21: Unregistering ResourceManager for type Mesh 807 08:50:21: Unregistering ResourceManager for type HighLevelGpuProgram 808 08:50:21: Unloading library .\Plugin_CgProgramManager 809 08:50:21: Unloading library .\Plugin_OctreeSceneManager 810 08:50:21: Unloading library .\Plugin_BSPSceneManager 811 08:50:21: Unloading library .\Plugin_ParticleFX 812 08:50:21: Render Target 'OGRE Render Window' Average FPS: 400.076 Best FPS: 452.547 Worst FPS: 228.543 813 08:50:21: D3D9 : Shutting down cleanly. 814 08:50:21: Unregistering ResourceManager for type Texture 815 08:50:21: Unregistering ResourceManager for type GpuProgram 816 08:50:21: D3D9 : Direct3D9 Rendering Subsystem destroyed. 817 08:50:21: Unloading library .\RenderSystem_Direct3D9 818 08:50:21: Unregistering ResourceManager for type Material 819 08:50:21: Unloading library OgrePlatform.dll -
GTP/trunk/App/Demos/Illum/Ogre/src/CausticTest/include/CausticTest.h
r1450 r1487 113 113 114 114 public: 115 virtual void go(void)116 {117 if (!setup())118 return;119 120 renderScene();121 122 // clean up123 destroyScene();124 }125 126 115 127 116 protected: 128 117 SceneNode* mainLightNode; 129 118 SceneNode* sphereNode; 130 131 void renderScene(){132 133 mWindow->resetStatistics();134 while(true){135 136 137 #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32138 // Pump events on Win32139 MSG msg;140 while( PeekMessage( &msg, NULL, 0U, 0U, PM_REMOVE ) )141 {142 TranslateMessage( &msg );143 DispatchMessage( &msg );144 }145 146 #endif147 148 if(!mRoot->_fireFrameStarted()){149 break;150 }151 unsigned long framenum = mRoot->getCurrentFrameNumber();152 153 OgreIlluminationManager::getSingleton().update(framenum, mWindow);154 155 //mRoot->renderOneFrame();156 mRoot->_updateAllRenderTargets();157 158 mRoot->_fireFrameEnded();159 160 }161 }162 119 163 120 void createPostproc() … … 191 148 // Skybox 192 149 mSceneMgr->setSkyBox(true, "Examples/MorningSkyBox"); 193 150 /* 194 151 SceneNode* rootNode = mSceneMgr->getRootSceneNode(); 195 152 … … 219 176 220 177 createPlane("ground", "TestPlane", Vector3(0,0,0), Vector2(500,500)); 221 178 */ 222 179 OgreIlluminationManager::getSingleton().initTechniques(); 223 180 … … 253 210 sphereNode 254 211 ); 255 mRoot->addFrameListener( mFrameListener);256 //mRoot->addFrameListener(&OgreIlluminationManager::getSingleton());257 212 mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 213 mRoot->addFrameListener(mFrameListener); 214 258 215 } 259 216 -
GTP/trunk/App/Demos/Illum/Ogre/src/GameToolsParticleDemo/include/GameToolsParticleDemo.h
r1442 r1487 58 58 59 59 public: 60 virtual void go(void)60 /* virtual void go(void) 61 61 { 62 62 if (!setup()) … … 67 67 // clean up 68 68 destroyScene(); 69 } 69 }*/ 70 70 71 71 protected: 72 72 SceneNode* kupolaNode; 73 73 SceneNode* mainLightNode; 74 74 /* 75 75 void renderScene(){ 76 76 … … 103 103 104 104 } 105 } 105 }*/ 106 106 107 107 void createPostproc() … … 200 200 mFrameListener= new ParticleDemoFrameListener(mWindow, 201 201 mCamera ); 202 203 204 202 mRoot->addFrameListener(mFrameListener); 203 mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 204 } 205 205 206 206 }; -
GTP/trunk/App/Demos/Illum/Ogre/src/GameToolsRaytraceDemo/include/GameToolsRaytraceDemo.h
r1349 r1487 145 145 146 146 public: 147 virtual void go(void)147 /* virtual void go(void) 148 148 { 149 149 if (!setup()) … … 155 155 destroyScene(); 156 156 } 157 157 */ 158 158 159 159 protected: … … 164 164 SceneNode* copperSphereNode; 165 165 SceneNode* aluSphereNode; 166 166 /* 167 167 void renderScene(){ 168 168 … … 195 195 196 196 } 197 } 197 }*/ 198 198 199 199 void createPostproc() … … 342 342 aluSphereNode); 343 343 mRoot->addFrameListener(mFrameListener); 344 //mRoot->addFrameListener(&OgreIlluminationManager::getSingleton());344 mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 345 345 346 346 }
Note: See TracChangeset
for help on using the changeset viewer.