Changeset 2179
- Timestamp:
- 03/01/07 18:04:37 (18 years ago)
- Location:
- GTP/trunk/App/Demos/Illum/Ogre
- Files:
-
- 1 deleted
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPBasic.material
r2040 r2179 115 115 } 116 116 } 117 118 material GTP/Basic/Distance_Normalized 119 { 120 technique 121 { 122 pass 123 { 124 cull_hardware clockwise 125 vertex_program_ref GTP/Basic/CPos_VS 126 { 127 param_named_auto WorldViewProj worldviewproj_matrix 128 param_named_auto WorldView worldview_matrix 129 } 130 fragment_program_ref GTP/Basic/CDistNorm_PS 131 { 132 param_named_auto farPlane far_clip_distance 133 } 134 } 135 } 136 } 137 138 material GTP/Basic/Distance_NormalizedCCW : GTP/Basic/Distance_Normalized 139 { 140 technique 0 141 { 142 pass 0 143 { 144 cull_hardware anticlockwise 145 } 146 } 147 } 148 149 material GTP/Basic/ShadowReciever/Depth 150 { 151 technique 152 { 153 pass 154 { 155 lighting off 156 IllumTechniques 157 { 158 RenderTechnique DepthShadowReciever 159 { 160 max_light_count 1 161 vertex_program_name GTP/Basic/LightVPos_VS 162 fragment_program_name GTP/Basic/SM/Depth_PS 163 set_light_view false 164 set_light_farplane false 165 } 166 } 167 } 168 } 169 } -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPBasic.program
r2054 r2179 119 119 } 120 120 121 fragment_program GTP/Basic/CDistNorm_PS hlsl 122 { 123 source GTPBasic_PS.hlsl 124 entry_point CDistNorm 125 target ps_2_0 126 } 127 121 128 fragment_program GTP/Basic/Plain_PS hlsl 122 129 { -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPBasic_PS.hlsl
r2024 r2179 28 28 { 29 29 float4 pos = IN.VPosition / IN.VPosition.w; 30 return float4(pos.z, pos.z * pos.z, 1, 1);30 return float4(pos.z, pos.z * pos.z, 0, pos.z); 31 31 } 32 32 … … 39 39 { 40 40 float dist = length(IN.CPos.xyz); 41 return float4(dist, dist * dist, 1, dist); 42 } 43 44 float4 CDistNorm(CPos_OUT IN, 45 uniform float farPlane) : COLOR 46 { 47 float dist = length(IN.CPos.xyz) / farPlane; 41 48 return float4(dist, dist * dist, 1, dist); 42 49 } -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPBasic_VS.hlsl
r2054 r2179 149 149 { 150 150 VPos_OUT OUT; 151 OUT.VPos = OUT. 151 OUT.VPos = OUT.VPosition = mul(WorldViewProj, position); 152 152 return OUT; 153 153 } … … 224 224 LightVPos_OUT LightVPos(float4 position : POSITION0, 225 225 uniform float4x4 WorldViewProj, 226 uniform float4x4 LightWorldViewProj) 226 uniform float4x4 LightViewProj, 227 uniform float4x4 World) 227 228 { 228 229 LightVPos_OUT OUT; 229 230 OUT.VPos = mul(WorldViewProj, position); 230 OUT.LightVPos = mul(LightWorldViewProj, position); 231 float4 WPos = mul(World, position); 232 OUT.LightVPos = mul(LightViewProj, WPos); 231 233 return OUT; 232 234 } … … 242 244 LightCPos_OUT LightCPos(float4 position : POSITION0, 243 245 uniform float4x4 WorldViewProj, 244 uniform float4x4 LightWorldViewProj, 245 uniform float4x4 LightWorldView) 246 uniform float4x4 World, 247 uniform float4x4 LightViewProj, 248 uniform float4x4 LightView) 246 249 { 247 250 LightCPos_OUT OUT; 248 251 OUT.VPos = mul(WorldViewProj, position); 249 OUT.LightVPos = mul(LightWorldViewProj, position); 250 OUT.LightCPos = mul(LightWorldView, position); 251 return OUT; 252 } 252 float4 WPos = mul(World, position); 253 OUT.LightVPos = mul(LightViewProj, WPos); 254 OUT.LightCPos = mul(LightView, WPos); 255 return OUT; 256 } -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPShadowMap_PS.hlsl
r2024 r2179 15 15 #define DEPTH_BIAS_VSM 0.001 16 16 #define DEPTH_EPSILON 0.001 17 #define DIST_BIAS 0. 00117 #define DIST_BIAS 0.1 18 18 #define DIST_BIAS_VSM 0.001 19 19 #define DIST_EPSILON 0.001 20 20 21 const float4 shadowColor = float4(0.85,0.85,0.85,1); 21 #define shadowColor float4(0.85,0.85,0.85,1) 22 22 23 23 float4 shadowMapDepth(LightVPos_OUT IN, … … 25 25 { 26 26 float4 light = shadowColor; 27 float4 pos = (IN.LightVPos / IN.LightVPos.w); 28 if( pos.z > 0.0) 27 if( IN.LightVPos.z > 0.0) 29 28 { 30 pos.xy = (pos.xy + 1.0) / 2.0; 29 float4 pos = (IN.LightVPos / IN.LightVPos.w); 30 pos.xy = (pos.xy + 1.0) / 2.0; 31 31 pos.y = 1.0 - pos.y; 32 32 float storedDepth = tex2D(shadowMap, pos.xy).r; 33 34 if(pos.z - DEPTH_BIAS <= storedDepth.r) 35 light = 1; 33 pos.z -= DIST_BIAS; 34 light = max(pos.z <= storedDepth.r, shadowColor); 36 35 } 37 38 36 return light; 39 37 } … … 74 72 } 75 73 76 float4 shadowMapDist(LightCPos_OUT IN, 77 uniform sampler2D shadowMap) : COLOR 74 float4 shadowMapDist(LightCPos_OUT IN, 75 //uniform float lightFarPlane, 76 uniform sampler2D shadowMap) : COLOR 78 77 { 79 float4 light = shadowColor; 80 float4 pos = (IN.LightVPos / IN.LightVPos.w); 78 float4 light = shadowColor; 81 79 82 if( pos.z > 0.0)80 if( IN.LightVPos.z > 0.0) 83 81 { 84 //float d = length(pos.xy); 82 float4 pos = (IN.LightVPos / IN.LightVPos.w); 83 //float d = length(pos.xy); 85 84 //light = saturate((1.0 - d)/0.05); 86 85 //if(d <= 1.0) 87 { 88 float dist = length(IN.LightCPos.xyz); 89 pos.xy = (pos.xy + 1.0) / 2.0; 90 pos.y = 1.0 - pos.y; 91 float storedDist = tex2D(shadowMap, pos.xy).r; 92 dist -= DIST_BIAS; 93 94 if(dist <= storedDist); 95 light = 1; 96 } 97 } 98 86 //{ 87 float dist = length(IN.LightCPos.xyz) ; 88 pos.xy = (pos.xy + 1.0) / 2.0; 89 pos.y = 1.0 - pos.y; 90 float4 storedDist = tex2D(shadowMap, pos.xy); 91 dist -= DIST_BIAS; 92 light = max(dist <= storedDist.r, shadowColor); 93 //} 94 } 95 99 96 return light; 100 97 } … … 105 102 { 106 103 float4 light = float4(1,1,1,1); 107 108 float4 pos = (IN.LightVPos / IN.LightVPos.w);109 104 110 if( pos.z > 0.0)105 if( IN.LightVPos.z > 0.0) 111 106 { 112 //float d = length(pos.xy); 113 //light = saturate((1.0 - d)/0.05); 114 //if(d <= 1.0) 107 float4 pos = (IN.LightVPos / IN.LightVPos.w); 108 float d = length(pos.xy); 109 light = saturate((1.0 - d)/0.05); 110 if(d <= 1.0) 115 111 { 116 float dist = length(IN.LightCPos.xyz) / lightFarPlane;117 pos.xy = (pos.xy + 1.0) / 2.0;118 pos.y = 1.0 - pos.y;119 float4 storedDist = tex2D(shadowMap, pos.xy);120 dist -= DIST_BIAS_VSM;121 float lit_factor = light * (dist <= storedDist.r);112 float dist = length(IN.LightCPos.xyz) / lightFarPlane; 113 pos.xy = (pos.xy + 1.0) / 2.0; 114 pos.y = 1.0 - pos.y; 115 float4 storedDist = tex2D(shadowMap, pos.xy); 116 dist -= DIST_BIAS_VSM; 117 float lit_factor = light * (dist <= storedDist.r); 122 118 123 float M1 = storedDist.r;124 float M2 = storedDist.g;125 float v2 = min(max(M2 - M1 * M1, 0.0) + DIST_EPSILON, 1.0);126 float m_d = M1 - dist;119 float M1 = storedDist.r; 120 float M2 = storedDist.g; 121 float v2 = min(max(M2 - M1 * M1, 0.0) + DIST_EPSILON, 1.0); 122 float m_d = M1 - dist; 127 123 float pmax = v2 / (v2 + m_d * m_d); 128 124 129 125 // Adjust the light color based on the shadow attenuation 130 light = max(lit_factor, pmax); 131 132 } 126 light = max(lit_factor, pmax); 127 } 133 128 } 134 129 else -
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/difflab.material
r2175 r2179 123 123 { 124 124 max_light_count 3 125 vertex_program_name GameTools/ShadowMap/ShadowDistVS 126 fragment_program_name GameTools/ShadowMap/ShadowDistPS 127 set_light_view true 128 set_light_farplane true 125 vertex_program_name GTP/Basic/LightCPos_VS 126 fragment_program_name GTP/Basic/SM/Dist_VSM_PS 127 set_light_view true 128 set_light_farplane true 129 light_viewproj_param_name LightViewProj 130 light_view_param_name LightView 131 light_farplane_param_name lightFarPlane 132 world_view_proj_param_name WorldViewProj 133 world_param_name World 129 134 } 130 135 } … … 154 159 { 155 160 max_light_count 3 156 vertex_program_name GameTools/ShadowMap/ShadowDistVS 157 fragment_program_name GameTools/ShadowMap/ShadowDistPS 158 set_light_view true 159 set_light_farplane true 161 vertex_program_name GTP/Basic/LightCPos_VS 162 fragment_program_name GTP/Basic/SM/Dist_VSM_PS 163 set_light_view true 164 set_light_farplane true 165 light_viewproj_param_name LightViewProj 166 light_view_param_name LightView 167 light_farplane_param_name lightFarPlane 168 world_view_proj_param_name WorldViewProj 169 world_param_name World 160 170 } 161 171 } … … 206 216 { 207 217 max_light_count 3 208 vertex_program_name GameTools/ShadowMap/ShadowDistVS 209 fragment_program_name GameTools/ShadowMap/ShadowDistPS 210 set_light_view true 211 set_light_farplane true 218 vertex_program_name GTP/Basic/LightCPos_VS 219 fragment_program_name GTP/Basic/SM/Dist_VSM_PS 220 set_light_view true 221 set_light_farplane true 222 light_viewproj_param_name LightViewProj 223 light_view_param_name LightView 224 light_farplane_param_name lightFarPlane 225 world_view_proj_param_name WorldViewProj 226 world_param_name World 212 227 } 213 228 } … … 244 259 { 245 260 max_light_count 3 246 vertex_program_name GameTools/ShadowMap/ShadowDistVS 247 fragment_program_name GameTools/ShadowMap/ShadowDistPS 248 set_light_view true 249 set_light_farplane true 261 vertex_program_name GTP/Basic/LightCPos_VS 262 fragment_program_name GTP/Basic/SM/Dist_VSM_PS 263 set_light_view true 264 set_light_farplane true 265 light_viewproj_param_name LightViewProj 266 light_view_param_name LightView 267 light_farplane_param_name lightFarPlane 268 world_view_proj_param_name WorldViewProj 269 world_param_name World 250 270 } 251 271 } … … 300 320 { 301 321 max_light_count 3 302 vertex_program_name GameTools/ShadowMap/ShadowDistVS 303 fragment_program_name GameTools/ShadowMap/ShadowDistPS 304 set_light_view true 305 set_light_farplane true 322 vertex_program_name GTP/Basic/LightCPos_VS 323 fragment_program_name GTP/Basic/SM/Dist_VSM_PS 324 set_light_view true 325 set_light_farplane true 326 light_viewproj_param_name LightViewProj 327 light_view_param_name LightView 328 light_farplane_param_name lightFarPlane 329 world_view_proj_param_name WorldViewProj 330 world_param_name World 306 331 } 307 332 } -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log
r2175 r2179 1 1 7:48:03: Creating resource group General2 1 7:48:03: Creating resource group Internal3 1 7:48:03: Creating resource group Autodetect4 1 7:48:03: Registering ResourceManager for type Material5 1 7:48:03: Registering ResourceManager for type Mesh6 1 7:48:03: Registering ResourceManager for type Skeleton7 1 7:48:03: MovableObjectFactory for type 'ParticleSystem' registered.8 1 7:48:03: Loading library OgrePlatform_d.dll9 1 7:48:03: OverlayElementFactory for type Panel registered.10 1 7:48:03: OverlayElementFactory for type BorderPanel registered.11 1 7:48:03: OverlayElementFactory for type TextArea registered.12 1 7:48:03: Registering ResourceManager for type Font13 1 7:48:03: ArchiveFactory for archive type FileSystem registered.14 1 7:48:03: ArchiveFactory for archive type Zip registered.15 1 7:48:03: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 200516 1 7:48:03: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw17 1 7:48:03: Registering ResourceManager for type HighLevelGpuProgram18 1 7:48:03: Registering ResourceManager for type Compositor19 1 7:48:03: MovableObjectFactory for type 'Entity' registered.20 1 7:48:03: MovableObjectFactory for type 'Light' registered.21 1 7:48:03: MovableObjectFactory for type 'BillboardSet' registered.22 1 7:48:03: MovableObjectFactory for type 'ManualObject' registered.23 1 7:48:03: MovableObjectFactory for type 'BillboardChain' registered.24 1 7:48:03: MovableObjectFactory for type 'RibbonTrail' registered.25 1 7:48:03: Loading library .\RenderSystem_Direct3D926 1 7:48:03: D3D9 : Direct3D9 Rendering Subsystem created.27 1 7:48:03: D3D9: Driver Detection Starts28 1 7:48:03: D3D9: Driver Detection Ends29 1 7:48:03: Loading library .\Plugin_ParticleFX30 1 7:48:03: Particle Emitter Type 'Point' registered31 1 7:48:03: Particle Emitter Type 'Box' registered32 1 7:48:03: Particle Emitter Type 'Ellipsoid' registered33 1 7:48:03: Particle Emitter Type 'Cylinder' registered34 1 7:48:03: Particle Emitter Type 'Ring' registered35 1 7:48:03: Particle Emitter Type 'HollowEllipsoid' registered36 1 7:48:03: Particle Affector Type 'LinearForce' registered37 1 7:48:03: Particle Affector Type 'ColourFader' registered38 1 7:48:03: Particle Affector Type 'ColourFader2' registered39 1 7:48:03: Particle Affector Type 'ColourImage' registered40 1 7:48:03: Particle Affector Type 'ColourInterpolator' registered41 1 7:48:03: Particle Affector Type 'Scaler' registered42 1 7:48:03: Particle Affector Type 'Rotator' registered43 1 7:48:03: Particle Affector Type 'DirectionRandomiser' registered44 1 7:48:03: Particle Affector Type 'DeflectorPlane' registered45 1 7:48:03: Loading library .\Plugin_BSPSceneManager46 1 7:48:03: Registering ResourceManager for type BspLevel47 1 7:48:03: Loading library .\Plugin_OctreeSceneManager48 1 7:48:03: Loading library .\Plugin_CgProgramManager49 1 7:48:03: Loading library .\Plugin_VisibilitySceneManager50 1 7:48:07: *-*-* OGRE Initialising51 1 7:48:07: *-*-* Version 1.2.0 (Dagon)52 1 7:48:07: Creating resource group Bootstrap53 1 7:48:07: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'54 1 7:48:07: Creating resource group GTP_Basic55 1 7:48:07: Added resource location '../../Media/materials/GTPBasic' of type 'FileSystem' to resource group 'GTP_Basic'56 1 7:48:07: Creating resource group GTP_Caustic57 1 7:48:07: Added resource location '../../Media/materials/GTPCaustic' of type 'FileSystem' to resource group 'GTP_Caustic'58 1 7:48:07: Creating resource group GTP_Demo59 1 7:48:07: Added resource location '../../Media/Demo' of type 'FileSystem' to resource group 'GTP_Demo'60 1 7:48:07: Creating resource group GTP_Diffuse61 1 7:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/diffuse' of type 'FileSystem' to resource group 'GTP_Diffuse'62 1 7:48:07: Creating resource group GTP_EnvMap63 1 7:48:07: Added resource location '../../Media/materials/GTPEnvMap' of type 'FileSystem' to resource group 'GTP_EnvMap'64 1 7:48:07: Creating resource group GTP_MultiBounce_Shared65 1 7:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce' of type 'FileSystem' to resource group 'GTP_MultiBounce_Shared'66 1 7:48:07: Creating resource group GTP_MultipleReflection67 1 7:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflection' of type 'FileSystem' to resource group 'GTP_MultipleReflection'68 1 7:48:07: Creating resource group GTP_MultipleReflection_MinMax69 1 7:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflectionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleReflection_MinMax'70 1 7:48:07: Creating resource group GTP_MultipleRefraction71 1 7:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction' of type 'FileSystem' to resource group 'GTP_MultipleRefraction'72 1 7:48:07: Creating resource group GTP_MultipleRefraction2L73 1 7:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction2L' of type 'FileSystem' to resource group 'GTP_MultipleRefraction2L'74 1 7:48:07: Creating resource group GTP_Particles75 1 7:48:07: Added resource location '../../Media/materials/GTPParticles' of type 'FileSystem' to resource group 'GTP_Particles'76 1 7:48:07: Added resource location '../../Media' of type 'FileSystem' to resource group 'General'77 1 7:48:07: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General'78 1 7:48:07: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General'79 1 7:48:07: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General'80 1 7:48:07: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General'81 1 7:48:07: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General'82 1 7:48:07: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General'83 1 7:48:07: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General'84 1 7:48:07: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General'85 1 7:48:07: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'86 1 7:48:07: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General'87 1 7:48:07: Creating resource group PostProc88 1 7:48:07: Added resource location '../../Media/materials/GTPPostProc' of type 'FileSystem' to resource group 'PostProc'89 1 7:48:07: D3D9 : RenderSystem Option: Allow NVPerfHUD = No90 1 7:48:07: D3D9 : RenderSystem Option: Anti aliasing = None91 1 7:48:07: D3D9 : RenderSystem Option: Floating-point mode = Fastest92 1 7:48:07: D3D9 : RenderSystem Option: Full Screen = No93 1 7:48:07: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX294 1 7:48:07: D3D9 : RenderSystem Option: VSync = No95 1 7:48:07: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour96 1 7:48:07: D3D9 : Subsystem Initialising97 1 7:48:07: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false98 1 7:48:07: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp99 1 7:48:07: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.100 1 7:48:07: Registering ResourceManager for type Texture101 1 7:48:07: Registering ResourceManager for type GpuProgram102 1 7:48:07: RenderSystem capabilities103 1 7:48:07: -------------------------104 1 7:48:07: * Hardware generation of mipmaps: yes105 1 7:48:07: * Texture blending: yes106 1 7:48:07: * Anisotropic texture filtering: yes107 1 7:48:07: * Dot product texture operation: yes108 1 7:48:07: * Cube mapping: yes109 1 7:48:07: * Hardware stencil buffer: yes110 1 7:48:07: - Stencil depth: 8111 1 7:48:07: - Two sided stencil support: yes112 1 7:48:07: - Wrap stencil values: yes113 1 7:48:07: * Hardware vertex / index buffers: yes114 1 7:48:07: * Vertex programs: yes115 1 7:48:07: - Max vertex program version: vs_3_0116 1 7:48:07: * Fragment programs: yes117 1 7:48:07: - Max fragment program version: ps_3_0118 1 7:48:07: * Texture Compression: yes119 1 7:48:07: - DXT: yes120 1 7:48:07: - VTC: no121 1 7:48:07: * Scissor Rectangle: yes122 1 7:48:07: * Hardware Occlusion Query: yes123 1 7:48:07: * User clip planes: yes124 1 7:48:07: * VET_UBYTE4 vertex element type: yes125 1 7:48:07: * Infinite far plane projection: yes126 1 7:48:07: * Hardware render-to-texture: yes127 1 7:48:07: * Floating point textures: yes128 1 7:48:07: * Non-power-of-two textures: yes129 1 7:48:07: * Volume textures: yes130 1 7:48:07: * Multiple Render Targets: 4131 1 7:48:07: * Max Point Size: 8192132 1 7:48:07: ***************************************133 1 7:48:07: *** D3D9 : Subsystem Initialised OK ***134 1 7:48:07: ***************************************135 1 7:48:07: ResourceBackgroundQueue - threading disabled136 1 7:48:07: Particle Renderer Type 'billboard' registered137 1 7:48:07: Particle Renderer Type 'sprite' registered138 1 7:48:07: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0139 1 7:48:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600140 1 7:48:07: Initialising resource group Bootstrap141 1 7:48:07: Parsing scripts for resource group Bootstrap142 1 7:48:07: Parsing script OgreCore.material143 1 7:48:07: Parsing script OgreProfiler.material144 1 7:48:07: Parsing script Ogre.fontdef145 1 7:48:07: Parsing script OgreDebugPanel.overlay146 1 7:48:07: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.147 1 7:48:07: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.148 1 7:48:07: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.149 1 7:48:07: Font TrebuchetMSBoldusing texture size 512x512150 1 7:48:07: Info: Freetype returned null for character 160 in font TrebuchetMSBold151 1 7:48:07: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.152 1 7:48:08: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.153 1 7:48:08: Parsing script OgreLoadingPanel.overlay154 1 7:48:08: Finished parsing scripts for resource group Bootstrap155 1 7:48:08: Initialising resource group General156 1 7:48:08: Parsing scripts for resource group General157 1 7:48:08: Parsing script GameTools.program158 1 7:48:08: Parsing script atlascube.material159 1 7:48:08: Parsing script colorcube.material160 1 7:48:08: Parsing script difflab.material161 1 7:48:08: An exception has been thrown!1 18:01:22: Creating resource group General 2 18:01:22: Creating resource group Internal 3 18:01:22: Creating resource group Autodetect 4 18:01:22: Registering ResourceManager for type Material 5 18:01:22: Registering ResourceManager for type Mesh 6 18:01:22: Registering ResourceManager for type Skeleton 7 18:01:22: MovableObjectFactory for type 'ParticleSystem' registered. 8 18:01:22: Loading library OgrePlatform_d.dll 9 18:01:22: OverlayElementFactory for type Panel registered. 10 18:01:22: OverlayElementFactory for type BorderPanel registered. 11 18:01:22: OverlayElementFactory for type TextArea registered. 12 18:01:22: Registering ResourceManager for type Font 13 18:01:22: ArchiveFactory for archive type FileSystem registered. 14 18:01:22: ArchiveFactory for archive type Zip registered. 15 18:01:22: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 18:01:22: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw 17 18:01:22: Registering ResourceManager for type HighLevelGpuProgram 18 18:01:22: Registering ResourceManager for type Compositor 19 18:01:22: MovableObjectFactory for type 'Entity' registered. 20 18:01:22: MovableObjectFactory for type 'Light' registered. 21 18:01:22: MovableObjectFactory for type 'BillboardSet' registered. 22 18:01:22: MovableObjectFactory for type 'ManualObject' registered. 23 18:01:22: MovableObjectFactory for type 'BillboardChain' registered. 24 18:01:22: MovableObjectFactory for type 'RibbonTrail' registered. 25 18:01:22: Loading library .\RenderSystem_Direct3D9 26 18:01:22: D3D9 : Direct3D9 Rendering Subsystem created. 27 18:01:22: D3D9: Driver Detection Starts 28 18:01:22: D3D9: Driver Detection Ends 29 18:01:22: Loading library .\Plugin_ParticleFX 30 18:01:22: Particle Emitter Type 'Point' registered 31 18:01:22: Particle Emitter Type 'Box' registered 32 18:01:22: Particle Emitter Type 'Ellipsoid' registered 33 18:01:22: Particle Emitter Type 'Cylinder' registered 34 18:01:22: Particle Emitter Type 'Ring' registered 35 18:01:22: Particle Emitter Type 'HollowEllipsoid' registered 36 18:01:22: Particle Affector Type 'LinearForce' registered 37 18:01:22: Particle Affector Type 'ColourFader' registered 38 18:01:22: Particle Affector Type 'ColourFader2' registered 39 18:01:22: Particle Affector Type 'ColourImage' registered 40 18:01:22: Particle Affector Type 'ColourInterpolator' registered 41 18:01:22: Particle Affector Type 'Scaler' registered 42 18:01:22: Particle Affector Type 'Rotator' registered 43 18:01:22: Particle Affector Type 'DirectionRandomiser' registered 44 18:01:22: Particle Affector Type 'DeflectorPlane' registered 45 18:01:22: Loading library .\Plugin_BSPSceneManager 46 18:01:22: Registering ResourceManager for type BspLevel 47 18:01:22: Loading library .\Plugin_OctreeSceneManager 48 18:01:22: Loading library .\Plugin_CgProgramManager 49 18:01:22: Loading library .\Plugin_VisibilitySceneManager 50 18:01:26: *-*-* OGRE Initialising 51 18:01:26: *-*-* Version 1.2.0 (Dagon) 52 18:01:26: Creating resource group Bootstrap 53 18:01:26: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 54 18:01:26: Creating resource group GTP_Basic 55 18:01:26: Added resource location '../../Media/materials/GTPBasic' of type 'FileSystem' to resource group 'GTP_Basic' 56 18:01:26: Creating resource group GTP_Caustic 57 18:01:26: Added resource location '../../Media/materials/GTPCaustic' of type 'FileSystem' to resource group 'GTP_Caustic' 58 18:01:26: Creating resource group GTP_Demo 59 18:01:26: Added resource location '../../Media/Demo' of type 'FileSystem' to resource group 'GTP_Demo' 60 18:01:26: Creating resource group GTP_Diffuse 61 18:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/diffuse' of type 'FileSystem' to resource group 'GTP_Diffuse' 62 18:01:26: Creating resource group GTP_EnvMap 63 18:01:26: Added resource location '../../Media/materials/GTPEnvMap' of type 'FileSystem' to resource group 'GTP_EnvMap' 64 18:01:26: Creating resource group GTP_MultiBounce_Shared 65 18:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce' of type 'FileSystem' to resource group 'GTP_MultiBounce_Shared' 66 18:01:26: Creating resource group GTP_MultipleReflection 67 18:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflection' of type 'FileSystem' to resource group 'GTP_MultipleReflection' 68 18:01:26: Creating resource group GTP_MultipleReflection_MinMax 69 18:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflectionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleReflection_MinMax' 70 18:01:26: Creating resource group GTP_MultipleRefraction 71 18:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction' of type 'FileSystem' to resource group 'GTP_MultipleRefraction' 72 18:01:26: Creating resource group GTP_MultipleRefraction2L 73 18:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction2L' of type 'FileSystem' to resource group 'GTP_MultipleRefraction2L' 74 18:01:26: Creating resource group GTP_Particles 75 18:01:26: Added resource location '../../Media/materials/GTPParticles' of type 'FileSystem' to resource group 'GTP_Particles' 76 18:01:26: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 77 18:01:26: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 78 18:01:26: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 79 18:01:26: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 80 18:01:26: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 81 18:01:26: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 82 18:01:26: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 83 18:01:26: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 84 18:01:26: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 85 18:01:26: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 86 18:01:26: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 87 18:01:26: Creating resource group PostProc 88 18:01:26: Added resource location '../../Media/materials/GTPPostProc' of type 'FileSystem' to resource group 'PostProc' 89 18:01:26: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 90 18:01:26: D3D9 : RenderSystem Option: Anti aliasing = None 91 18:01:26: D3D9 : RenderSystem Option: Floating-point mode = Fastest 92 18:01:26: D3D9 : RenderSystem Option: Full Screen = No 93 18:01:26: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 94 18:01:26: D3D9 : RenderSystem Option: VSync = No 95 18:01:26: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 96 18:01:26: D3D9 : Subsystem Initialising 97 18:01:26: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 98 18:01:26: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 99 18:01:26: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 100 18:01:26: Registering ResourceManager for type Texture 101 18:01:26: Registering ResourceManager for type GpuProgram 102 18:01:26: RenderSystem capabilities 103 18:01:26: ------------------------- 104 18:01:26: * Hardware generation of mipmaps: yes 105 18:01:26: * Texture blending: yes 106 18:01:26: * Anisotropic texture filtering: yes 107 18:01:26: * Dot product texture operation: yes 108 18:01:26: * Cube mapping: yes 109 18:01:26: * Hardware stencil buffer: yes 110 18:01:26: - Stencil depth: 8 111 18:01:26: - Two sided stencil support: yes 112 18:01:26: - Wrap stencil values: yes 113 18:01:26: * Hardware vertex / index buffers: yes 114 18:01:26: * Vertex programs: yes 115 18:01:26: - Max vertex program version: vs_3_0 116 18:01:26: * Fragment programs: yes 117 18:01:26: - Max fragment program version: ps_3_0 118 18:01:26: * Texture Compression: yes 119 18:01:26: - DXT: yes 120 18:01:26: - VTC: no 121 18:01:26: * Scissor Rectangle: yes 122 18:01:26: * Hardware Occlusion Query: yes 123 18:01:26: * User clip planes: yes 124 18:01:26: * VET_UBYTE4 vertex element type: yes 125 18:01:26: * Infinite far plane projection: yes 126 18:01:26: * Hardware render-to-texture: yes 127 18:01:26: * Floating point textures: yes 128 18:01:26: * Non-power-of-two textures: yes 129 18:01:26: * Volume textures: yes 130 18:01:26: * Multiple Render Targets: 4 131 18:01:26: * Max Point Size: 8192 132 18:01:26: *************************************** 133 18:01:26: *** D3D9 : Subsystem Initialised OK *** 134 18:01:26: *************************************** 135 18:01:26: ResourceBackgroundQueue - threading disabled 136 18:01:26: Particle Renderer Type 'billboard' registered 137 18:01:26: Particle Renderer Type 'sprite' registered 138 18:01:26: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 139 18:01:26: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 140 18:01:26: Initialising resource group Bootstrap 141 18:01:26: Parsing scripts for resource group Bootstrap 142 18:01:26: Parsing script OgreCore.material 143 18:01:26: Parsing script OgreProfiler.material 144 18:01:26: Parsing script Ogre.fontdef 145 18:01:26: Parsing script OgreDebugPanel.overlay 146 18:01:26: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 147 18:01:26: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 148 18:01:27: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 149 18:01:27: Font TrebuchetMSBoldusing texture size 512x512 150 18:01:27: Info: Freetype returned null for character 160 in font TrebuchetMSBold 151 18:01:27: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 152 18:01:27: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 153 18:01:27: Parsing script OgreLoadingPanel.overlay 154 18:01:27: Finished parsing scripts for resource group Bootstrap 155 18:01:27: Initialising resource group General 156 18:01:27: Parsing scripts for resource group General 157 18:01:27: Parsing script GameTools.program 158 18:01:27: Parsing script atlascube.material 159 18:01:27: Parsing script colorcube.material 160 18:01:27: Parsing script difflab.material 161 18:01:27: An exception has been thrown! 162 162 163 163 ----------------------------------- … … 170 170 Line: 779 171 171 Stack unwinding: <<beginning of stack>> 172 1 7:48:08: Error in material Difflab/TexturedPhong at line 34 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!172 18:01:27: Error in material Difflab/TexturedPhong at line 34 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 173 173 174 174 ----------------------------------- … … 181 181 Line: 779 182 182 Stack unwinding: <<beginning of stack>> 183 1 7:48:08: An exception has been thrown!183 18:01:27: An exception has been thrown! 184 184 185 185 ----------------------------------- … … 192 192 Line: 779 193 193 Stack unwinding: <<beginning of stack>> 194 1 7:48:08: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!194 18:01:27: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 195 195 196 196 ----------------------------------- … … 203 203 Line: 779 204 204 Stack unwinding: <<beginning of stack>> 205 1 7:48:08: An exception has been thrown!205 18:01:27: An exception has been thrown! 206 206 207 207 ----------------------------------- … … 214 214 Line: 779 215 215 Stack unwinding: <<beginning of stack>> 216 1 7:48:08: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!216 18:01:27: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 217 217 218 218 ----------------------------------- … … 225 225 Line: 779 226 226 Stack unwinding: <<beginning of stack>> 227 1 7:48:08: An exception has been thrown!227 18:01:27: An exception has been thrown! 228 228 229 229 ----------------------------------- … … 236 236 Line: 779 237 237 Stack unwinding: <<beginning of stack>> 238 1 7:48:08: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!238 18:01:27: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 239 239 240 240 ----------------------------------- … … 247 247 Line: 779 248 248 Stack unwinding: <<beginning of stack>> 249 1 7:48:08: An exception has been thrown!249 18:01:27: An exception has been thrown! 250 250 251 251 ----------------------------------- … … 258 258 Line: 779 259 259 Stack unwinding: <<beginning of stack>> 260 1 7:48:08: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!260 18:01:27: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 261 261 262 262 ----------------------------------- … … 269 269 Line: 779 270 270 Stack unwinding: <<beginning of stack>> 271 1 7:48:08: An exception has been thrown!271 18:01:27: An exception has been thrown! 272 272 273 273 ----------------------------------- … … 280 280 Line: 779 281 281 Stack unwinding: <<beginning of stack>> 282 1 7:48:08: Error in material Difflab/TexturedPhong at line 43 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!282 18:01:27: Error in material Difflab/TexturedPhong at line 43 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 283 283 284 284 ----------------------------------- … … 291 291 Line: 779 292 292 Stack unwinding: <<beginning of stack>> 293 1 7:48:08: An exception has been thrown!293 18:01:27: An exception has been thrown! 294 294 295 295 ----------------------------------- … … 302 302 Line: 779 303 303 Stack unwinding: <<beginning of stack>> 304 1 7:48:08: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!304 18:01:27: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 305 305 306 306 ----------------------------------- … … 313 313 Line: 779 314 314 Stack unwinding: <<beginning of stack>> 315 1 7:48:08: An exception has been thrown!315 18:01:27: An exception has been thrown! 316 316 317 317 ----------------------------------- … … 324 324 Line: 779 325 325 Stack unwinding: <<beginning of stack>> 326 1 7:48:08: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!326 18:01:27: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 327 327 328 328 ----------------------------------- … … 335 335 Line: 779 336 336 Stack unwinding: <<beginning of stack>> 337 1 7:48:08: An exception has been thrown!337 18:01:27: An exception has been thrown! 338 338 339 339 ----------------------------------- … … 346 346 Line: 779 347 347 Stack unwinding: <<beginning of stack>> 348 1 7:48:08: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!348 18:01:27: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 349 349 350 350 ----------------------------------- … … 357 357 Line: 779 358 358 Stack unwinding: <<beginning of stack>> 359 1 7:48:08: An exception has been thrown!359 18:01:27: An exception has been thrown! 360 360 361 361 ----------------------------------- … … 368 368 Line: 779 369 369 Stack unwinding: <<beginning of stack>> 370 1 7:48:08: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!370 18:01:27: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 371 371 372 372 ----------------------------------- … … 379 379 Line: 779 380 380 Stack unwinding: <<beginning of stack>> 381 1 7:48:08: An exception has been thrown!381 18:01:27: An exception has been thrown! 382 382 383 383 ----------------------------------- … … 390 390 Line: 779 391 391 Stack unwinding: <<beginning of stack>> 392 1 7:48:08: Error in material Difflab/TexturedPhong at line 52 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!392 18:01:27: Error in material Difflab/TexturedPhong at line 52 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 393 393 394 394 ----------------------------------- … … 401 401 Line: 779 402 402 Stack unwinding: <<beginning of stack>> 403 1 7:48:08: An exception has been thrown!403 18:01:27: An exception has been thrown! 404 404 405 405 ----------------------------------- … … 412 412 Line: 779 413 413 Stack unwinding: <<beginning of stack>> 414 1 7:48:08: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!414 18:01:27: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 415 415 416 416 ----------------------------------- … … 423 423 Line: 779 424 424 Stack unwinding: <<beginning of stack>> 425 1 7:48:08: An exception has been thrown!425 18:01:27: An exception has been thrown! 426 426 427 427 ----------------------------------- … … 434 434 Line: 779 435 435 Stack unwinding: <<beginning of stack>> 436 1 7:48:08: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!436 18:01:27: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 437 437 438 438 ----------------------------------- … … 445 445 Line: 779 446 446 Stack unwinding: <<beginning of stack>> 447 1 7:48:08: An exception has been thrown!447 18:01:27: An exception has been thrown! 448 448 449 449 ----------------------------------- … … 456 456 Line: 779 457 457 Stack unwinding: <<beginning of stack>> 458 1 7:48:08: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!458 18:01:27: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 459 459 460 460 ----------------------------------- … … 467 467 Line: 779 468 468 Stack unwinding: <<beginning of stack>> 469 1 7:48:08: An exception has been thrown!469 18:01:27: An exception has been thrown! 470 470 471 471 ----------------------------------- … … 478 478 Line: 779 479 479 Stack unwinding: <<beginning of stack>> 480 1 7:48:08: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!480 18:01:27: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 481 481 482 482 ----------------------------------- … … 489 489 Line: 779 490 490 Stack unwinding: <<beginning of stack>> 491 1 7:48:08: An exception has been thrown!491 18:01:27: An exception has been thrown! 492 492 493 493 ----------------------------------- … … 500 500 Line: 779 501 501 Stack unwinding: <<beginning of stack>> 502 1 7:48:08: Error in material Difflab/TexturedPhong at line 61 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!502 18:01:27: Error in material Difflab/TexturedPhong at line 61 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 503 503 504 504 ----------------------------------- … … 511 511 Line: 779 512 512 Stack unwinding: <<beginning of stack>> 513 1 7:48:08: An exception has been thrown!513 18:01:27: An exception has been thrown! 514 514 515 515 ----------------------------------- … … 522 522 Line: 779 523 523 Stack unwinding: <<beginning of stack>> 524 1 7:48:08: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!524 18:01:27: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 525 525 526 526 ----------------------------------- … … 533 533 Line: 779 534 534 Stack unwinding: <<beginning of stack>> 535 1 7:48:08: An exception has been thrown!535 18:01:27: An exception has been thrown! 536 536 537 537 ----------------------------------- … … 544 544 Line: 779 545 545 Stack unwinding: <<beginning of stack>> 546 1 7:48:08: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!546 18:01:27: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 547 547 548 548 ----------------------------------- … … 555 555 Line: 779 556 556 Stack unwinding: <<beginning of stack>> 557 1 7:48:08: An exception has been thrown!557 18:01:27: An exception has been thrown! 558 558 559 559 ----------------------------------- … … 566 566 Line: 779 567 567 Stack unwinding: <<beginning of stack>> 568 1 7:48:08: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!568 18:01:27: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 569 569 570 570 ----------------------------------- … … 577 577 Line: 779 578 578 Stack unwinding: <<beginning of stack>> 579 1 7:48:08: An exception has been thrown!579 18:01:27: An exception has been thrown! 580 580 581 581 ----------------------------------- … … 588 588 Line: 779 589 589 Stack unwinding: <<beginning of stack>> 590 1 7:48:08: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!590 18:01:27: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 591 591 592 592 ----------------------------------- … … 599 599 Line: 779 600 600 Stack unwinding: <<beginning of stack>> 601 1 7:48:08: An exception has been thrown!601 18:01:27: An exception has been thrown! 602 602 603 603 ----------------------------------- … … 610 610 Line: 779 611 611 Stack unwinding: <<beginning of stack>> 612 1 7:48:08: Error in material Difflab/TexturedPhong at line 70 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!612 18:01:27: Error in material Difflab/TexturedPhong at line 70 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 613 613 614 614 ----------------------------------- … … 621 621 Line: 779 622 622 Stack unwinding: <<beginning of stack>> 623 1 7:48:08: Parsing script diffscene.material624 1 7:48:08: An exception has been thrown!623 18:01:27: Parsing script diffscene.material 624 18:01:27: An exception has been thrown! 625 625 626 626 ----------------------------------- … … 633 633 Line: 779 634 634 Stack unwinding: <<beginning of stack>> 635 1 7:48:08: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!635 18:01:27: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 636 636 637 637 ----------------------------------- … … 644 644 Line: 779 645 645 Stack unwinding: <<beginning of stack>> 646 1 7:48:08: An exception has been thrown!646 18:01:27: An exception has been thrown! 647 647 648 648 ----------------------------------- … … 655 655 Line: 779 656 656 Stack unwinding: <<beginning of stack>> 657 1 7:48:08: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!657 18:01:27: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 658 658 659 659 ----------------------------------- … … 666 666 Line: 779 667 667 Stack unwinding: <<beginning of stack>> 668 1 7:48:08: An exception has been thrown!668 18:01:27: An exception has been thrown! 669 669 670 670 ----------------------------------- … … 677 677 Line: 779 678 678 Stack unwinding: <<beginning of stack>> 679 1 7:48:08: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!679 18:01:27: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 680 680 681 681 ----------------------------------- … … 688 688 Line: 779 689 689 Stack unwinding: <<beginning of stack>> 690 1 7:48:08: An exception has been thrown!690 18:01:27: An exception has been thrown! 691 691 692 692 ----------------------------------- … … 699 699 Line: 779 700 700 Stack unwinding: <<beginning of stack>> 701 1 7:48:08: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!701 18:01:27: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 702 702 703 703 ----------------------------------- … … 710 710 Line: 779 711 711 Stack unwinding: <<beginning of stack>> 712 1 7:48:08: An exception has been thrown!712 18:01:27: An exception has been thrown! 713 713 714 714 ----------------------------------- … … 721 721 Line: 779 722 722 Stack unwinding: <<beginning of stack>> 723 1 7:48:08: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!723 18:01:27: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 724 724 725 725 ----------------------------------- … … 732 732 Line: 779 733 733 Stack unwinding: <<beginning of stack>> 734 1 7:48:08: An exception has been thrown!734 18:01:27: An exception has been thrown! 735 735 736 736 ----------------------------------- … … 743 743 Line: 779 744 744 Stack unwinding: <<beginning of stack>> 745 1 7:48:08: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!745 18:01:27: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 746 746 747 747 ----------------------------------- … … 754 754 Line: 779 755 755 Stack unwinding: <<beginning of stack>> 756 1 7:48:08: An exception has been thrown!756 18:01:27: An exception has been thrown! 757 757 758 758 ----------------------------------- … … 765 765 Line: 779 766 766 Stack unwinding: <<beginning of stack>> 767 1 7:48:08: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!767 18:01:27: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 768 768 769 769 ----------------------------------- … … 776 776 Line: 779 777 777 Stack unwinding: <<beginning of stack>> 778 1 7:48:08: An exception has been thrown!778 18:01:27: An exception has been thrown! 779 779 780 780 ----------------------------------- … … 787 787 Line: 779 788 788 Stack unwinding: <<beginning of stack>> 789 1 7:48:08: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!789 18:01:27: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 790 790 791 791 ----------------------------------- … … 798 798 Line: 779 799 799 Stack unwinding: <<beginning of stack>> 800 1 7:48:08: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857801 1 7:48:08: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857802 1 7:48:08: Parsing script EnvMetals.material803 1 7:48:08: An exception has been thrown!800 18:01:27: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 801 18:01:27: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 802 18:01:27: Parsing script EnvMetals.material 803 18:01:27: An exception has been thrown! 804 804 805 805 ----------------------------------- … … 812 812 Line: 779 813 813 Stack unwinding: <<beginning of stack>> 814 1 7:48:08: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!814 18:01:27: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 815 815 816 816 ----------------------------------- … … 823 823 Line: 779 824 824 Stack unwinding: <<beginning of stack>> 825 1 7:48:08: An exception has been thrown!825 18:01:27: An exception has been thrown! 826 826 827 827 ----------------------------------- … … 834 834 Line: 779 835 835 Stack unwinding: <<beginning of stack>> 836 1 7:48:08: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!836 18:01:27: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 837 837 838 838 ----------------------------------- … … 845 845 Line: 779 846 846 Stack unwinding: <<beginning of stack>> 847 1 7:48:08: An exception has been thrown!847 18:01:27: An exception has been thrown! 848 848 849 849 ----------------------------------- … … 856 856 Line: 779 857 857 Stack unwinding: <<beginning of stack>> 858 1 7:48:08: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!858 18:01:27: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 859 859 860 860 ----------------------------------- … … 867 867 Line: 779 868 868 Stack unwinding: <<beginning of stack>> 869 1 7:48:08: An exception has been thrown!869 18:01:27: An exception has been thrown! 870 870 871 871 ----------------------------------- … … 878 878 Line: 779 879 879 Stack unwinding: <<beginning of stack>> 880 1 7:48:08: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!880 18:01:27: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 881 881 882 882 ----------------------------------- … … 889 889 Line: 779 890 890 Stack unwinding: <<beginning of stack>> 891 1 7:48:08: Parsing script GameTools.material892 1 7:48:08: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5)893 1 7:48:08: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend894 1 7:48:08: An exception has been thrown!891 18:01:27: Parsing script GameTools.material 892 18:01:27: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 893 18:01:27: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 894 18:01:27: An exception has been thrown! 895 895 896 896 ----------------------------------- … … 903 903 Line: 779 904 904 Stack unwinding: <<beginning of stack>> 905 1 7:48:08: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!905 18:01:27: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 906 906 907 907 ----------------------------------- … … 914 914 Line: 779 915 915 Stack unwinding: <<beginning of stack>> 916 1 7:48:08: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend917 1 7:48:08: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.918 1 7:48:08: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend919 1 7:48:08: Error in material GameTools/ShadowMapDistance at line 266 of GameTools.material: Bad scene_blend attribute, unrecognised parameter 'none'920 1 7:48:08: Parsing script GlassHead.material921 1 7:48:08: An exception has been thrown!916 18:01:27: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 917 18:01:27: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 918 18:01:27: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 919 18:01:27: Error in material GameTools/ShadowMapDistance at line 266 of GameTools.material: Bad scene_blend attribute, unrecognised parameter 'none' 920 18:01:27: Parsing script GlassHead.material 921 18:01:27: An exception has been thrown! 922 922 923 923 ----------------------------------- … … 930 930 Line: 779 931 931 Stack unwinding: <<beginning of stack>> 932 1 7:48:08: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!932 18:01:27: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 933 933 934 934 ----------------------------------- … … 941 941 Line: 779 942 942 Stack unwinding: <<beginning of stack>> 943 1 7:48:08: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.944 1 7:48:08: An exception has been thrown!943 18:01:27: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 944 18:01:27: An exception has been thrown! 945 945 946 946 ----------------------------------- … … 953 953 Line: 779 954 954 Stack unwinding: <<beginning of stack>> 955 1 7:48:08: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!955 18:01:27: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 956 956 957 957 ----------------------------------- … … 964 964 Line: 779 965 965 Stack unwinding: <<beginning of stack>> 966 1 7:48:08: An exception has been thrown!966 18:01:27: An exception has been thrown! 967 967 968 968 ----------------------------------- … … 975 975 Line: 779 976 976 Stack unwinding: <<beginning of stack>> 977 1 7:48:08: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!977 18:01:27: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 978 978 979 979 ----------------------------------- … … 986 986 Line: 779 987 987 Stack unwinding: <<beginning of stack>> 988 1 7:48:08: An exception has been thrown!988 18:01:27: An exception has been thrown! 989 989 990 990 ----------------------------------- … … 997 997 Line: 779 998 998 Stack unwinding: <<beginning of stack>> 999 1 7:48:08: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!999 18:01:27: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1000 1000 1001 1001 ----------------------------------- … … 1008 1008 Line: 779 1009 1009 Stack unwinding: <<beginning of stack>> 1010 1 7:48:08: Parsing script Glow.material1011 1 7:48:08: Error in material GameTools/PostProcBlack at line 7 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1012 1 7:48:08: Error in material GameTools/PostProcBlack at line 10 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc_Black has not been defined.1013 1 7:48:08: Error in material GameTools/PostProc1 at line 23 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1014 1 7:48:08: Error in material GameTools/PostProc1 at line 26 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc1_PS has not been defined.1015 1 7:48:08: Error in material GameTools/GlowCut at line 45 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1016 1 7:48:08: Error in material GameTools/GlowCut at line 48 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowCut_PS has not been defined.1017 1 7:48:08: Error in material GameTools/Luminance at line 75 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1018 1 7:48:08: Error in material GameTools/Luminance at line 78 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/Luminance_PS has not been defined.1019 1 7:48:08: Error in material GameTools/GlowBlurH at line 102 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1020 1 7:48:08: Error in material GameTools/GlowBlurH at line 105 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined.1021 1 7:48:08: Error in material GameTools/GlowBlurV at line 128 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1022 1 7:48:08: Error in material GameTools/GlowBlurV at line 131 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurV_PS has not been defined.1023 1 7:48:08: Error in material GameTools/GlowBlurHTB at line 154 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1024 1 7:48:08: Error in material GameTools/GlowBlurHTB at line 157 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined.1025 1 7:48:08: Error in material GameTools/TextureCopy at line 179 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1026 1 7:48:08: Error in material GameTools/TextureCopy at line 182 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/TextureCopy_PS has not been defined.1027 1 7:48:08: Error in material GameTools/GlowAdd at line 203 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1028 1 7:48:08: Error in material GameTools/GlowAdd at line 206 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowAdd_PS has not been defined.1029 1 7:48:08: Error in material GameTools/ToneMap at line 232 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1030 1 7:48:08: Error in material GameTools/ToneMap at line 235 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/ToneMap_PS has not been defined.1031 1 7:48:08: Parsing script hangar.material1032 1 7:48:08: Parsing script kupola.material1033 1 7:48:08: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1034 1 7:48:08: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1035 1 7:48:08: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1036 1 7:48:08: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1037 1 7:48:08: Parsing script Ogre.material1038 1 7:48:08: Parsing script RaytraceDemo.material1039 1 7:48:08: Parsing script stairs.material1040 1 7:48:08: Parsing script terito.material1041 1 7:48:08: Parsing script uvegfolyoso2.material1042 1 7:48:08: An exception has been thrown!1010 18:01:27: Parsing script Glow.material 1011 18:01:27: Error in material GameTools/PostProcBlack at line 7 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1012 18:01:27: Error in material GameTools/PostProcBlack at line 10 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc_Black has not been defined. 1013 18:01:27: Error in material GameTools/PostProc1 at line 23 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1014 18:01:27: Error in material GameTools/PostProc1 at line 26 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc1_PS has not been defined. 1015 18:01:27: Error in material GameTools/GlowCut at line 45 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1016 18:01:27: Error in material GameTools/GlowCut at line 48 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowCut_PS has not been defined. 1017 18:01:27: Error in material GameTools/Luminance at line 75 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1018 18:01:27: Error in material GameTools/Luminance at line 78 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/Luminance_PS has not been defined. 1019 18:01:27: Error in material GameTools/GlowBlurH at line 102 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1020 18:01:27: Error in material GameTools/GlowBlurH at line 105 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 1021 18:01:27: Error in material GameTools/GlowBlurV at line 128 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1022 18:01:27: Error in material GameTools/GlowBlurV at line 131 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurV_PS has not been defined. 1023 18:01:27: Error in material GameTools/GlowBlurHTB at line 154 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1024 18:01:27: Error in material GameTools/GlowBlurHTB at line 157 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 1025 18:01:27: Error in material GameTools/TextureCopy at line 179 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1026 18:01:27: Error in material GameTools/TextureCopy at line 182 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/TextureCopy_PS has not been defined. 1027 18:01:27: Error in material GameTools/GlowAdd at line 203 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1028 18:01:27: Error in material GameTools/GlowAdd at line 206 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowAdd_PS has not been defined. 1029 18:01:27: Error in material GameTools/ToneMap at line 232 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1030 18:01:27: Error in material GameTools/ToneMap at line 235 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/ToneMap_PS has not been defined. 1031 18:01:27: Parsing script hangar.material 1032 18:01:27: Parsing script kupola.material 1033 18:01:27: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1034 18:01:27: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1035 18:01:27: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1036 18:01:27: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1037 18:01:27: Parsing script Ogre.material 1038 18:01:27: Parsing script RaytraceDemo.material 1039 18:01:27: Parsing script stairs.material 1040 18:01:27: Parsing script terito.material 1041 18:01:27: Parsing script uvegfolyoso2.material 1042 18:01:27: An exception has been thrown! 1043 1043 1044 1044 ----------------------------------- … … 1051 1051 Line: 779 1052 1052 Stack unwinding: <<beginning of stack>> 1053 1 7:48:08: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1053 18:01:27: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1054 1054 1055 1055 ----------------------------------- … … 1062 1062 Line: 779 1063 1063 Stack unwinding: <<beginning of stack>> 1064 1 7:48:08: An exception has been thrown!1064 18:01:27: An exception has been thrown! 1065 1065 1066 1066 ----------------------------------- … … 1073 1073 Line: 779 1074 1074 Stack unwinding: <<beginning of stack>> 1075 1 7:48:08: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1075 18:01:27: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1076 1076 1077 1077 ----------------------------------- … … 1084 1084 Line: 779 1085 1085 Stack unwinding: <<beginning of stack>> 1086 1 7:48:08: An exception has been thrown!1086 18:01:27: An exception has been thrown! 1087 1087 1088 1088 ----------------------------------- … … 1095 1095 Line: 779 1096 1096 Stack unwinding: <<beginning of stack>> 1097 1 7:48:08: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1097 18:01:27: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1098 1098 1099 1099 ----------------------------------- … … 1106 1106 Line: 779 1107 1107 Stack unwinding: <<beginning of stack>> 1108 1 7:48:08: An exception has been thrown!1108 18:01:27: An exception has been thrown! 1109 1109 1110 1110 ----------------------------------- … … 1117 1117 Line: 779 1118 1118 Stack unwinding: <<beginning of stack>> 1119 1 7:48:08: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1119 18:01:27: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1120 1120 1121 1121 ----------------------------------- … … 1128 1128 Line: 779 1129 1129 Stack unwinding: <<beginning of stack>> 1130 1 7:48:08: An exception has been thrown!1130 18:01:27: An exception has been thrown! 1131 1131 1132 1132 ----------------------------------- … … 1139 1139 Line: 779 1140 1140 Stack unwinding: <<beginning of stack>> 1141 1 7:48:08: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1141 18:01:27: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1142 1142 1143 1143 ----------------------------------- … … 1150 1150 Line: 779 1151 1151 Stack unwinding: <<beginning of stack>> 1152 1 7:48:08: An exception has been thrown!1152 18:01:27: An exception has been thrown! 1153 1153 1154 1154 ----------------------------------- … … 1161 1161 Line: 779 1162 1162 Stack unwinding: <<beginning of stack>> 1163 1 7:48:08: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1163 18:01:27: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1164 1164 1165 1165 ----------------------------------- … … 1172 1172 Line: 779 1173 1173 Stack unwinding: <<beginning of stack>> 1174 1 7:48:08: An exception has been thrown!1174 18:01:27: An exception has been thrown! 1175 1175 1176 1176 ----------------------------------- … … 1183 1183 Line: 779 1184 1184 Stack unwinding: <<beginning of stack>> 1185 1 7:48:08: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1185 18:01:27: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1186 1186 1187 1187 ----------------------------------- … … 1194 1194 Line: 779 1195 1195 Stack unwinding: <<beginning of stack>> 1196 1 7:48:08: An exception has been thrown!1196 18:01:27: An exception has been thrown! 1197 1197 1198 1198 ----------------------------------- … … 1205 1205 Line: 779 1206 1206 Stack unwinding: <<beginning of stack>> 1207 1 7:48:08: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1207 18:01:27: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1208 1208 1209 1209 ----------------------------------- … … 1216 1216 Line: 779 1217 1217 Stack unwinding: <<beginning of stack>> 1218 1 7:48:08: An exception has been thrown!1218 18:01:27: An exception has been thrown! 1219 1219 1220 1220 ----------------------------------- … … 1227 1227 Line: 779 1228 1228 Stack unwinding: <<beginning of stack>> 1229 1 7:48:08: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1229 18:01:27: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1230 1230 1231 1231 ----------------------------------- … … 1238 1238 Line: 779 1239 1239 Stack unwinding: <<beginning of stack>> 1240 1 7:48:08: An exception has been thrown!1240 18:01:27: An exception has been thrown! 1241 1241 1242 1242 ----------------------------------- … … 1249 1249 Line: 779 1250 1250 Stack unwinding: <<beginning of stack>> 1251 1 7:48:08: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1251 18:01:27: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1252 1252 1253 1253 ----------------------------------- … … 1260 1260 Line: 779 1261 1261 Stack unwinding: <<beginning of stack>> 1262 1 7:48:08: An exception has been thrown!1262 18:01:27: An exception has been thrown! 1263 1263 1264 1264 ----------------------------------- … … 1271 1271 Line: 779 1272 1272 Stack unwinding: <<beginning of stack>> 1273 1 7:48:08: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1273 18:01:27: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1274 1274 1275 1275 ----------------------------------- … … 1282 1282 Line: 779 1283 1283 Stack unwinding: <<beginning of stack>> 1284 1 7:48:08: An exception has been thrown!1284 18:01:27: An exception has been thrown! 1285 1285 1286 1286 ----------------------------------- … … 1293 1293 Line: 779 1294 1294 Stack unwinding: <<beginning of stack>> 1295 1 7:48:08: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1295 18:01:27: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1296 1296 1297 1297 ----------------------------------- … … 1304 1304 Line: 779 1305 1305 Stack unwinding: <<beginning of stack>> 1306 1 7:48:08: An exception has been thrown!1306 18:01:27: An exception has been thrown! 1307 1307 1308 1308 ----------------------------------- … … 1315 1315 Line: 779 1316 1316 Stack unwinding: <<beginning of stack>> 1317 1 7:48:08: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1317 18:01:27: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1318 1318 1319 1319 ----------------------------------- … … 1326 1326 Line: 779 1327 1327 Stack unwinding: <<beginning of stack>> 1328 1 7:48:08: An exception has been thrown!1328 18:01:27: An exception has been thrown! 1329 1329 1330 1330 ----------------------------------- … … 1337 1337 Line: 779 1338 1338 Stack unwinding: <<beginning of stack>> 1339 1 7:48:08: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1339 18:01:27: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1340 1340 1341 1341 ----------------------------------- … … 1348 1348 Line: 779 1349 1349 Stack unwinding: <<beginning of stack>> 1350 1 7:48:08: An exception has been thrown!1350 18:01:27: An exception has been thrown! 1351 1351 1352 1352 ----------------------------------- … … 1359 1359 Line: 779 1360 1360 Stack unwinding: <<beginning of stack>> 1361 1 7:48:08: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1361 18:01:27: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1362 1362 1363 1363 ----------------------------------- … … 1370 1370 Line: 779 1371 1371 Stack unwinding: <<beginning of stack>> 1372 1 7:48:08: An exception has been thrown!1372 18:01:27: An exception has been thrown! 1373 1373 1374 1374 ----------------------------------- … … 1381 1381 Line: 779 1382 1382 Stack unwinding: <<beginning of stack>> 1383 1 7:48:08: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1383 18:01:27: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1384 1384 1385 1385 ----------------------------------- … … 1392 1392 Line: 779 1393 1393 Stack unwinding: <<beginning of stack>> 1394 17:48:08: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1395 17:48:08: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1396 17:48:08: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1397 17:48:08: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1398 17:48:08: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1399 17:48:08: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1400 17:48:08: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1401 17:48:08: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1402 17:48:08: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1403 17:48:08: Parsing script X3D.material 1404 17:48:08: Parsing script GameTools_Glow.compositor 1405 17:48:08: Parsing script GameTools_ToneMap.compositor 1406 17:48:08: Parsing script sample.fontdef 1407 17:48:08: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1408 17:48:08: Parsing script GameTools.particle 1409 17:48:08: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1410 17:48:08: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1411 17:48:08: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1412 17:48:08: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1413 17:48:08: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1414 17:48:08: Parsing script Compositor.overlay 1415 17:48:08: Parsing script DP3.overlay 1416 17:48:08: Parsing script Example-CubeMapping.overlay 1417 17:48:08: Parsing script Example-DynTex.overlay 1418 17:48:08: Parsing script Example-Water.overlay 1419 17:48:08: Parsing script FullScreen.overlay 1420 17:48:08: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1421 17:48:08: Parsing script Shadows.overlay 1422 17:48:08: Finished parsing scripts for resource group General 1423 17:48:08: Initialising resource group PostProc 1424 17:48:08: Parsing scripts for resource group PostProc 1425 17:48:08: Parsing script GTPPostProc.program 1426 17:48:08: Parsing script GTPPostProc.material 1427 17:48:08: Parsing script GTPGlow.compositor 1428 17:48:08: Parsing script GTPToneMap.compositor 1429 17:48:08: Finished parsing scripts for resource group PostProc 1430 17:48:08: Creating viewport on target 'rtt/3120448', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1431 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 1432 17:48:08: Creating viewport on target 'rtt/3119040', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1433 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1434 17:48:08: Creating viewport on target 'rtt/3100768', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1435 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1436 17:48:08: Creating viewport on target 'rtt/3153760', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1437 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1438 17:48:08: Creating viewport on target 'rtt/3153824', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1439 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1440 17:48:08: Creating viewport on target 'rtt/3153888', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1441 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 1442 17:48:08: Creating viewport on target 'rtt/3125376', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1443 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1444 17:48:08: Creating viewport on target 'rtt/3125728', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1445 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1446 17:48:08: Creating viewport on target 'rtt/3126080', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1447 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1448 17:48:08: Creating viewport on target 'rtt/3126432', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1449 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 1450 17:48:08: Creating viewport on target 'rtt/3126784', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1451 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 1452 17:48:08: Creating viewport on target 'rtt/3127136', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1453 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 1454 17:48:08: Creating viewport on target 'rtt/3127584', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1455 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 1456 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_fr.dds' with 5 mip map levels 1457 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_bk.dds' with 5 mip map levels 1458 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_lf.dds' with 5 mip map levels 1459 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_rt.dds' with 5 mip map levels 1460 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_up.dds' with 5 mip map levels 1461 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_dn.dds' with 5 mip map levels 1462 17:48:08: Mesh: Loading kupola.mesh. 1463 17:48:09: Texture: falt2.tga: Loading 1 faces(PF_R8G8B8,2048x2048x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x2048x1. 1464 17:48:09: D3D9 : Loading 2D Texture, image name : 'falnormal.dds' with 2147483647 mip map levels 1465 17:48:09: Texture: talaj2.tga: Loading 1 faces(PF_R8G8B8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1466 17:48:09: D3D9 : Loading 2D Texture, image name : 'talajnormal.dds' with 2147483647 mip map levels 1467 17:48:09: Mesh: Loading ogrehead.mesh. 1468 17:48:09: Texture: WeirdEye.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1469 17:48:09: Texture: GreenSkin.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1470 17:48:09: Texture: spheremap.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1471 17:48:09: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 1472 17:48:09: Win32Input8: DirectInput Activation Starts 1473 17:48:09: Win32Input8: Establishing keyboard input. 1474 17:48:09: Win32Input8: Keyboard input established. 1475 17:48:09: Win32Input8: Initializing mouse input in immediate mode. 1476 17:48:09: Win32Input8: Mouse input in immediate mode initialized. 1477 17:48:09: Win32Input8: DirectInput OK. 1478 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1479 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1480 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1481 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1482 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1483 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture5' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1484 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture6' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1485 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture7' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1486 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture8' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1487 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture9' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1488 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture10' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1489 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture11' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1490 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture12' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1491 17:48:56: Unregistering ResourceManager for type BspLevel 1492 17:48:56: Render Target 'rtt/3120448' Average FPS: 174.415 Best FPS: 185.444 Worst FPS: 151.848 1493 17:48:56: Render Target 'rtt/3153760' Average FPS: 174.451 Best FPS: 185.629 Worst FPS: 151.697 1494 17:48:56: Render Target 'rtt/3100768' Average FPS: 174.415 Best FPS: 185.444 Worst FPS: 151.697 1495 17:48:56: Render Target 'rtt/3153824' Average FPS: 174.415 Best FPS: 185.444 Worst FPS: 152.695 1496 17:48:56: Render Target 'rtt/3119040' Average FPS: 174.54 Best FPS: 185.629 Worst FPS: 151.848 1497 17:48:56: Render Target 'rtt/3153888' Average FPS: 174.609 Best FPS: 185.444 Worst FPS: 151.697 1498 17:48:56: Render Target 'rtt/3127584' Average FPS: 174.525 Best FPS: 185.444 Worst FPS: 152.542 1499 17:48:56: Render Target 'rtt/3127136' Average FPS: 174.609 Best FPS: 185.444 Worst FPS: 151.545 1500 17:48:56: Render Target 'rtt/3126784' Average FPS: 174.474 Best FPS: 185.444 Worst FPS: 151.545 1501 17:48:56: Render Target 'rtt/3126432' Average FPS: 174.451 Best FPS: 185.629 Worst FPS: 151.545 1502 17:48:56: Render Target 'rtt/3126080' Average FPS: 174.415 Best FPS: 185.444 Worst FPS: 151.545 1503 17:48:56: Render Target 'rtt/3125728' Average FPS: 174.701 Best FPS: 185.444 Worst FPS: 151.545 1504 17:48:56: Render Target 'rtt/3125376' Average FPS: 174.525 Best FPS: 185.444 Worst FPS: 151.697 1505 17:48:56: *-*-* OGRE Shutdown 1506 17:48:56: Unregistering ResourceManager for type Compositor 1507 17:48:56: Unregistering ResourceManager for type Font 1508 17:48:56: Unregistering ResourceManager for type Skeleton 1509 17:48:56: Unregistering ResourceManager for type Mesh 1510 17:48:56: Unregistering ResourceManager for type HighLevelGpuProgram 1511 17:48:56: Unloading library .\Plugin_VisibilitySceneManager 1512 17:48:56: Unloading library .\Plugin_CgProgramManager 1513 17:48:56: Unloading library .\Plugin_OctreeSceneManager 1514 17:48:56: Unloading library .\Plugin_BSPSceneManager 1515 17:48:56: Unloading library .\Plugin_ParticleFX 1516 17:48:56: Render Target 'OGRE Render Window' Average FPS: 174.453 Best FPS: 185.444 Worst FPS: 151.244 1517 17:48:56: D3D9 : Shutting down cleanly. 1518 17:48:56: Unregistering ResourceManager for type Texture 1519 17:48:56: Unregistering ResourceManager for type GpuProgram 1520 17:48:56: D3D9 : Direct3D9 Rendering Subsystem destroyed. 1521 17:48:56: Unloading library .\RenderSystem_Direct3D9 1522 17:48:56: Unregistering ResourceManager for type Material 1523 17:48:56: Unloading library OgrePlatform_d.dll 1394 18:01:27: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1395 18:01:27: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1396 18:01:27: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1397 18:01:27: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1398 18:01:27: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1399 18:01:27: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1400 18:01:27: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1401 18:01:27: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1402 18:01:27: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1403 18:01:27: Parsing script X3D.material 1404 18:01:27: Parsing script GameTools_Glow.compositor 1405 18:01:27: Parsing script GameTools_ToneMap.compositor 1406 18:01:27: Parsing script sample.fontdef 1407 18:01:27: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1408 18:01:27: Parsing script GameTools.particle 1409 18:01:27: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1410 18:01:27: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1411 18:01:27: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1412 18:01:27: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1413 18:01:27: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1414 18:01:27: Parsing script Compositor.overlay 1415 18:01:27: Parsing script DP3.overlay 1416 18:01:27: Parsing script Example-CubeMapping.overlay 1417 18:01:27: Parsing script Example-DynTex.overlay 1418 18:01:27: Parsing script Example-Water.overlay 1419 18:01:27: Parsing script FullScreen.overlay 1420 18:01:27: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1421 18:01:27: Parsing script Shadows.overlay 1422 18:01:27: Finished parsing scripts for resource group General 1423 18:01:27: Initialising resource group GTP_Basic 1424 18:01:27: Parsing scripts for resource group GTP_Basic 1425 18:01:27: Parsing script GTPBasic.program 1426 18:01:27: Parsing script GTPBasic.material 1427 18:01:28: Finished parsing scripts for resource group GTP_Basic 1428 18:01:28: Initialising resource group PostProc 1429 18:01:28: Parsing scripts for resource group PostProc 1430 18:01:28: Parsing script GTPPostProc.program 1431 18:01:28: Parsing script GTPPostProc.material 1432 18:01:28: Parsing script GTPGlow.compositor 1433 18:01:28: Parsing script GTPToneMap.compositor 1434 18:01:28: Finished parsing scripts for resource group PostProc 1435 18:01:28: Initialising resource group GTP_Demo 1436 18:01:28: Parsing scripts for resource group GTP_Demo 1437 18:01:28: Parsing script tower.material 1438 18:01:28: Finished parsing scripts for resource group GTP_Demo 1439 18:01:28: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1440 18:01:28: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1441 18:01:28: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1442 18:01:28: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1443 18:01:28: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1444 18:01:28: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1445 18:01:28: Error at line 15 of level.txt: Unrecognised command: xfile 1446 18:01:28: Mesh: Loading stairs.mesh. 1447 18:01:28: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 1448 18:01:28: Error at line 23 of level.txt: Unrecognised command: pathmapfile 1449 18:01:28: Error at line 30 of level.txt: Unrecognised command: pathmapfile 1450 18:01:28: Error at line 37 of level.txt: Unrecognised command: pathmapfile 1451 18:01:28: Error at line 44 of level.txt: Unrecognised command: pathmapfile 1452 18:01:28: Error at line 51 of level.txt: Unrecognised command: pathmapfile 1453 18:01:28: Error at line 58 of level.txt: Unrecognised command: pathmapfile 1454 18:01:28: Error at line 65 of level.txt: Unrecognised command: pathmapfile 1455 18:01:28: Error at line 72 of level.txt: Unrecognised command: pathmapfile 1456 18:01:28: Win32Input8: DirectInput Activation Starts 1457 18:01:28: Win32Input8: Establishing keyboard input. 1458 18:01:28: Win32Input8: Keyboard input established. 1459 18:01:28: Win32Input8: Initializing mouse input in immediate mode. 1460 18:01:28: Win32Input8: Mouse input in immediate mode initialized. 1461 18:01:28: Win32Input8: DirectInput OK. 1462 18:01:28: Creating viewport on target 'rtt/57614848', rendering from camera 'MainLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1463 18:01:28: Viewport for camera 'MainLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 1464 18:01:28: Creating viewport on target 'rtt/57615520', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1465 18:01:28: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 1466 18:01:28: Creating viewport on target 'rtt/57616064', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1467 18:01:28: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1468 18:01:29: WARNING: Texture instance 'MainLightDEPTH_SHADOW_MAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1469 18:01:56: Unregistering ResourceManager for type BspLevel 1470 18:01:56: Render Target 'rtt/57616064' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1471 18:01:56: Render Target 'rtt/57615520' Average FPS: 1.82937 Best FPS: 2.6738 Worst FPS: 1.81984 1472 18:01:56: Render Target 'rtt/57614848' Average FPS: 1.82998 Best FPS: 2.6643 Worst FPS: 1.81984 1473 18:01:56: *-*-* OGRE Shutdown 1474 18:01:56: Unregistering ResourceManager for type Compositor 1475 18:01:56: Unregistering ResourceManager for type Font 1476 18:01:56: Unregistering ResourceManager for type Skeleton 1477 18:01:56: Unregistering ResourceManager for type Mesh 1478 18:01:56: Unregistering ResourceManager for type HighLevelGpuProgram 1479 18:01:56: Unloading library .\Plugin_VisibilitySceneManager 1480 18:01:56: Unloading library .\Plugin_CgProgramManager 1481 18:01:56: Unloading library .\Plugin_OctreeSceneManager 1482 18:01:56: Unloading library .\Plugin_BSPSceneManager 1483 18:01:56: Unloading library .\Plugin_ParticleFX 1484 18:01:56: Render Target 'OGRE Render Window' Average FPS: 1.82984 Best FPS: 1.83486 Worst FPS: 1.7762 1485 18:01:56: D3D9 : Shutting down cleanly. 1486 18:01:56: Unregistering ResourceManager for type Texture 1487 18:01:56: Unregistering ResourceManager for type GpuProgram 1488 18:01:56: D3D9 : Direct3D9 Rendering Subsystem destroyed. 1489 18:01:56: Unloading library .\RenderSystem_Direct3D9 1490 18:01:56: Unregistering ResourceManager for type Material 1491 18:01:56: Unloading library OgrePlatform_d.dll -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log
r2175 r2179 1 1 ---------------------------------------------------------------------------------------------------------------------------------- 2 | Memory leak report for: 0 2/28/2007 17:48:56 |2 | Memory leak report for: 03/01/2007 18:01:56 | 3 3 ---------------------------------------------------------------------------------------------------------------------------------- 4 4 5 5 6 269memory leaks found:6 333 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 000589 0x01FAF358 0x00000010 0x01FAF348 0x00000030 0x00000000 new N N ogreoctreescenemanagerdll.cpp(41) Ogre::dllStartPlugin 12 006780 0x0204FC20 0x00000048 0x0204FC10 0x00000068 0x00000000 new N N ??(0) ?? 13 006774 0x020501C0 0x00000028 0x020501B0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 14 006775 0x02050238 0x00000048 0x02050228 0x00000068 0x00000000 new N N ??(0) ?? 15 006784 0x020504E8 0x00000028 0x020504D8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 16 006785 0x02050560 0x00000048 0x02050550 0x00000068 0x00000000 new N N ??(0) ?? 17 006790 0x02050650 0x00000048 0x02050640 0x00000068 0x00000000 new N N ??(0) ?? 18 006794 0x02050770 0x00000048 0x02050760 0x00000068 0x00000000 new N N ??(0) ?? 19 006798 0x02050868 0x00000048 0x02050858 0x00000068 0x00000000 new N N ??(0) ?? 20 006802 0x020509B0 0x00000048 0x020509A0 0x00000068 0x00000000 new N N ??(0) ?? 21 006806 0x02050A48 0x00000048 0x02050A38 0x00000068 0x00000000 new N N ??(0) ?? 22 007419 0x02055B10 0x00000048 0x02055B00 0x00000068 0x00000000 new N N ??(0) ?? 23 007403 0x02056158 0x00000048 0x02056148 0x00000068 0x00000000 new N N ??(0) ?? 24 007397 0x020561F8 0x00000028 0x020561E8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 25 007398 0x02056270 0x00000048 0x02056260 0x00000068 0x00000000 new N N ??(0) ?? 26 007411 0x020563F8 0x00000048 0x020563E8 0x00000068 0x00000000 new N N ??(0) ?? 27 007407 0x020564A8 0x00000048 0x02056498 0x00000068 0x00000000 new N N ??(0) ?? 28 007415 0x020565F0 0x00000048 0x020565E0 0x00000068 0x00000000 new N N ??(0) ?? 29 007522 0x02056878 0x00000028 0x02056868 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 30 007523 0x020568F0 0x00000048 0x020568E0 0x00000068 0x00000000 new N N ??(0) ?? 31 007528 0x0205F408 0x00000048 0x0205F3F8 0x00000068 0x00000000 new N N ??(0) ?? 32 007532 0x0205F500 0x00000048 0x0205F4F0 0x00000068 0x00000000 new N N ??(0) ?? 33 007536 0x0205F648 0x00000048 0x0205F638 0x00000068 0x00000000 new N N ??(0) ?? 34 007540 0x0205F790 0x00000048 0x0205F780 0x00000068 0x00000000 new N N ??(0) ?? 35 007544 0x0205F828 0x00000048 0x0205F818 0x00000068 0x00000000 new N N ??(0) ?? 36 007739 0x020603C0 0x00000048 0x020603B0 0x00000068 0x00000000 new N N ??(0) ?? 37 007733 0x020604E8 0x00000028 0x020604D8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 38 007734 0x0206A560 0x00000048 0x0206A550 0x00000068 0x00000000 new N N ??(0) ?? 39 007747 0x0206A698 0x00000048 0x0206A688 0x00000068 0x00000000 new N N ??(0) ?? 40 007743 0x0206A748 0x00000048 0x0206A738 0x00000068 0x00000000 new N N ??(0) ?? 41 007751 0x0206A890 0x00000048 0x0206A880 0x00000068 0x00000000 new N N ??(0) ?? 42 007878 0x0206A9F0 0x00000028 0x0206A9E0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 43 007755 0x0206AAC8 0x00000048 0x0206AAB8 0x00000068 0x00000000 new N N ??(0) ?? 44 007884 0x0206ABC8 0x00000048 0x0206ABB8 0x00000068 0x00000000 new N N ??(0) ?? 45 007879 0x0206D038 0x00000048 0x0206D028 0x00000068 0x00000000 new N N ??(0) ?? 46 007888 0x0206D208 0x00000048 0x0206D1F8 0x00000068 0x00000000 new N N ??(0) ?? 47 007892 0x0206D350 0x00000048 0x0206D340 0x00000068 0x00000000 new N N ??(0) ?? 48 007896 0x0206D498 0x00000048 0x0206D488 0x00000068 0x00000000 new N N ??(0) ?? 49 007900 0x0206D530 0x00000048 0x0206D520 0x00000068 0x00000000 new N N ??(0) ?? 50 008101 0x0206E0F0 0x00000048 0x0206E0E0 0x00000068 0x00000000 new N N ??(0) ?? 51 008095 0x0206E218 0x00000028 0x0206E208 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 52 008096 0x02070640 0x00000048 0x02070630 0x00000068 0x00000000 new N N ??(0) ?? 53 008109 0x02070778 0x00000048 0x02070768 0x00000068 0x00000000 new N N ??(0) ?? 54 008105 0x02070828 0x00000048 0x02070818 0x00000068 0x00000000 new N N ??(0) ?? 55 008113 0x02070970 0x00000048 0x02070960 0x00000068 0x00000000 new N N ??(0) ?? 56 008117 0x02070BA8 0x00000048 0x02070B98 0x00000068 0x00000000 new N N ??(0) ?? 57 009288 0x0364C1D8 0x00000048 0x0364C1C8 0x00000068 0x00000000 new N N ??(0) ?? 58 009264 0x0364C820 0x00000028 0x0364C810 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 59 009265 0x03654EE8 0x00000048 0x03654ED8 0x00000068 0x00000000 new N N ??(0) ?? 60 009270 0x03654F80 0x00000048 0x03654F70 0x00000068 0x00000000 new N N ??(0) ?? 61 009274 0x03655018 0x00000048 0x03655008 0x00000068 0x00000000 new N N ??(0) ?? 62 009278 0x036550B0 0x00000048 0x036550A0 0x00000068 0x00000000 new N N ??(0) ?? 63 009282 0x03655148 0x00000028 0x03655138 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 64 009283 0x036551C0 0x00000048 0x036551B0 0x00000068 0x00000000 new N N ??(0) ?? 65 009292 0x036552B0 0x00000048 0x036552A0 0x00000068 0x00000000 new N N ??(0) ?? 66 009296 0x03655348 0x00000048 0x03655338 0x00000068 0x00000000 new N N ??(0) ?? 67 009447 0x03655708 0x00000048 0x036556F8 0x00000068 0x00000000 new N N ??(0) ?? 68 009452 0x036557F0 0x00000048 0x036557E0 0x00000068 0x00000000 new N N ??(0) ?? 69 009456 0x03655888 0x00000048 0x03655878 0x00000068 0x00000000 new N N ??(0) ?? 70 009460 0x03655920 0x00000048 0x03655910 0x00000068 0x00000000 new N N ??(0) ?? 71 009464 0x036559B8 0x00000028 0x036559A8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 72 009465 0x03655A30 0x00000048 0x03655A20 0x00000068 0x00000000 new N N ??(0) ?? 73 009470 0x03655B20 0x00000048 0x03655B10 0x00000068 0x00000000 new N N ??(0) ?? 74 009474 0x03655BB8 0x00000048 0x03655BA8 0x00000068 0x00000000 new N N ??(0) ?? 75 009478 0x03655C50 0x00000048 0x03655C40 0x00000068 0x00000000 new N N ??(0) ?? 76 009621 0x03657850 0x00000048 0x03657840 0x00000068 0x00000000 new N N ??(0) ?? 77 009638 0x036578E8 0x00000028 0x036578D8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 78 009626 0x03657970 0x00000048 0x03657960 0x00000068 0x00000000 new N N ??(0) ?? 79 009630 0x03657A08 0x00000048 0x036579F8 0x00000068 0x00000000 new N N ??(0) ?? 80 009634 0x03657AA0 0x00000048 0x03657A90 0x00000068 0x00000000 new N N ??(0) ?? 81 009639 0x03657B38 0x00000048 0x03657B28 0x00000068 0x00000000 new N N ??(0) ?? 82 009644 0x03657BD0 0x00000048 0x03657BC0 0x00000068 0x00000000 new N N ??(0) ?? 83 009648 0x03657C68 0x00000048 0x03657C58 0x00000068 0x00000000 new N N ??(0) ?? 84 009652 0x03657D00 0x00000048 0x03657CF0 0x00000068 0x00000000 new N N ??(0) ?? 85 009794 0x03659758 0x00000028 0x03659748 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 86 009795 0x036597D0 0x00000048 0x036597C0 0x00000068 0x00000000 new N N ??(0) ?? 87 009800 0x036598B8 0x00000048 0x036598A8 0x00000068 0x00000000 new N N ??(0) ?? 88 009804 0x03659950 0x00000048 0x03659940 0x00000068 0x00000000 new N N ??(0) ?? 89 009808 0x036599E8 0x00000048 0x036599D8 0x00000068 0x00000000 new N N ??(0) ?? 90 009812 0x03659A80 0x00000028 0x03659A70 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 91 009813 0x03659AF8 0x00000048 0x03659AE8 0x00000068 0x00000000 new N N ??(0) ?? 92 009818 0x03659BE8 0x00000048 0x03659BD8 0x00000068 0x00000000 new N N ??(0) ?? 93 009822 0x03659C80 0x00000048 0x03659C70 0x00000068 0x00000000 new N N ??(0) ?? 94 009826 0x03659D18 0x00000048 0x03659D08 0x00000068 0x00000000 new N N ??(0) ?? 95 009620 0x0365DC68 0x00000028 0x0365DC58 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 96 009446 0x03661F88 0x00000028 0x03661F78 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 97 010316 0x03670460 0x00000028 0x03670450 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 98 010317 0x036704D8 0x00000048 0x036704C8 0x00000068 0x00000000 new N N ??(0) ?? 99 010322 0x036706E8 0x00000048 0x036706D8 0x00000068 0x00000000 new N N ??(0) ?? 100 011714 0x03690C58 0x00000048 0x03690C48 0x00000068 0x00000000 new N N ??(0) ?? 101 011718 0x03690CF0 0x00000048 0x03690CE0 0x00000068 0x00000000 new N N ??(0) ?? 102 011722 0x03690DD8 0x00000048 0x03690DC8 0x00000068 0x00000000 new N N ??(0) ?? 103 011726 0x03690EC0 0x00000048 0x03690EB0 0x00000068 0x00000000 new N N ??(0) ?? 104 011730 0x03690FA8 0x00000048 0x03690F98 0x00000068 0x00000000 new N N ??(0) ?? 105 011668 0x03692598 0x00000028 0x03692588 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 106 011686 0x036940A8 0x00000028 0x03694098 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 107 011669 0x03694130 0x00000048 0x03694120 0x00000068 0x00000000 new N N ??(0) ?? 108 011674 0x03694250 0x00000048 0x03694240 0x00000068 0x00000000 new N N ??(0) ?? 109 011678 0x036942E8 0x00000048 0x036942D8 0x00000068 0x00000000 new N N ??(0) ?? 110 011682 0x03694380 0x00000048 0x03694370 0x00000068 0x00000000 new N N ??(0) ?? 111 011687 0x03694418 0x00000048 0x03694408 0x00000068 0x00000000 new N N ??(0) ?? 112 011692 0x036944B0 0x00000048 0x036944A0 0x00000068 0x00000000 new N N ??(0) ?? 113 011696 0x036A1C68 0x00000048 0x036A1C58 0x00000068 0x00000000 new N N ??(0) ?? 114 011700 0x036A1D00 0x00000048 0x036A1CF0 0x00000068 0x00000000 new N N ??(0) ?? 115 011704 0x036A1D98 0x00000028 0x036A1D88 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 116 011705 0x036A1E10 0x00000048 0x036A1E00 0x00000068 0x00000000 new N N ??(0) ?? 117 011710 0x036A1F88 0x00000048 0x036A1F78 0x00000068 0x00000000 new N N ??(0) ?? 118 012497 0x036B6F08 0x00000028 0x036B6EF8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 119 012498 0x036B6F80 0x00000048 0x036B6F70 0x00000068 0x00000000 new N N ??(0) ?? 120 012503 0x036B7190 0x00000048 0x036B7180 0x00000068 0x00000000 new N N ??(0) ?? 121 012652 0x036B8238 0x00000028 0x036B8228 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 122 012653 0x036B82B0 0x00000048 0x036B82A0 0x00000068 0x00000000 new N N ??(0) ?? 123 012658 0x036BA038 0x00000048 0x036BA028 0x00000068 0x00000000 new N N ??(0) ?? 124 024508 0x03773818 0x00000170 0x03773808 0x00000190 0x00000000 new N N ogreilluminationmanager.cpp(125) OgreIlluminationManager::getSingleton 125 024509 0x037739D8 0x0000000C 0x037739C8 0x0000002C 0x00000000 new N N ??(0) ?? 126 024510 0x03773A30 0x00000018 0x03773A20 0x00000038 0x00000000 new N N ??(0) ?? 127 024511 0x03773A98 0x0000000C 0x03773A88 0x0000002C 0x00000000 new N N ??(0) ?? 128 024512 0x03773AF0 0x00000018 0x03773AE0 0x00000038 0x00000000 new N N ??(0) ?? 129 024513 0x03773B58 0x00000018 0x03773B48 0x00000038 0x00000000 new N N ??(0) ?? 130 024514 0x03773BC0 0x00000030 0x03773BB0 0x00000050 0x00000000 new N N ??(0) ?? 131 024515 0x03773C40 0x00000030 0x03773C30 0x00000050 0x00000000 new N N ??(0) ?? 132 024516 0x03773CC0 0x00000018 0x03773CB0 0x00000038 0x00000000 new N N ??(0) ?? 133 024517 0x03773D28 0x00000008 0x03773D18 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(78) OgreIlluminationManager::OgreIlluminati 134 024518 0x03773D80 0x00000018 0x03773D70 0x00000038 0x00000000 new N N ??(0) ?? 135 024519 0x03773DE8 0x00000018 0x03773DD8 0x00000038 0x00000000 new N N ??(0) ?? 136 024520 0x03773E50 0x00000018 0x03773E40 0x00000038 0x00000000 new N N ??(0) ?? 137 024521 0x03773EB8 0x00000018 0x03773EA8 0x00000038 0x00000000 new N N ??(0) ?? 138 024522 0x03773F20 0x00000018 0x03773F10 0x00000038 0x00000000 new N N ??(0) ?? 139 024523 0x03773F88 0x00000018 0x03773F78 0x00000038 0x00000000 new N N ??(0) ?? 140 024524 0x03773FF0 0x00000018 0x03773FE0 0x00000038 0x00000000 new N N ??(0) ?? 141 024525 0x03774058 0x00000018 0x03774048 0x00000038 0x00000000 new N N ??(0) ?? 142 024526 0x037740C0 0x00000018 0x037740B0 0x00000038 0x00000000 new N N ??(0) ?? 143 024527 0x03774128 0x00000018 0x03774118 0x00000038 0x00000000 new N N ??(0) ?? 144 024528 0x03774190 0x00000018 0x03774180 0x00000038 0x00000000 new N N ??(0) ?? 145 024529 0x037741F8 0x00000018 0x037741E8 0x00000038 0x00000000 new N N ??(0) ?? 146 024530 0x03774260 0x00000018 0x03774250 0x00000038 0x00000000 new N N ??(0) ?? 147 024531 0x037742C8 0x00000018 0x037742B8 0x00000038 0x00000000 new N N ??(0) ?? 148 024532 0x03774330 0x00000018 0x03774320 0x00000038 0x00000000 new N N ??(0) ?? 149 024533 0x03774398 0x00000018 0x03774388 0x00000038 0x00000000 new N N ??(0) ?? 150 024534 0x03774400 0x00000018 0x037743F0 0x00000038 0x00000000 new N N ??(0) ?? 151 024535 0x03774468 0x00000018 0x03774458 0x00000038 0x00000000 new N N ??(0) ?? 152 024536 0x037744D0 0x00000018 0x037744C0 0x00000038 0x00000000 new N N ??(0) ?? 153 024537 0x03774538 0x00000018 0x03774528 0x00000038 0x00000000 new N N ??(0) ?? 154 024538 0x037745A0 0x00000018 0x03774590 0x00000038 0x00000000 new N N ??(0) ?? 155 024539 0x03774608 0x00000018 0x037745F8 0x00000038 0x00000000 new N N ??(0) ?? 156 024540 0x03774670 0x00000018 0x03774660 0x00000038 0x00000000 new N N ??(0) ?? 157 024541 0x037746D8 0x00000018 0x037746C8 0x00000038 0x00000000 new N N ??(0) ?? 158 024542 0x03774740 0x000000C0 0x03774730 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 159 024543 0x03774850 0x00000030 0x03774840 0x00000050 0x00000000 new N N ??(0) ?? 160 024544 0x037748D0 0x00000030 0x037748C0 0x00000050 0x00000000 new N N ??(0) ?? 161 024545 0x03774950 0x00000030 0x03774940 0x00000050 0x00000000 new N N ??(0) ?? 162 024546 0x037749D0 0x00000030 0x037749C0 0x00000050 0x00000000 new N N ??(0) ?? 163 024547 0x03774A50 0x00000030 0x03774A40 0x00000050 0x00000000 new N N ??(0) ?? 164 024548 0x03774AD0 0x00000030 0x03774AC0 0x00000050 0x00000000 new N N ??(0) ?? 165 024549 0x03774B50 0x00000030 0x03774B40 0x00000050 0x00000000 new N N ??(0) ?? 166 024550 0x03774BD0 0x00000030 0x03774BC0 0x00000050 0x00000000 new N N ??(0) ?? 167 024551 0x03774C50 0x00000030 0x03774C40 0x00000050 0x00000000 new N N ??(0) ?? 168 024552 0x03774CD0 0x00000030 0x03774CC0 0x00000050 0x00000000 new N N ??(0) ?? 169 024553 0x03774D50 0x00000030 0x03774D40 0x00000050 0x00000000 new N N ??(0) ?? 170 024554 0x03774DD0 0x00000030 0x03774DC0 0x00000050 0x00000000 new N N ??(0) ?? 171 024555 0x03774E50 0x00000030 0x03774E40 0x00000050 0x00000000 new N N ??(0) ?? 172 024556 0x03774ED0 0x00000030 0x03774EC0 0x00000050 0x00000000 new N N ??(0) ?? 173 024557 0x03774FA0 0x00000030 0x03774F90 0x00000050 0x00000000 new N N ??(0) ?? 174 024558 0x03775070 0x00000030 0x03775060 0x00000050 0x00000000 new N N ??(0) ?? 175 024559 0x037750F0 0x00000030 0x037750E0 0x00000050 0x00000000 new N N ??(0) ?? 176 024560 0x03775170 0x0000000C 0x03775160 0x0000002C 0x00000000 new N N ??(0) ?? 177 024561 0x037751C8 0x000000C0 0x037751B8 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 178 024562 0x037752D8 0x00000030 0x037752C8 0x00000050 0x00000000 new N N ??(0) ?? 179 024563 0x03775358 0x00000030 0x03775348 0x00000050 0x00000000 new N N ??(0) ?? 180 024564 0x037753D8 0x00000030 0x037753C8 0x00000050 0x00000000 new N N ??(0) ?? 181 024565 0x03775458 0x00000030 0x03775448 0x00000050 0x00000000 new N N ??(0) ?? 182 024566 0x037754D8 0x00000030 0x037754C8 0x00000050 0x00000000 new N N ??(0) ?? 183 024567 0x03775558 0x00000030 0x03775548 0x00000050 0x00000000 new N N ??(0) ?? 184 024568 0x037755D8 0x00000030 0x037755C8 0x00000050 0x00000000 new N N ??(0) ?? 185 024569 0x03775658 0x00000030 0x03775648 0x00000050 0x00000000 new N N ??(0) ?? 186 024570 0x037756D8 0x00000030 0x037756C8 0x00000050 0x00000000 new N N ??(0) ?? 187 024571 0x03775758 0x00000030 0x03775748 0x00000050 0x00000000 new N N ??(0) ?? 188 024572 0x037757D8 0x00000030 0x037757C8 0x00000050 0x00000000 new N N ??(0) ?? 189 024573 0x03775858 0x00000030 0x03775848 0x00000050 0x00000000 new N N ??(0) ?? 190 024574 0x037758D8 0x00000030 0x037758C8 0x00000050 0x00000000 new N N ??(0) ?? 191 024575 0x03775958 0x00000030 0x03775948 0x00000050 0x00000000 new N N ??(0) ?? 192 024576 0x037759D8 0x00000030 0x037759C8 0x00000050 0x00000000 new N N ??(0) ?? 193 024577 0x03775AA8 0x00000030 0x03775A98 0x00000050 0x00000000 new N N ??(0) ?? 194 024578 0x03775B28 0x00000030 0x03775B18 0x00000050 0x00000000 new N N ??(0) ?? 195 024579 0x03775BA8 0x0000000C 0x03775B98 0x0000002C 0x00000000 new N N ??(0) ?? 196 024580 0x03775C00 0x000000C4 0x03775BF0 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 197 024581 0x03775D10 0x00000030 0x03775D00 0x00000050 0x00000000 new N N ??(0) ?? 198 024582 0x03775D90 0x00000030 0x03775D80 0x00000050 0x00000000 new N N ??(0) ?? 199 024583 0x03775E10 0x00000030 0x03775E00 0x00000050 0x00000000 new N N ??(0) ?? 200 024584 0x03775E90 0x00000030 0x03775E80 0x00000050 0x00000000 new N N ??(0) ?? 201 024585 0x03775F10 0x00000030 0x03775F00 0x00000050 0x00000000 new N N ??(0) ?? 202 024586 0x03775F90 0x00000030 0x03775F80 0x00000050 0x00000000 new N N ??(0) ?? 203 024587 0x03776010 0x00000030 0x03776000 0x00000050 0x00000000 new N N ??(0) ?? 204 024588 0x03776090 0x00000030 0x03776080 0x00000050 0x00000000 new N N ??(0) ?? 205 024589 0x03776110 0x00000030 0x03776100 0x00000050 0x00000000 new N N ??(0) ?? 206 024590 0x03776190 0x00000030 0x03776180 0x00000050 0x00000000 new N N ??(0) ?? 207 024591 0x03776210 0x00000030 0x03776200 0x00000050 0x00000000 new N N ??(0) ?? 208 024592 0x03776290 0x00000030 0x03776280 0x00000050 0x00000000 new N N ??(0) ?? 209 024593 0x03776310 0x00000030 0x03776300 0x00000050 0x00000000 new N N ??(0) ?? 210 024594 0x03776390 0x00000030 0x03776380 0x00000050 0x00000000 new N N ??(0) ?? 211 024595 0x03776410 0x00000030 0x03776400 0x00000050 0x00000000 new N N ??(0) ?? 212 024596 0x037764E0 0x00000030 0x037764D0 0x00000050 0x00000000 new N N ??(0) ?? 213 024597 0x03776560 0x00000030 0x03776550 0x00000050 0x00000000 new N N ??(0) ?? 214 024598 0x03776630 0x00000030 0x03776620 0x00000050 0x00000000 new N N ??(0) ?? 215 024599 0x03776700 0x0000000C 0x037766F0 0x0000002C 0x00000000 new N N ??(0) ?? 216 024600 0x03776758 0x00000080 0x03776748 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 217 024601 0x03776828 0x00000030 0x03776818 0x00000050 0x00000000 new N N ??(0) ?? 218 024602 0x037768A8 0x00000030 0x03776898 0x00000050 0x00000000 new N N ??(0) ?? 219 024603 0x03776928 0x00000030 0x03776918 0x00000050 0x00000000 new N N ??(0) ?? 220 024604 0x037769A8 0x00000030 0x03776998 0x00000050 0x00000000 new N N ??(0) ?? 221 024605 0x03776A78 0x00000030 0x03776A68 0x00000050 0x00000000 new N N ??(0) ?? 222 024606 0x03776B48 0x00000030 0x03776B38 0x00000050 0x00000000 new N N ??(0) ?? 223 024607 0x03776C18 0x00000030 0x03776C08 0x00000050 0x00000000 new N N ??(0) ?? 224 024608 0x03776CE8 0x00000030 0x03776CD8 0x00000050 0x00000000 new N N ??(0) ?? 225 024609 0x03776DB8 0x00000030 0x03776DA8 0x00000050 0x00000000 new N N ??(0) ?? 226 024610 0x03776E88 0x00000030 0x03776E78 0x00000050 0x00000000 new N N ??(0) ?? 227 024611 0x03776F08 0x00000030 0x03776EF8 0x00000050 0x00000000 new N N ??(0) ?? 228 024612 0x03776F88 0x00000030 0x03776F78 0x00000050 0x00000000 new N N ??(0) ?? 229 024613 0x03777008 0x00000030 0x03776FF8 0x00000050 0x00000000 new N N ??(0) ?? 230 024614 0x037770D8 0x0000000C 0x037770C8 0x0000002C 0x00000000 new N N ??(0) ?? 231 024615 0x03777130 0x00000068 0x03777120 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 232 024616 0x037771E8 0x00000030 0x037771D8 0x00000050 0x00000000 new N N ??(0) ?? 233 024617 0x03777268 0x00000030 0x03777258 0x00000050 0x00000000 new N N ??(0) ?? 234 024618 0x03777338 0x00000030 0x03777328 0x00000050 0x00000000 new N N ??(0) ?? 235 024619 0x03777408 0x00000030 0x037773F8 0x00000050 0x00000000 new N N ??(0) ?? 236 024620 0x037774D8 0x0000000C 0x037774C8 0x0000002C 0x00000000 new N N ??(0) ?? 237 024621 0x03777530 0x000000C0 0x03777520 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 238 024622 0x03777640 0x00000030 0x03777630 0x00000050 0x00000000 new N N ??(0) ?? 239 024623 0x037776C0 0x00000030 0x037776B0 0x00000050 0x00000000 new N N ??(0) ?? 240 024624 0x03777790 0x00000030 0x03777780 0x00000050 0x00000000 new N N ??(0) ?? 241 024625 0x03777860 0x00000030 0x03777850 0x00000050 0x00000000 new N N ??(0) ?? 242 024626 0x03777930 0x00000030 0x03777920 0x00000050 0x00000000 new N N ??(0) ?? 243 024627 0x03777A00 0x00000030 0x037779F0 0x00000050 0x00000000 new N N ??(0) ?? 244 024628 0x03777A80 0x00000030 0x03777A70 0x00000050 0x00000000 new N N ??(0) ?? 245 024629 0x03777B50 0x0000000C 0x03777B40 0x0000002C 0x00000000 new N N ??(0) ?? 246 024630 0x03777BA8 0x00000030 0x03777B98 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 247 024631 0x03777C28 0x00000030 0x03777C18 0x00000050 0x00000000 new N N ??(0) ?? 248 024632 0x03777CA8 0x00000030 0x03777C98 0x00000050 0x00000000 new N N ??(0) ?? 249 024633 0x03777D28 0x0000000C 0x03777D18 0x0000002C 0x00000000 new N N ??(0) ?? 250 024634 0x03777D80 0x00000030 0x03777D70 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 251 024635 0x03777E00 0x00000030 0x03777DF0 0x00000050 0x00000000 new N N ??(0) ?? 252 024636 0x03777E80 0x00000030 0x03777E70 0x00000050 0x00000000 new N N ??(0) ?? 253 024637 0x03777F00 0x0000000C 0x03777EF0 0x0000002C 0x00000000 new N N ??(0) ?? 254 024638 0x03777F58 0x000000B4 0x03777F48 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(111) OgreIlluminationManager::OgreIlluminati 255 024639 0x03778058 0x00000030 0x03778048 0x00000050 0x00000000 new N N ??(0) ?? 256 024640 0x037780D8 0x00000030 0x037780C8 0x00000050 0x00000000 new N N ??(0) ?? 257 024641 0x03778158 0x00000030 0x03778148 0x00000050 0x00000000 new N N ??(0) ?? 258 024642 0x037781D8 0x00000030 0x037781C8 0x00000050 0x00000000 new N N ??(0) ?? 259 024643 0x03778258 0x00000030 0x03778248 0x00000050 0x00000000 new N N ??(0) ?? 260 024644 0x037782D8 0x00000030 0x037782C8 0x00000050 0x00000000 new N N ??(0) ?? 261 024645 0x03778358 0x00000030 0x03778348 0x00000050 0x00000000 new N N ??(0) ?? 262 024646 0x037783D8 0x00000030 0x037783C8 0x00000050 0x00000000 new N N ??(0) ?? 263 024647 0x03778458 0x00000030 0x03778448 0x00000050 0x00000000 new N N ??(0) ?? 264 024648 0x037784D8 0x00000030 0x037784C8 0x00000050 0x00000000 new N N ??(0) ?? 265 024649 0x03778558 0x00000030 0x03778548 0x00000050 0x00000000 new N N ??(0) ?? 266 024650 0x037785D8 0x0000000C 0x037785C8 0x0000002C 0x00000000 new N N ??(0) ?? 267 024651 0x03778630 0x00000080 0x03778620 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(113) OgreIlluminationManager::OgreIlluminati 268 024652 0x03778700 0x00000030 0x037786F0 0x00000050 0x00000000 new N N ??(0) ?? 269 024653 0x03778780 0x00000030 0x03778770 0x00000050 0x00000000 new N N ??(0) ?? 270 024654 0x03778800 0x00000030 0x037787F0 0x00000050 0x00000000 new N N ??(0) ?? 271 024655 0x03778880 0x00000030 0x03778870 0x00000050 0x00000000 new N N ??(0) ?? 272 024656 0x03778900 0x00000030 0x037788F0 0x00000050 0x00000000 new N N ??(0) ?? 273 024657 0x03778980 0x00000030 0x03778970 0x00000050 0x00000000 new N N ??(0) ?? 274 024658 0x03778A50 0x00000030 0x03778A40 0x00000050 0x00000000 new N N ??(0) ?? 275 024659 0x03778B20 0x00000030 0x03778B10 0x00000050 0x00000000 new N N ??(0) ?? 276 024660 0x03778BA0 0x00000030 0x03778B90 0x00000050 0x00000000 new N N ??(0) ?? 277 024661 0x03778C20 0x00000030 0x03778C10 0x00000050 0x00000000 new N N ??(0) ?? 278 024662 0x03778CA0 0x00000030 0x03778C90 0x00000050 0x00000000 new N N ??(0) ?? 279 024663 0x03778D70 0x0000000C 0x03778D60 0x0000002C 0x00000000 new N N ??(0) ?? 11 000589 0x01FB6A18 0x00000010 0x01FB6A08 0x00000030 0x00000000 new N N ogreoctreescenemanagerdll.cpp(41) Ogre::dllStartPlugin 12 026396 0x02024708 0x00000018 0x020246F8 0x00000038 0x00000000 new N N ??(0) ?? 13 026397 0x02024780 0x00000018 0x02024770 0x00000038 0x00000000 new N N ??(0) ?? 14 026398 0x020247F8 0x00000018 0x020247E8 0x00000038 0x00000000 new N N ??(0) ?? 15 026379 0x02024958 0x00000018 0x02024948 0x00000038 0x00000000 new N N ??(0) ?? 16 026370 0x02037578 0x0000000C 0x02037568 0x0000002C 0x00000000 new N N ??(0) ?? 17 006774 0x020518D0 0x00000028 0x020518C0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 18 006775 0x02051958 0x00000048 0x02051948 0x00000068 0x00000000 new N N ??(0) ?? 19 006790 0x02051AD0 0x00000048 0x02051AC0 0x00000068 0x00000000 new N N ??(0) ?? 20 006780 0x02051BB8 0x00000048 0x02051BA8 0x00000068 0x00000000 new N N ??(0) ?? 21 006784 0x02051CC0 0x00000028 0x02051CB0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 22 006785 0x02051D48 0x00000048 0x02051D38 0x00000068 0x00000000 new N N ??(0) ?? 23 006794 0x02051F60 0x00000048 0x02051F50 0x00000068 0x00000000 new N N ??(0) ?? 24 006798 0x02052138 0x00000048 0x02052128 0x00000068 0x00000000 new N N ??(0) ?? 25 006802 0x02052250 0x00000048 0x02052240 0x00000068 0x00000000 new N N ??(0) ?? 26 006806 0x020522F8 0x00000048 0x020522E8 0x00000068 0x00000000 new N N ??(0) ?? 27 007560 0x02054FA8 0x00000048 0x02054F98 0x00000068 0x00000000 new N N ??(0) ?? 28 007403 0x02055690 0x00000048 0x02055680 0x00000068 0x00000000 new N N ??(0) ?? 29 007397 0x02055750 0x00000028 0x02055740 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 30 007398 0x020557D8 0x00000048 0x020557C8 0x00000068 0x00000000 new N N ??(0) ?? 31 007407 0x02055A60 0x00000048 0x02055A50 0x00000068 0x00000000 new N N ??(0) ?? 32 007411 0x02055BC8 0x00000048 0x02055BB8 0x00000068 0x00000000 new N N ??(0) ?? 33 007415 0x02055CD0 0x00000048 0x02055CC0 0x00000068 0x00000000 new N N ??(0) ?? 34 007419 0x02055D78 0x00000048 0x02055D68 0x00000068 0x00000000 new N N ??(0) ?? 35 007423 0x02055E80 0x00000048 0x02055E70 0x00000068 0x00000000 new N N ??(0) ?? 36 007427 0x02055F88 0x00000048 0x02055F78 0x00000068 0x00000000 new N N ??(0) ?? 37 026383 0x02056038 0x00000018 0x02056028 0x00000038 0x00000000 new N N ??(0) ?? 38 026419 0x020560B0 0x0000000C 0x020560A0 0x0000002C 0x00000000 new N N ??(0) ?? 39 026399 0x020561F0 0x00000018 0x020561E0 0x00000038 0x00000000 new N N ??(0) ?? 40 026400 0x02056268 0x00000018 0x02056258 0x00000038 0x00000000 new N N ??(0) ?? 41 026401 0x020562E0 0x000000C0 0x020562D0 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 42 026402 0x02056400 0x00000030 0x020563F0 0x00000050 0x00000000 new N N ??(0) ?? 43 026393 0x02056608 0x00000018 0x020565F8 0x00000038 0x00000000 new N N ??(0) ?? 44 026394 0x02056680 0x00000018 0x02056670 0x00000038 0x00000000 new N N ??(0) ?? 45 026395 0x020566F8 0x00000018 0x020566E8 0x00000038 0x00000000 new N N ??(0) ?? 46 007431 0x02068048 0x00000048 0x02068038 0x00000068 0x00000000 new N N ??(0) ?? 47 007435 0x02068150 0x00000048 0x02068140 0x00000068 0x00000000 new N N ??(0) ?? 48 007439 0x02068258 0x00000048 0x02068248 0x00000068 0x00000000 new N N ??(0) ?? 49 007542 0x02068360 0x00000028 0x02068350 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 50 007543 0x020683E8 0x00000048 0x020683D8 0x00000068 0x00000000 new N N ??(0) ?? 51 007548 0x0206AC48 0x00000048 0x0206AC38 0x00000068 0x00000000 new N N ??(0) ?? 52 007552 0x0206AD50 0x00000048 0x0206AD40 0x00000068 0x00000000 new N N ??(0) ?? 53 007556 0x0206AEB8 0x00000048 0x0206AEA8 0x00000068 0x00000000 new N N ??(0) ?? 54 026371 0x0206D1F0 0x00000018 0x0206D1E0 0x00000038 0x00000000 new N N ??(0) ?? 55 026367 0x0206E0D0 0x00000170 0x0206E0C0 0x00000190 0x00000000 new N N ogreilluminationmanager.cpp(125) OgreIlluminationManager::getSingleton 56 026384 0x0206E2A0 0x00000018 0x0206E290 0x00000038 0x00000000 new N N ??(0) ?? 57 026385 0x0206E318 0x00000018 0x0206E308 0x00000038 0x00000000 new N N ??(0) ?? 58 007564 0x0207D038 0x00000048 0x0207D028 0x00000068 0x00000000 new N N ??(0) ?? 59 007568 0x0207D178 0x00000048 0x0207D168 0x00000068 0x00000000 new N N ??(0) ?? 60 007572 0x0207D280 0x00000048 0x0207D270 0x00000068 0x00000000 new N N ??(0) ?? 61 007576 0x0207D388 0x00000048 0x0207D378 0x00000068 0x00000000 new N N ??(0) ?? 62 007580 0x0207D490 0x00000048 0x0207D480 0x00000068 0x00000000 new N N ??(0) ?? 63 007584 0x0207D598 0x00000048 0x0207D588 0x00000068 0x00000000 new N N ??(0) ?? 64 007779 0x0207E2A0 0x00000048 0x0207E290 0x00000068 0x00000000 new N N ??(0) ?? 65 007773 0x0207E3F8 0x00000028 0x0207E3E8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 66 007774 0x02088800 0x00000048 0x020887F0 0x00000068 0x00000000 new N N ??(0) ?? 67 007783 0x02088A28 0x00000048 0x02088A18 0x00000068 0x00000000 new N N ??(0) ?? 68 007787 0x02088B90 0x00000048 0x02088B80 0x00000068 0x00000000 new N N ??(0) ?? 69 007791 0x02088C98 0x00000048 0x02088C88 0x00000068 0x00000000 new N N ??(0) ?? 70 007795 0x02088D40 0x00000048 0x02088D30 0x00000068 0x00000000 new N N ??(0) ?? 71 007799 0x02088E48 0x00000048 0x02088E38 0x00000068 0x00000000 new N N ??(0) ?? 72 007803 0x02088F50 0x00000048 0x02088F40 0x00000068 0x00000000 new N N ??(0) ?? 73 007807 0x02089058 0x00000048 0x02089048 0x00000068 0x00000000 new N N ??(0) ?? 74 007811 0x02089160 0x00000048 0x02089150 0x00000068 0x00000000 new N N ??(0) ?? 75 007815 0x02089268 0x00000048 0x02089258 0x00000068 0x00000000 new N N ??(0) ?? 76 007938 0x020895F0 0x00000028 0x020895E0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 77 007939 0x0208BBF8 0x00000048 0x0208BBE8 0x00000068 0x00000000 new N N ??(0) ?? 78 007944 0x0208BD00 0x00000048 0x0208BCF0 0x00000068 0x00000000 new N N ??(0) ?? 79 007948 0x0208BE08 0x00000048 0x0208BDF8 0x00000068 0x00000000 new N N ??(0) ?? 80 007952 0x0208BF70 0x00000048 0x0208BF60 0x00000068 0x00000000 new N N ??(0) ?? 81 007956 0x0208C078 0x00000048 0x0208C068 0x00000068 0x00000000 new N N ??(0) ?? 82 007960 0x0208C120 0x00000048 0x0208C110 0x00000068 0x00000000 new N N ??(0) ?? 83 007964 0x0208C228 0x00000048 0x0208C218 0x00000068 0x00000000 new N N ??(0) ?? 84 007968 0x0208C330 0x00000048 0x0208C320 0x00000068 0x00000000 new N N ??(0) ?? 85 007972 0x0208C438 0x00000048 0x0208C428 0x00000068 0x00000000 new N N ??(0) ?? 86 007976 0x0208C540 0x00000048 0x0208C530 0x00000068 0x00000000 new N N ??(0) ?? 87 007980 0x0208C648 0x00000048 0x0208C638 0x00000068 0x00000000 new N N ??(0) ?? 88 008181 0x0208D388 0x00000048 0x0208D378 0x00000068 0x00000000 new N N ??(0) ?? 89 008175 0x0208D4E0 0x00000028 0x0208D4D0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 90 026382 0x0208F2C8 0x00000018 0x0208F2B8 0x00000038 0x00000000 new N N ??(0) ?? 91 008176 0x034A1CA8 0x00000048 0x034A1C98 0x00000068 0x00000000 new N N ??(0) ?? 92 008185 0x034A1ED0 0x00000048 0x034A1EC0 0x00000068 0x00000000 new N N ??(0) ?? 93 008189 0x034A2038 0x00000048 0x034A2028 0x00000068 0x00000000 new N N ??(0) ?? 94 008193 0x034A2140 0x00000048 0x034A2130 0x00000068 0x00000000 new N N ??(0) ?? 95 008197 0x034A21E8 0x00000048 0x034A21D8 0x00000068 0x00000000 new N N ??(0) ?? 96 008201 0x034A22F0 0x00000048 0x034A22E0 0x00000068 0x00000000 new N N ??(0) ?? 97 008205 0x034A23F8 0x00000048 0x034A23E8 0x00000068 0x00000000 new N N ??(0) ?? 98 008209 0x034A2500 0x00000048 0x034A24F0 0x00000068 0x00000000 new N N ??(0) ?? 99 008213 0x034A2608 0x00000048 0x034A25F8 0x00000068 0x00000000 new N N ??(0) ?? 100 008217 0x034A2710 0x00000048 0x034A2700 0x00000068 0x00000000 new N N ??(0) ?? 101 026386 0x034A33D8 0x00000018 0x034A33C8 0x00000038 0x00000000 new N N ??(0) ?? 102 026387 0x034A3450 0x00000018 0x034A3440 0x00000038 0x00000000 new N N ??(0) ?? 103 027899 0x034A4FC8 0x000000D0 0x034A4FB8 0x000000F0 0x00000000 new N N ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight 104 009388 0x034C56B0 0x00000048 0x034C56A0 0x00000068 0x00000000 new N N ??(0) ?? 105 009364 0x034C5B00 0x00000028 0x034C5AF0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 106 009365 0x034C6248 0x00000048 0x034C6238 0x00000068 0x00000000 new N N ??(0) ?? 107 009370 0x034C62F0 0x00000048 0x034C62E0 0x00000068 0x00000000 new N N ??(0) ?? 108 009374 0x034C6398 0x00000048 0x034C6388 0x00000068 0x00000000 new N N ??(0) ?? 109 009378 0x034C6440 0x00000048 0x034C6430 0x00000068 0x00000000 new N N ??(0) ?? 110 009382 0x034C64E8 0x00000028 0x034C64D8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 111 009383 0x034C6570 0x00000048 0x034C6560 0x00000068 0x00000000 new N N ??(0) ?? 112 009392 0x034C67B0 0x00000048 0x034C67A0 0x00000068 0x00000000 new N N ??(0) ?? 113 009396 0x034C6858 0x00000048 0x034C6848 0x00000068 0x00000000 new N N ??(0) ?? 114 009720 0x034C70F8 0x00000028 0x034C70E8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 115 009726 0x034C77C8 0x00000048 0x034C77B8 0x00000068 0x00000000 new N N ??(0) ?? 116 009738 0x034C7870 0x00000028 0x034C7860 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 117 009721 0x034C78F8 0x00000048 0x034C78E8 0x00000068 0x00000000 new N N ??(0) ?? 118 009744 0x034C79A0 0x00000048 0x034C7990 0x00000068 0x00000000 new N N ??(0) ?? 119 009730 0x034C7AD0 0x00000048 0x034C7AC0 0x00000068 0x00000000 new N N ??(0) ?? 120 009734 0x034C7B78 0x00000048 0x034C7B68 0x00000068 0x00000000 new N N ??(0) ?? 121 009739 0x034C7C20 0x00000048 0x034C7C10 0x00000068 0x00000000 new N N ??(0) ?? 122 009748 0x034C7DF8 0x00000048 0x034C7DE8 0x00000068 0x00000000 new N N ??(0) ?? 123 009752 0x034C7EA0 0x00000048 0x034C7E90 0x00000068 0x00000000 new N N ??(0) ?? 124 009894 0x034C99F0 0x00000028 0x034C99E0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 125 009895 0x034C9A78 0x00000048 0x034C9A68 0x00000068 0x00000000 new N N ??(0) ?? 126 009900 0x034C9B80 0x00000048 0x034C9B70 0x00000068 0x00000000 new N N ??(0) ?? 127 009904 0x034C9C28 0x00000048 0x034C9C18 0x00000068 0x00000000 new N N ??(0) ?? 128 009908 0x034C9CD0 0x00000048 0x034C9CC0 0x00000068 0x00000000 new N N ??(0) ?? 129 009912 0x034C9D78 0x00000028 0x034C9D68 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 130 009913 0x034C9E00 0x00000048 0x034C9DF0 0x00000068 0x00000000 new N N ??(0) ?? 131 009918 0x034C9F10 0x00000048 0x034C9F00 0x00000068 0x00000000 new N N ??(0) ?? 132 009922 0x034C9FB8 0x00000048 0x034C9FA8 0x00000068 0x00000000 new N N ??(0) ?? 133 009926 0x034CA060 0x00000048 0x034CA050 0x00000068 0x00000000 new N N ??(0) ?? 134 009546 0x034D3750 0x00000028 0x034D3740 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 135 009547 0x034D37D8 0x00000048 0x034D37C8 0x00000068 0x00000000 new N N ??(0) ?? 136 009552 0x034D38E0 0x00000048 0x034D38D0 0x00000068 0x00000000 new N N ??(0) ?? 137 009556 0x034D3988 0x00000048 0x034D3978 0x00000068 0x00000000 new N N ??(0) ?? 138 009560 0x034D3A30 0x00000048 0x034D3A20 0x00000068 0x00000000 new N N ??(0) ?? 139 009564 0x034D3AD8 0x00000028 0x034D3AC8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 140 009565 0x034D3B60 0x00000048 0x034D3B50 0x00000068 0x00000000 new N N ??(0) ?? 141 009570 0x034D3C70 0x00000048 0x034D3C60 0x00000068 0x00000000 new N N ??(0) ?? 142 009574 0x034D3D18 0x00000048 0x034D3D08 0x00000068 0x00000000 new N N ??(0) ?? 143 009578 0x034D3DC0 0x00000048 0x034D3DB0 0x00000068 0x00000000 new N N ??(0) ?? 144 027955 0x034DF680 0x00000018 0x034DF670 0x00000038 0x00000000 new N N ??(0) ?? 145 027904 0x034E2480 0x000000E0 0x034E2470 0x00000100 0x00000000 new N N ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight 146 010422 0x034E2C38 0x00000048 0x034E2C28 0x00000068 0x00000000 new N N ??(0) ?? 147 010416 0x034E3320 0x00000028 0x034E3310 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 148 010417 0x034E33A8 0x00000048 0x034E3398 0x00000068 0x00000000 new N N ??(0) ?? 149 027981 0x034E9400 0x00000018 0x034E93F0 0x00000038 0x00000000 new N N ??(0) ?? 150 027931 0x034E9CF0 0x00000030 0x034E9CE0 0x00000050 0x00000000 new N N ??(0) ?? 151 011786 0x03507648 0x00000028 0x03507638 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 152 011774 0x035076E0 0x00000048 0x035076D0 0x00000068 0x00000000 new N N ??(0) ?? 153 011778 0x03507788 0x00000048 0x03507778 0x00000068 0x00000000 new N N ??(0) ?? 154 011782 0x03507830 0x00000048 0x03507820 0x00000068 0x00000000 new N N ??(0) ?? 155 011787 0x035078D8 0x00000048 0x035078C8 0x00000068 0x00000000 new N N ??(0) ?? 156 011804 0x03507980 0x00000028 0x03507970 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 157 011792 0x03507A18 0x00000048 0x03507A08 0x00000068 0x00000000 new N N ??(0) ?? 158 011796 0x03507AC0 0x00000048 0x03507AB0 0x00000068 0x00000000 new N N ??(0) ?? 159 011800 0x03507B68 0x00000048 0x03507B58 0x00000068 0x00000000 new N N ??(0) ?? 160 011805 0x03507C10 0x00000048 0x03507C00 0x00000068 0x00000000 new N N ??(0) ?? 161 011810 0x03507D50 0x00000048 0x03507D40 0x00000068 0x00000000 new N N ??(0) ?? 162 011814 0x03507DF8 0x00000048 0x03507DE8 0x00000068 0x00000000 new N N ??(0) ?? 163 011818 0x03507F00 0x00000048 0x03507EF0 0x00000068 0x00000000 new N N ??(0) ?? 164 011822 0x03508008 0x00000048 0x03507FF8 0x00000068 0x00000000 new N N ??(0) ?? 165 011826 0x03508110 0x00000048 0x03508100 0x00000068 0x00000000 new N N ??(0) ?? 166 011830 0x035081B8 0x00000048 0x035081A8 0x00000068 0x00000000 new N N ??(0) ?? 167 011769 0x035187A0 0x00000048 0x03518790 0x00000068 0x00000000 new N N ??(0) ?? 168 011768 0x03518F80 0x00000028 0x03518F70 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 169 027929 0x0351D140 0x00000018 0x0351D130 0x00000038 0x00000000 new N N ??(0) ?? 170 037551 0x03522FC8 0x00000008 0x03522FB8 0x00000028 0x00000000 new N N ??(0) ?? 171 012597 0x0352ED18 0x00000028 0x0352ED08 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 172 012603 0x0352EDA0 0x00000048 0x0352ED90 0x00000068 0x00000000 new N N ??(0) ?? 173 012598 0x0352EE48 0x00000048 0x0352EE38 0x00000068 0x00000000 new N N ??(0) ?? 174 012758 0x0352F888 0x00000048 0x0352F878 0x00000068 0x00000000 new N N ??(0) ?? 175 012752 0x0352FEA0 0x00000028 0x0352FE90 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 176 012753 0x0352FF28 0x00000048 0x0352FF18 0x00000068 0x00000000 new N N ??(0) ?? 177 027901 0x0354B9A8 0x00000018 0x0354B998 0x00000038 0x00000000 new N N ??(0) ?? 178 027900 0x0355B2D0 0x00000018 0x0355B2C0 0x00000038 0x00000000 new N N ??(0) ?? 179 026377 0x0356D6D8 0x00000018 0x0356D6C8 0x00000038 0x00000000 new N N ??(0) ?? 180 026368 0x03577CA8 0x0000000C 0x03577C98 0x0000002C 0x00000000 new N N ??(0) ?? 181 026381 0x035B33C0 0x00000018 0x035B33B0 0x00000038 0x00000000 new N N ??(0) ?? 182 026369 0x035B4A90 0x00000018 0x035B4A80 0x00000038 0x00000000 new N N ??(0) ?? 183 024419 0x035C2B48 0x00000048 0x035C2B38 0x00000068 0x00000000 new N N ??(0) ?? 184 026390 0x035C3750 0x00000018 0x035C3740 0x00000038 0x00000000 new N N ??(0) ?? 185 026391 0x035C37C8 0x00000018 0x035C37B8 0x00000038 0x00000000 new N N ??(0) ?? 186 026392 0x035C3840 0x00000018 0x035C3830 0x00000038 0x00000000 new N N ??(0) ?? 187 027930 0x035C3D08 0x000000CC 0x035C3CF8 0x000000EC 0x00000000 new N N ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 188 026376 0x035C4560 0x00000008 0x035C4550 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(78) OgreIlluminationManager::OgreIlluminati 189 026378 0x035C4630 0x00000018 0x035C4620 0x00000038 0x00000000 new N N ??(0) ?? 190 026380 0x035C47F0 0x00000018 0x035C47E0 0x00000038 0x00000000 new N N ??(0) ?? 191 027957 0x035CE288 0x00000030 0x035CE278 0x00000050 0x00000000 new N N ??(0) ?? 192 026375 0x035D32B8 0x00000018 0x035D32A8 0x00000038 0x00000000 new N N ??(0) ?? 193 026373 0x035D3558 0x00000030 0x035D3548 0x00000050 0x00000000 new N N ??(0) ?? 194 027634 0x035D6248 0x00000004 0x035D6238 0x00000024 0x00000000 new N N ??(0) ?? 195 027905 0x035DEFA8 0x00000030 0x035DEF98 0x00000050 0x00000000 new N N ??(0) ?? 196 024413 0x035DFDE0 0x00000028 0x035DFDD0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 197 024414 0x035E04C8 0x00000048 0x035E04B8 0x00000068 0x00000000 new N N ??(0) ?? 198 024423 0x035E06F0 0x00000048 0x035E06E0 0x00000068 0x00000000 new N N ??(0) ?? 199 024427 0x035E0858 0x00000048 0x035E0848 0x00000068 0x00000000 new N N ??(0) ?? 200 024431 0x035E0960 0x00000048 0x035E0950 0x00000068 0x00000000 new N N ??(0) ?? 201 024435 0x035E0A08 0x00000048 0x035E09F8 0x00000068 0x00000000 new N N ??(0) ?? 202 026403 0x035E6430 0x00000030 0x035E6420 0x00000050 0x00000000 new N N ??(0) ?? 203 026404 0x035E64C0 0x00000030 0x035E64B0 0x00000050 0x00000000 new N N ??(0) ?? 204 026405 0x035E6550 0x00000030 0x035E6540 0x00000050 0x00000000 new N N ??(0) ?? 205 026406 0x035E65E0 0x00000030 0x035E65D0 0x00000050 0x00000000 new N N ??(0) ?? 206 026407 0x035E6670 0x00000030 0x035E6660 0x00000050 0x00000000 new N N ??(0) ?? 207 026408 0x035E6700 0x00000030 0x035E66F0 0x00000050 0x00000000 new N N ??(0) ?? 208 026409 0x035E6790 0x00000030 0x035E6780 0x00000050 0x00000000 new N N ??(0) ?? 209 026410 0x035E6820 0x00000030 0x035E6810 0x00000050 0x00000000 new N N ??(0) ?? 210 026411 0x035E68B0 0x00000030 0x035E68A0 0x00000050 0x00000000 new N N ??(0) ?? 211 026412 0x035E6940 0x00000030 0x035E6930 0x00000050 0x00000000 new N N ??(0) ?? 212 026413 0x035E69D0 0x00000030 0x035E69C0 0x00000050 0x00000000 new N N ??(0) ?? 213 026414 0x035E6A60 0x00000030 0x035E6A50 0x00000050 0x00000000 new N N ??(0) ?? 214 026415 0x035E6AF0 0x00000030 0x035E6AE0 0x00000050 0x00000000 new N N ??(0) ?? 215 026416 0x035E6B80 0x00000030 0x035E6B70 0x00000050 0x00000000 new N N ??(0) ?? 216 026417 0x035E6C10 0x00000030 0x035E6C00 0x00000050 0x00000000 new N N ??(0) ?? 217 026418 0x035E6CA0 0x00000030 0x035E6C90 0x00000050 0x00000000 new N N ??(0) ?? 218 026420 0x035E6D30 0x000000C0 0x035E6D20 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 219 026421 0x035E6E50 0x00000030 0x035E6E40 0x00000050 0x00000000 new N N ??(0) ?? 220 026422 0x035E6EE0 0x00000030 0x035E6ED0 0x00000050 0x00000000 new N N ??(0) ?? 221 026423 0x035E6F70 0x00000030 0x035E6F60 0x00000050 0x00000000 new N N ??(0) ?? 222 026424 0x035E7000 0x00000030 0x035E6FF0 0x00000050 0x00000000 new N N ??(0) ?? 223 026425 0x035E7090 0x00000030 0x035E7080 0x00000050 0x00000000 new N N ??(0) ?? 224 026426 0x035E7120 0x00000030 0x035E7110 0x00000050 0x00000000 new N N ??(0) ?? 225 026427 0x035E71B0 0x00000030 0x035E71A0 0x00000050 0x00000000 new N N ??(0) ?? 226 026428 0x035E7240 0x00000030 0x035E7230 0x00000050 0x00000000 new N N ??(0) ?? 227 026429 0x035E72D0 0x00000030 0x035E72C0 0x00000050 0x00000000 new N N ??(0) ?? 228 026430 0x035E7360 0x00000030 0x035E7350 0x00000050 0x00000000 new N N ??(0) ?? 229 026438 0x035E73F0 0x0000000C 0x035E73E0 0x0000002C 0x00000000 new N N ??(0) ?? 230 027903 0x035EB788 0x00000030 0x035EB778 0x00000050 0x00000000 new N N ??(0) ?? 231 027902 0x035EE0C8 0x00000030 0x035EE0B8 0x00000050 0x00000000 new N N ??(0) ?? 232 026374 0x03607D90 0x00000030 0x03607D80 0x00000050 0x00000000 new N N ??(0) ?? 233 026388 0x03607F18 0x00000018 0x03607F08 0x00000038 0x00000000 new N N ??(0) ?? 234 026389 0x03607F90 0x00000018 0x03607F80 0x00000038 0x00000000 new N N ??(0) ?? 235 027956 0x03613A18 0x000000B4 0x03613A08 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 236 026372 0x03619E68 0x00000018 0x03619E58 0x00000038 0x00000000 new N N ??(0) ?? 237 026467 0x0361A018 0x00000030 0x0361A008 0x00000050 0x00000000 new N N ??(0) ?? 238 026468 0x0361A0A8 0x00000030 0x0361A098 0x00000050 0x00000000 new N N ??(0) ?? 239 026469 0x0361A138 0x00000030 0x0361A128 0x00000050 0x00000000 new N N ??(0) ?? 240 026470 0x0361A1C8 0x00000030 0x0361A1B8 0x00000050 0x00000000 new N N ??(0) ?? 241 026471 0x0361A258 0x00000030 0x0361A248 0x00000050 0x00000000 new N N ??(0) ?? 242 026472 0x0361A2E8 0x00000030 0x0361A2D8 0x00000050 0x00000000 new N N ??(0) ?? 243 026474 0x0361A378 0x00000068 0x0361A368 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 244 026475 0x0361A440 0x00000030 0x0361A430 0x00000050 0x00000000 new N N ??(0) ?? 245 026476 0x0361A4D0 0x00000030 0x0361A4C0 0x00000050 0x00000000 new N N ??(0) ?? 246 026477 0x0361A5C0 0x00000030 0x0361A5B0 0x00000050 0x00000000 new N N ??(0) ?? 247 026478 0x0361A6B0 0x00000030 0x0361A6A0 0x00000050 0x00000000 new N N ??(0) ?? 248 026479 0x0361A7A0 0x0000000C 0x0361A790 0x0000002C 0x00000000 new N N ??(0) ?? 249 026480 0x0361A808 0x000000F8 0x0361A7F8 0x00000118 0x00000000 new N N ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 250 026481 0x0361A960 0x00000030 0x0361A950 0x00000050 0x00000000 new N N ??(0) ?? 251 026482 0x0361A9F0 0x00000030 0x0361A9E0 0x00000050 0x00000000 new N N ??(0) ?? 252 026483 0x0361AAE0 0x00000030 0x0361AAD0 0x00000050 0x00000000 new N N ??(0) ?? 253 026484 0x0361ABD0 0x00000030 0x0361ABC0 0x00000050 0x00000000 new N N ??(0) ?? 254 026485 0x0361ACC0 0x00000030 0x0361ACB0 0x00000050 0x00000000 new N N ??(0) ?? 255 026486 0x0361ADB0 0x00000030 0x0361ADA0 0x00000050 0x00000000 new N N ??(0) ?? 256 026487 0x0361AE40 0x00000030 0x0361AE30 0x00000050 0x00000000 new N N ??(0) ?? 257 026488 0x0361AF30 0x00000030 0x0361AF20 0x00000050 0x00000000 new N N ??(0) ?? 258 026489 0x0361B020 0x00000030 0x0361B010 0x00000050 0x00000000 new N N ??(0) ?? 259 026490 0x0361B110 0x00000030 0x0361B100 0x00000050 0x00000000 new N N ??(0) ?? 260 026491 0x0361B200 0x00000030 0x0361B1F0 0x00000050 0x00000000 new N N ??(0) ?? 261 026492 0x0361B2F0 0x00000030 0x0361B2E0 0x00000050 0x00000000 new N N ??(0) ?? 262 026493 0x0361B3E0 0x0000000C 0x0361B3D0 0x0000002C 0x00000000 new N N ??(0) ?? 263 026494 0x0361B448 0x00000030 0x0361B438 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 264 026495 0x0361B4D8 0x00000030 0x0361B4C8 0x00000050 0x00000000 new N N ??(0) ?? 265 026496 0x0361B568 0x00000030 0x0361B558 0x00000050 0x00000000 new N N ??(0) ?? 266 026497 0x0361B5F8 0x0000000C 0x0361B5E8 0x0000002C 0x00000000 new N N ??(0) ?? 267 026498 0x0361B660 0x00000030 0x0361B650 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 268 026499 0x0361B6F0 0x00000030 0x0361B6E0 0x00000050 0x00000000 new N N ??(0) ?? 269 026500 0x0361B780 0x00000030 0x0361B770 0x00000050 0x00000000 new N N ??(0) ?? 270 026501 0x0361B810 0x0000000C 0x0361B800 0x0000002C 0x00000000 new N N ??(0) ?? 271 026502 0x0361B878 0x000000B4 0x0361B868 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(111) OgreIlluminationManager::OgreIlluminati 272 026503 0x0361B988 0x00000030 0x0361B978 0x00000050 0x00000000 new N N ??(0) ?? 273 026504 0x0361BA18 0x00000030 0x0361BA08 0x00000050 0x00000000 new N N ??(0) ?? 274 026505 0x0361BAA8 0x00000030 0x0361BA98 0x00000050 0x00000000 new N N ??(0) ?? 275 026512 0x0361BB38 0x00000030 0x0361BB28 0x00000050 0x00000000 new N N ??(0) ?? 276 026513 0x0361BBC8 0x00000030 0x0361BBB8 0x00000050 0x00000000 new N N ??(0) ?? 277 026515 0x0361BC58 0x00000080 0x0361BC48 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(113) OgreIlluminationManager::OgreIlluminati 278 026516 0x0361BD38 0x00000030 0x0361BD28 0x00000050 0x00000000 new N N ??(0) ?? 279 026517 0x0361BDC8 0x00000030 0x0361BDB8 0x00000050 0x00000000 new N N ??(0) ?? 280 026518 0x0361BE58 0x00000030 0x0361BE48 0x00000050 0x00000000 new N N ??(0) ?? 281 026519 0x0361BEE8 0x00000030 0x0361BED8 0x00000050 0x00000000 new N N ??(0) ?? 282 026520 0x0361BF78 0x00000030 0x0361BF68 0x00000050 0x00000000 new N N ??(0) ?? 283 026521 0x0361C008 0x00000030 0x0361BFF8 0x00000050 0x00000000 new N N ??(0) ?? 284 026522 0x0361C0F8 0x00000030 0x0361C0E8 0x00000050 0x00000000 new N N ??(0) ?? 285 026431 0x0361DB48 0x00000030 0x0361DB38 0x00000050 0x00000000 new N N ??(0) ?? 286 026432 0x0361DBD8 0x00000030 0x0361DBC8 0x00000050 0x00000000 new N N ??(0) ?? 287 026433 0x0361DC68 0x00000030 0x0361DC58 0x00000050 0x00000000 new N N ??(0) ?? 288 026434 0x0361DCF8 0x00000030 0x0361DCE8 0x00000050 0x00000000 new N N ??(0) ?? 289 026435 0x0361DD88 0x00000030 0x0361DD78 0x00000050 0x00000000 new N N ??(0) ?? 290 026436 0x0361DE18 0x00000030 0x0361DE08 0x00000050 0x00000000 new N N ??(0) ?? 291 026437 0x0361DEA8 0x00000030 0x0361DE98 0x00000050 0x00000000 new N N ??(0) ?? 292 026439 0x0361DF38 0x000000C4 0x0361DF28 0x000000E4 0x00000000 new N N ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 293 026440 0x0361E058 0x00000030 0x0361E048 0x00000050 0x00000000 new N N ??(0) ?? 294 026441 0x0361E0E8 0x00000030 0x0361E0D8 0x00000050 0x00000000 new N N ??(0) ?? 295 026442 0x0361E178 0x00000030 0x0361E168 0x00000050 0x00000000 new N N ??(0) ?? 296 026443 0x0361E208 0x00000030 0x0361E1F8 0x00000050 0x00000000 new N N ??(0) ?? 297 026444 0x0361E298 0x00000030 0x0361E288 0x00000050 0x00000000 new N N ??(0) ?? 298 026445 0x0361E328 0x00000030 0x0361E318 0x00000050 0x00000000 new N N ??(0) ?? 299 026446 0x0361E3B8 0x00000030 0x0361E3A8 0x00000050 0x00000000 new N N ??(0) ?? 300 026447 0x0361E448 0x00000030 0x0361E438 0x00000050 0x00000000 new N N ??(0) ?? 301 026448 0x0361E4D8 0x00000030 0x0361E4C8 0x00000050 0x00000000 new N N ??(0) ?? 302 026449 0x0361E568 0x00000030 0x0361E558 0x00000050 0x00000000 new N N ??(0) ?? 303 026450 0x0361E5F8 0x00000030 0x0361E5E8 0x00000050 0x00000000 new N N ??(0) ?? 304 026451 0x0361E688 0x00000030 0x0361E678 0x00000050 0x00000000 new N N ??(0) ?? 305 026452 0x0361E718 0x00000030 0x0361E708 0x00000050 0x00000000 new N N ??(0) ?? 306 026453 0x0361E7A8 0x00000030 0x0361E798 0x00000050 0x00000000 new N N ??(0) ?? 307 026454 0x0361E838 0x00000030 0x0361E828 0x00000050 0x00000000 new N N ??(0) ?? 308 026455 0x0361E8C8 0x00000030 0x0361E8B8 0x00000050 0x00000000 new N N ??(0) ?? 309 026456 0x0361E958 0x00000030 0x0361E948 0x00000050 0x00000000 new N N ??(0) ?? 310 026457 0x0361E9E8 0x00000030 0x0361E9D8 0x00000050 0x00000000 new N N ??(0) ?? 311 026458 0x0361EA78 0x0000000C 0x0361EA68 0x0000002C 0x00000000 new N N ??(0) ?? 312 026459 0x0361EAE0 0x00000080 0x0361EAD0 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 313 026460 0x0361EBC0 0x00000030 0x0361EBB0 0x00000050 0x00000000 new N N ??(0) ?? 314 026461 0x0361EC50 0x00000030 0x0361EC40 0x00000050 0x00000000 new N N ??(0) ?? 315 026462 0x0361ECE0 0x00000030 0x0361ECD0 0x00000050 0x00000000 new N N ??(0) ?? 316 026463 0x0361ED70 0x00000030 0x0361ED60 0x00000050 0x00000000 new N N ??(0) ?? 317 026464 0x0361EE00 0x00000030 0x0361EDF0 0x00000050 0x00000000 new N N ??(0) ?? 318 026465 0x0361EE90 0x00000030 0x0361EE80 0x00000050 0x00000000 new N N ??(0) ?? 319 026466 0x0361EF20 0x00000030 0x0361EF10 0x00000050 0x00000000 new N N ??(0) ?? 320 026473 0x0361EFB0 0x0000000C 0x0361EFA0 0x0000002C 0x00000000 new N N ??(0) ?? 321 026506 0x03626C58 0x00000030 0x03626C48 0x00000050 0x00000000 new N N ??(0) ?? 322 026507 0x03626CE8 0x00000030 0x03626CD8 0x00000050 0x00000000 new N N ??(0) ?? 323 026508 0x03626D78 0x00000030 0x03626D68 0x00000050 0x00000000 new N N ??(0) ?? 324 026509 0x03626E08 0x00000030 0x03626DF8 0x00000050 0x00000000 new N N ??(0) ?? 325 026510 0x03626E98 0x00000030 0x03626E88 0x00000050 0x00000000 new N N ??(0) ?? 326 026511 0x03626F28 0x00000030 0x03626F18 0x00000050 0x00000000 new N N ??(0) ?? 327 026514 0x03626FB8 0x0000000C 0x03626FA8 0x0000002C 0x00000000 new N N ??(0) ?? 328 026523 0x03627020 0x00000030 0x03627010 0x00000050 0x00000000 new N N ??(0) ?? 329 026524 0x036270B0 0x00000030 0x036270A0 0x00000050 0x00000000 new N N ??(0) ?? 330 026525 0x03627140 0x00000030 0x03627130 0x00000050 0x00000000 new N N ??(0) ?? 331 026526 0x036271D0 0x00000030 0x036271C0 0x00000050 0x00000000 new N N ??(0) ?? 332 026527 0x03627260 0x0000000C 0x03627250 0x0000002C 0x00000000 new N N ??(0) ?? 333 027617 0x0365D900 0x00000004 0x0365D8F0 0x00000024 0x00000000 new N N ??(0) ?? 334 027601 0x03661730 0x000000C0 0x03661720 0x000000E0 0x00000000 new N N ogreilluminationmanager.cpp(212) OgreIlluminationManager::initTechniques 335 027611 0x036620F8 0x0000001C 0x036620E8 0x0000003C 0x00000000 new N N ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 336 027612 0x03662170 0x000000D0 0x03662160 0x000000F0 0x00000000 new N N ogreilluminationmanager.cpp(218) OgreIlluminationManager::initTechniques 337 027613 0x036622A0 0x00000018 0x03662290 0x00000038 0x00000000 new N N ??(0) ?? 338 027614 0x03662318 0x00000018 0x03662308 0x00000038 0x00000000 new N N ??(0) ?? 339 027615 0x03662390 0x00000030 0x03662380 0x00000050 0x00000000 new N N ??(0) ?? 340 027616 0x03662420 0x0000000C 0x03662410 0x0000002C 0x00000000 new N N ??(0) ?? 341 027618 0x03662488 0x00000018 0x03662478 0x00000038 0x00000000 new N N ??(0) ?? 342 027630 0x036625C0 0x00000104 0x036625B0 0x00000124 0x00000000 new N N ogredepthshadowrecieverrendertechnique.(263) OgreDepthShadowRecieverRenderTechniqueF 343 027664 0x036679D8 0x00000004 0x036679C8 0x00000024 0x00000000 new N N ??(0) ?? -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log
r2175 r2179 1 1 -------------------------------------------------------------------------------- 2 2 3 OgreMemory.log - Memory logging file created on Wed Feb 28 17:48:0320073 OgreMemory.log - Memory logging file created on Thu Mar 01 18:01:22 2007 4 4 5 5 -------------------------------------------------------------------------------- -
GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log
r2175 r2179 1 18:03:18: Creating resource group General 2 18:03:18: Creating resource group Internal 3 18:03:18: Creating resource group Autodetect 4 18:03:18: Registering ResourceManager for type Material 5 18:03:18: Registering ResourceManager for type Mesh 6 18:03:18: Registering ResourceManager for type Skeleton 7 18:03:18: MovableObjectFactory for type 'ParticleSystem' registered. 8 18:03:18: Loading library OgrePlatform.dll 9 18:03:18: OverlayElementFactory for type Panel registered. 10 18:03:18: OverlayElementFactory for type BorderPanel registered. 11 18:03:18: OverlayElementFactory for type TextArea registered. 12 18:03:18: Registering ResourceManager for type Font 13 18:03:18: ArchiveFactory for archive type FileSystem registered. 14 18:03:18: ArchiveFactory for archive type Zip registered. 15 18:03:18: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 18:03:18: 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 18:03:18: Registering ResourceManager for type HighLevelGpuProgram 18 18:03:18: Registering ResourceManager for type Compositor 19 18:03:18: MovableObjectFactory for type 'Entity' registered. 20 18:03:18: MovableObjectFactory for type 'Light' registered. 21 18:03:18: MovableObjectFactory for type 'BillboardSet' registered. 22 18:03:18: MovableObjectFactory for type 'ManualObject' registered. 23 18:03:18: MovableObjectFactory for type 'BillboardChain' registered. 24 18:03:18: MovableObjectFactory for type 'RibbonTrail' registered. 25 18:03:18: Loading library .\RenderSystem_Direct3D9 26 18:03:18: D3D9 : Direct3D9 Rendering Subsystem created. 27 18:03:18: D3D9: Driver Detection Starts 28 18:03:18: D3D9: Driver Detection Ends 29 18:03:18: Loading library .\Plugin_ParticleFX 30 18:03:18: Particle Emitter Type 'Point' registered 31 18:03:18: Particle Emitter Type 'Box' registered 32 18:03:18: Particle Emitter Type 'Ellipsoid' registered 33 18:03:18: Particle Emitter Type 'Cylinder' registered 34 18:03:18: Particle Emitter Type 'Ring' registered 35 18:03:18: Particle Emitter Type 'HollowEllipsoid' registered 36 18:03:18: Particle Affector Type 'LinearForce' registered 37 18:03:18: Particle Affector Type 'ColourFader' registered 38 18:03:18: Particle Affector Type 'ColourFader2' registered 39 18:03:18: Particle Affector Type 'ColourImage' registered 40 18:03:18: Particle Affector Type 'ColourInterpolator' registered 41 18:03:18: Particle Affector Type 'Scaler' registered 42 18:03:18: Particle Affector Type 'Rotator' registered 43 18:03:18: Particle Affector Type 'DirectionRandomiser' registered 44 18:03:18: Particle Affector Type 'DeflectorPlane' registered 45 18:03:18: Loading library .\Plugin_BSPSceneManager 46 18:03:18: Registering ResourceManager for type BspLevel 47 18:03:18: Loading library .\Plugin_OctreeSceneManager 48 18:03:18: Loading library .\Plugin_CgProgramManager 49 18:03:18: Loading library .\Plugin_VisibilitySceneManager 50 18:03:20: *-*-* OGRE Initialising 51 18:03:20: *-*-* Version 1.2.0 (Dagon) 52 18:03:20: Creating resource group Bootstrap 53 18:03:20: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 54 18:03:20: Creating resource group GTP_Basic 55 18:03:20: Added resource location '../../Media/materials/GTPBasic' of type 'FileSystem' to resource group 'GTP_Basic' 56 18:03:20: Creating resource group GTP_Caustic 57 18:03:20: Added resource location '../../Media/materials/GTPCaustic' of type 'FileSystem' to resource group 'GTP_Caustic' 58 18:03:20: Creating resource group GTP_Demo 59 18:03:20: Added resource location '../../Media/Demo' of type 'FileSystem' to resource group 'GTP_Demo' 60 18:03:20: Creating resource group GTP_Diffuse 61 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/diffuse' of type 'FileSystem' to resource group 'GTP_Diffuse' 62 18:03:20: Creating resource group GTP_EnvMap 63 18:03:20: Added resource location '../../Media/materials/GTPEnvMap' of type 'FileSystem' to resource group 'GTP_EnvMap' 64 18:03:20: Creating resource group GTP_MultiBounce_Shared 65 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce' of type 'FileSystem' to resource group 'GTP_MultiBounce_Shared' 66 18:03:20: Creating resource group GTP_MultipleCausticRefraction 67 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleCausticRefraction' of type 'FileSystem' to resource group 'GTP_MultipleCausticRefraction' 68 18:03:20: Creating resource group GTP_MultipleCausticRefraction_MinMax 69 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleCausticRefractionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleCausticRefraction_MinMax' 70 18:03:20: Creating resource group GTP_MultipleReflection 71 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflection' of type 'FileSystem' to resource group 'GTP_MultipleReflection' 72 18:03:20: Creating resource group GTP_MultipleReflection_MinMax 73 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflectionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleReflection_MinMax' 74 18:03:20: Creating resource group GTP_MultipleRefraction 75 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction' of type 'FileSystem' to resource group 'GTP_MultipleRefraction' 76 18:03:20: Creating resource group GTP_MultipleRefraction_MinMax 77 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefractionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleRefraction_MinMax' 78 18:03:20: Creating resource group GTP_Particles 79 18:03:20: Added resource location '../../Media/materials/GTPParticles' of type 'FileSystem' to resource group 'GTP_Particles' 80 18:03:20: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 81 18:03:20: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 82 18:03:20: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 83 18:03:20: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 84 18:03:20: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 85 18:03:20: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 86 18:03:20: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 87 18:03:20: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 88 18:03:20: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 89 18:03:20: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 90 18:03:20: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 91 18:03:20: Creating resource group PostProc 92 18:03:20: Added resource location '../../Media/materials/GTPPostProc' of type 'FileSystem' to resource group 'PostProc' 93 18:03:20: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 94 18:03:20: D3D9 : RenderSystem Option: Anti aliasing = None 95 18:03:20: D3D9 : RenderSystem Option: Floating-point mode = Fastest 96 18:03:20: D3D9 : RenderSystem Option: Full Screen = No 97 18:03:20: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 98 18:03:20: D3D9 : RenderSystem Option: VSync = No 99 18:03:20: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 100 18:03:21: D3D9 : Subsystem Initialising 101 18:03:21: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 102 18:03:21: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 103 18:03:21: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 104 18:03:21: Registering ResourceManager for type Texture 105 18:03:21: Registering ResourceManager for type GpuProgram 106 18:03:21: RenderSystem capabilities 107 18:03:21: ------------------------- 108 18:03:21: * Hardware generation of mipmaps: yes 109 18:03:21: * Texture blending: yes 110 18:03:21: * Anisotropic texture filtering: yes 111 18:03:21: * Dot product texture operation: yes 112 18:03:21: * Cube mapping: yes 113 18:03:21: * Hardware stencil buffer: yes 114 18:03:21: - Stencil depth: 8 115 18:03:21: - Two sided stencil support: yes 116 18:03:21: - Wrap stencil values: yes 117 18:03:21: * Hardware vertex / index buffers: yes 118 18:03:21: * Vertex programs: yes 119 18:03:21: - Max vertex program version: vs_3_0 120 18:03:21: * Fragment programs: yes 121 18:03:21: - Max fragment program version: ps_3_0 122 18:03:21: * Texture Compression: yes 123 18:03:21: - DXT: yes 124 18:03:21: - VTC: no 125 18:03:21: * Scissor Rectangle: yes 126 18:03:21: * Hardware Occlusion Query: yes 127 18:03:21: * User clip planes: yes 128 18:03:21: * VET_UBYTE4 vertex element type: yes 129 18:03:21: * Infinite far plane projection: yes 130 18:03:21: * Hardware render-to-texture: yes 131 18:03:21: * Floating point textures: yes 132 18:03:21: * Non-power-of-two textures: yes 133 18:03:21: * Volume textures: yes 134 18:03:21: * Multiple Render Targets: 4 135 18:03:21: * Max Point Size: 8192 136 18:03:21: *************************************** 137 18:03:21: *** D3D9 : Subsystem Initialised OK *** 138 18:03:21: *************************************** 139 18:03:21: ResourceBackgroundQueue - threading disabled 140 18:03:21: Particle Renderer Type 'billboard' registered 141 18:03:21: Particle Renderer Type 'sprite' registered 142 18:03:21: creating occlusion culling scene manager 143 18:03:21: TerrainSceneManager: Registered a new PageSource for type Heightmap 144 18:03: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: 0 145 18:03:21: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 146 18:03:21: Initialising resource group Bootstrap 147 18:03:21: Parsing scripts for resource group Bootstrap 148 18:03:21: Parsing script OgreCore.material 149 18:03:21: Parsing script OgreProfiler.material 150 18:03:21: Parsing script Ogre.fontdef 151 18:03:21: Parsing script OgreDebugPanel.overlay 152 18:03: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. 153 18:03:21: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 154 18:03: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. 155 18:03:21: Font TrebuchetMSBoldusing texture size 512x512 156 18:03:21: Info: Freetype returned null for character 160 in font TrebuchetMSBold 157 18:03:21: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 158 18:03:21: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 159 18:03:21: Parsing script OgreLoadingPanel.overlay 160 18:03:21: Finished parsing scripts for resource group Bootstrap 161 18:03:21: Initialising resource group General 162 18:03:21: Parsing scripts for resource group General 163 18:03:21: Parsing script GameTools.program 164 18:03:21: Parsing script atlascube.material 165 18:03:21: Parsing script colorcube.material 166 18:03:21: Parsing script difflab.material 167 18:03:22: An exception has been thrown! 1 14:06:38: Creating resource group General 2 14:06:38: Creating resource group Internal 3 14:06:38: Creating resource group Autodetect 4 14:06:38: Registering ResourceManager for type Material 5 14:06:38: Registering ResourceManager for type Mesh 6 14:06:38: Registering ResourceManager for type Skeleton 7 14:06:38: MovableObjectFactory for type 'ParticleSystem' registered. 8 14:06:38: Loading library OgrePlatform.dll 9 14:06:38: OverlayElementFactory for type Panel registered. 10 14:06:38: OverlayElementFactory for type BorderPanel registered. 11 14:06:38: OverlayElementFactory for type TextArea registered. 12 14:06:38: Registering ResourceManager for type Font 13 14:06:38: ArchiveFactory for archive type FileSystem registered. 14 14:06:38: ArchiveFactory for archive type Zip registered. 15 14:06:38: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 14:06:38: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw 17 14:06:38: Registering ResourceManager for type HighLevelGpuProgram 18 14:06:38: Registering ResourceManager for type Compositor 19 14:06:38: MovableObjectFactory for type 'Entity' registered. 20 14:06:38: MovableObjectFactory for type 'Light' registered. 21 14:06:38: MovableObjectFactory for type 'BillboardSet' registered. 22 14:06:38: MovableObjectFactory for type 'ManualObject' registered. 23 14:06:38: MovableObjectFactory for type 'BillboardChain' registered. 24 14:06:38: MovableObjectFactory for type 'RibbonTrail' registered. 25 14:06:38: Loading library .\RenderSystem_Direct3D9 26 14:06:38: D3D9 : Direct3D9 Rendering Subsystem created. 27 14:06:38: D3D9: Driver Detection Starts 28 14:06:38: D3D9: Driver Detection Ends 29 14:06:38: Loading library .\Plugin_ParticleFX 30 14:06:38: Particle Emitter Type 'Point' registered 31 14:06:38: Particle Emitter Type 'Box' registered 32 14:06:38: Particle Emitter Type 'Ellipsoid' registered 33 14:06:38: Particle Emitter Type 'Cylinder' registered 34 14:06:38: Particle Emitter Type 'Ring' registered 35 14:06:38: Particle Emitter Type 'HollowEllipsoid' registered 36 14:06:38: Particle Affector Type 'LinearForce' registered 37 14:06:38: Particle Affector Type 'ColourFader' registered 38 14:06:38: Particle Affector Type 'ColourFader2' registered 39 14:06:38: Particle Affector Type 'ColourImage' registered 40 14:06:38: Particle Affector Type 'ColourInterpolator' registered 41 14:06:38: Particle Affector Type 'Scaler' registered 42 14:06:38: Particle Affector Type 'Rotator' registered 43 14:06:38: Particle Affector Type 'DirectionRandomiser' registered 44 14:06:38: Particle Affector Type 'DeflectorPlane' registered 45 14:06:38: Loading library .\Plugin_BSPSceneManager 46 14:06:38: Registering ResourceManager for type BspLevel 47 14:06:38: Loading library .\Plugin_OctreeSceneManager 48 14:06:38: Loading library .\Plugin_CgProgramManager 49 14:06:38: Loading library .\Plugin_VisibilitySceneManager 50 14:06:40: *-*-* OGRE Initialising 51 14:06:40: *-*-* Version 1.2.0 (Dagon) 52 14:06:40: Creating resource group Bootstrap 53 14:06:40: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 54 14:06:40: Creating resource group GTP_Basic 55 14:06:40: Added resource location '../../Media/materials/GTPBasic' of type 'FileSystem' to resource group 'GTP_Basic' 56 14:06:40: Creating resource group GTP_Caustic 57 14:06:40: Added resource location '../../Media/materials/GTPCaustic' of type 'FileSystem' to resource group 'GTP_Caustic' 58 14:06:40: Creating resource group GTP_Demo 59 14:06:40: Added resource location '../../Media/Demo' of type 'FileSystem' to resource group 'GTP_Demo' 60 14:06:40: Creating resource group GTP_Diffuse 61 14:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/diffuse' of type 'FileSystem' to resource group 'GTP_Diffuse' 62 14:06:40: Creating resource group GTP_EnvMap 63 14:06:40: Added resource location '../../Media/materials/GTPEnvMap' of type 'FileSystem' to resource group 'GTP_EnvMap' 64 14:06:40: Creating resource group GTP_MultiBounce_Shared 65 14:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce' of type 'FileSystem' to resource group 'GTP_MultiBounce_Shared' 66 14:06:40: Creating resource group GTP_MultipleCausticRefraction 67 14:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleCausticRefraction' of type 'FileSystem' to resource group 'GTP_MultipleCausticRefraction' 68 14:06:40: Creating resource group GTP_MultipleCausticRefraction_MinMax 69 14:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleCausticRefractionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleCausticRefraction_MinMax' 70 14:06:40: Creating resource group GTP_MultipleReflection 71 14:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflection' of type 'FileSystem' to resource group 'GTP_MultipleReflection' 72 14:06:40: Creating resource group GTP_MultipleReflection_MinMax 73 14:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflectionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleReflection_MinMax' 74 14:06:40: Creating resource group GTP_MultipleRefraction 75 14:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction' of type 'FileSystem' to resource group 'GTP_MultipleRefraction' 76 14:06:40: Creating resource group GTP_MultipleRefraction_MinMax 77 14:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefractionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleRefraction_MinMax' 78 14:06:40: Creating resource group GTP_Particles 79 14:06:40: Added resource location '../../Media/materials/GTPParticles' of type 'FileSystem' to resource group 'GTP_Particles' 80 14:06:40: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 81 14:06:40: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 82 14:06:40: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 83 14:06:40: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 84 14:06:40: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 85 14:06:40: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 86 14:06:40: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 87 14:06:40: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 88 14:06:40: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 89 14:06:40: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 90 14:06:40: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 91 14:06:40: Creating resource group PostProc 92 14:06:40: Added resource location '../../Media/materials/GTPPostProc' of type 'FileSystem' to resource group 'PostProc' 93 14:06:40: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 94 14:06:40: D3D9 : RenderSystem Option: Anti aliasing = None 95 14:06:40: D3D9 : RenderSystem Option: Floating-point mode = Fastest 96 14:06:40: D3D9 : RenderSystem Option: Full Screen = No 97 14:06:40: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 98 14:06:40: D3D9 : RenderSystem Option: VSync = No 99 14:06:40: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 100 14:06:41: D3D9 : Subsystem Initialising 101 14:06:41: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 102 14:06:41: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 103 14:06:41: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 104 14:06:41: Registering ResourceManager for type Texture 105 14:06:41: Registering ResourceManager for type GpuProgram 106 14:06:41: RenderSystem capabilities 107 14:06:41: ------------------------- 108 14:06:41: * Hardware generation of mipmaps: yes 109 14:06:41: * Texture blending: yes 110 14:06:41: * Anisotropic texture filtering: yes 111 14:06:41: * Dot product texture operation: yes 112 14:06:41: * Cube mapping: yes 113 14:06:41: * Hardware stencil buffer: yes 114 14:06:41: - Stencil depth: 8 115 14:06:41: - Two sided stencil support: yes 116 14:06:41: - Wrap stencil values: yes 117 14:06:41: * Hardware vertex / index buffers: yes 118 14:06:41: * Vertex programs: yes 119 14:06:41: - Max vertex program version: vs_3_0 120 14:06:41: * Fragment programs: yes 121 14:06:41: - Max fragment program version: ps_3_0 122 14:06:41: * Texture Compression: yes 123 14:06:41: - DXT: yes 124 14:06:41: - VTC: no 125 14:06:41: * Scissor Rectangle: yes 126 14:06:41: * Hardware Occlusion Query: yes 127 14:06:41: * User clip planes: yes 128 14:06:41: * VET_UBYTE4 vertex element type: yes 129 14:06:41: * Infinite far plane projection: yes 130 14:06:41: * Hardware render-to-texture: yes 131 14:06:41: * Floating point textures: yes 132 14:06:41: * Non-power-of-two textures: yes 133 14:06:41: * Volume textures: yes 134 14:06:41: * Multiple Render Targets: 4 135 14:06:41: * Max Point Size: 8192 136 14:06:41: *************************************** 137 14:06:41: *** D3D9 : Subsystem Initialised OK *** 138 14:06:41: *************************************** 139 14:06:41: ResourceBackgroundQueue - threading disabled 140 14:06:41: Particle Renderer Type 'billboard' registered 141 14:06:41: Particle Renderer Type 'sprite' registered 142 14:06:41: 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 143 14:06:41: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 144 14:06:41: Initialising resource group Bootstrap 145 14:06:41: Parsing scripts for resource group Bootstrap 146 14:06:41: Parsing script OgreCore.material 147 14:06:41: Parsing script OgreProfiler.material 148 14:06:41: Parsing script Ogre.fontdef 149 14:06:41: Parsing script OgreDebugPanel.overlay 150 14:06:41: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 151 14:06:41: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 152 14:06:41: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 153 14:06:41: Font TrebuchetMSBoldusing texture size 512x512 154 14:06:41: Info: Freetype returned null for character 160 in font TrebuchetMSBold 155 14:06:41: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 156 14:06:41: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 157 14:06:41: Parsing script OgreLoadingPanel.overlay 158 14:06:41: Finished parsing scripts for resource group Bootstrap 159 14:06:41: Initialising resource group General 160 14:06:41: Parsing scripts for resource group General 161 14:06:41: Parsing script GameTools.program 162 14:06:41: Parsing script atlascube.material 163 14:06:41: Parsing script colorcube.material 164 14:06:41: Parsing script difflab.material 165 14:06:41: An exception has been thrown! 168 166 169 167 ----------------------------------- … … 176 174 Line: 779 177 175 Stack unwinding: <<beginning of stack>> 178 1 8:03:22: Error in material Difflab/TexturedPhong at line 34 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!176 14:06:41: Error in material Difflab/TexturedPhong at line 34 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 179 177 180 178 ----------------------------------- … … 187 185 Line: 779 188 186 Stack unwinding: <<beginning of stack>> 189 1 8:03:22: An exception has been thrown!187 14:06:41: An exception has been thrown! 190 188 191 189 ----------------------------------- … … 198 196 Line: 779 199 197 Stack unwinding: <<beginning of stack>> 200 1 8:03:22: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!198 14:06:41: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 201 199 202 200 ----------------------------------- … … 209 207 Line: 779 210 208 Stack unwinding: <<beginning of stack>> 211 1 8:03:22: An exception has been thrown!209 14:06:41: An exception has been thrown! 212 210 213 211 ----------------------------------- … … 220 218 Line: 779 221 219 Stack unwinding: <<beginning of stack>> 222 1 8:03:22: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!220 14:06:41: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 223 221 224 222 ----------------------------------- … … 231 229 Line: 779 232 230 Stack unwinding: <<beginning of stack>> 233 1 8:03:22: An exception has been thrown!231 14:06:41: An exception has been thrown! 234 232 235 233 ----------------------------------- … … 242 240 Line: 779 243 241 Stack unwinding: <<beginning of stack>> 244 1 8:03:22: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!242 14:06:41: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 245 243 246 244 ----------------------------------- … … 253 251 Line: 779 254 252 Stack unwinding: <<beginning of stack>> 255 1 8:03:22: An exception has been thrown!253 14:06:41: An exception has been thrown! 256 254 257 255 ----------------------------------- … … 264 262 Line: 779 265 263 Stack unwinding: <<beginning of stack>> 266 1 8:03:22: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!264 14:06:41: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 267 265 268 266 ----------------------------------- … … 275 273 Line: 779 276 274 Stack unwinding: <<beginning of stack>> 277 1 8:03:22: An exception has been thrown!275 14:06:41: An exception has been thrown! 278 276 279 277 ----------------------------------- … … 286 284 Line: 779 287 285 Stack unwinding: <<beginning of stack>> 288 1 8:03:22: Error in material Difflab/TexturedPhong at line 43 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!286 14:06:41: Error in material Difflab/TexturedPhong at line 43 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 289 287 290 288 ----------------------------------- … … 297 295 Line: 779 298 296 Stack unwinding: <<beginning of stack>> 299 1 8:03:22: An exception has been thrown!297 14:06:41: An exception has been thrown! 300 298 301 299 ----------------------------------- … … 308 306 Line: 779 309 307 Stack unwinding: <<beginning of stack>> 310 1 8:03:22: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!308 14:06:41: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 311 309 312 310 ----------------------------------- … … 319 317 Line: 779 320 318 Stack unwinding: <<beginning of stack>> 321 1 8:03:22: An exception has been thrown!319 14:06:41: An exception has been thrown! 322 320 323 321 ----------------------------------- … … 330 328 Line: 779 331 329 Stack unwinding: <<beginning of stack>> 332 1 8:03:22: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!330 14:06:41: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 333 331 334 332 ----------------------------------- … … 341 339 Line: 779 342 340 Stack unwinding: <<beginning of stack>> 343 1 8:03:22: An exception has been thrown!341 14:06:41: An exception has been thrown! 344 342 345 343 ----------------------------------- … … 352 350 Line: 779 353 351 Stack unwinding: <<beginning of stack>> 354 1 8:03:22: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!352 14:06:41: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 355 353 356 354 ----------------------------------- … … 363 361 Line: 779 364 362 Stack unwinding: <<beginning of stack>> 365 1 8:03:22: An exception has been thrown!363 14:06:41: An exception has been thrown! 366 364 367 365 ----------------------------------- … … 374 372 Line: 779 375 373 Stack unwinding: <<beginning of stack>> 376 1 8:03:22: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!374 14:06:41: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 377 375 378 376 ----------------------------------- … … 385 383 Line: 779 386 384 Stack unwinding: <<beginning of stack>> 387 1 8:03:22: An exception has been thrown!385 14:06:41: An exception has been thrown! 388 386 389 387 ----------------------------------- … … 396 394 Line: 779 397 395 Stack unwinding: <<beginning of stack>> 398 1 8:03:22: Error in material Difflab/TexturedPhong at line 52 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!396 14:06:41: Error in material Difflab/TexturedPhong at line 52 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 399 397 400 398 ----------------------------------- … … 407 405 Line: 779 408 406 Stack unwinding: <<beginning of stack>> 409 1 8:03:22: An exception has been thrown!407 14:06:41: An exception has been thrown! 410 408 411 409 ----------------------------------- … … 418 416 Line: 779 419 417 Stack unwinding: <<beginning of stack>> 420 1 8:03:22: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!418 14:06:41: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 421 419 422 420 ----------------------------------- … … 429 427 Line: 779 430 428 Stack unwinding: <<beginning of stack>> 431 1 8:03:22: An exception has been thrown!429 14:06:41: An exception has been thrown! 432 430 433 431 ----------------------------------- … … 440 438 Line: 779 441 439 Stack unwinding: <<beginning of stack>> 442 1 8:03:22: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!440 14:06:41: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 443 441 444 442 ----------------------------------- … … 451 449 Line: 779 452 450 Stack unwinding: <<beginning of stack>> 453 1 8:03:22: An exception has been thrown!451 14:06:41: An exception has been thrown! 454 452 455 453 ----------------------------------- … … 462 460 Line: 779 463 461 Stack unwinding: <<beginning of stack>> 464 1 8:03:22: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!462 14:06:41: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 465 463 466 464 ----------------------------------- … … 473 471 Line: 779 474 472 Stack unwinding: <<beginning of stack>> 475 1 8:03:22: An exception has been thrown!473 14:06:41: An exception has been thrown! 476 474 477 475 ----------------------------------- … … 484 482 Line: 779 485 483 Stack unwinding: <<beginning of stack>> 486 1 8:03:22: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!484 14:06:41: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 487 485 488 486 ----------------------------------- … … 495 493 Line: 779 496 494 Stack unwinding: <<beginning of stack>> 497 1 8:03:22: An exception has been thrown!495 14:06:41: An exception has been thrown! 498 496 499 497 ----------------------------------- … … 506 504 Line: 779 507 505 Stack unwinding: <<beginning of stack>> 508 1 8:03:22: Error in material Difflab/TexturedPhong at line 61 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!506 14:06:41: Error in material Difflab/TexturedPhong at line 61 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 509 507 510 508 ----------------------------------- … … 517 515 Line: 779 518 516 Stack unwinding: <<beginning of stack>> 519 1 8:03:22: An exception has been thrown!517 14:06:41: An exception has been thrown! 520 518 521 519 ----------------------------------- … … 528 526 Line: 779 529 527 Stack unwinding: <<beginning of stack>> 530 1 8:03:22: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!528 14:06:41: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 531 529 532 530 ----------------------------------- … … 539 537 Line: 779 540 538 Stack unwinding: <<beginning of stack>> 541 1 8:03:22: An exception has been thrown!539 14:06:41: An exception has been thrown! 542 540 543 541 ----------------------------------- … … 550 548 Line: 779 551 549 Stack unwinding: <<beginning of stack>> 552 1 8:03:22: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!550 14:06:41: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 553 551 554 552 ----------------------------------- … … 561 559 Line: 779 562 560 Stack unwinding: <<beginning of stack>> 563 1 8:03:22: An exception has been thrown!561 14:06:41: An exception has been thrown! 564 562 565 563 ----------------------------------- … … 572 570 Line: 779 573 571 Stack unwinding: <<beginning of stack>> 574 1 8:03:22: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!572 14:06:41: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 575 573 576 574 ----------------------------------- … … 583 581 Line: 779 584 582 Stack unwinding: <<beginning of stack>> 585 1 8:03:22: An exception has been thrown!583 14:06:41: An exception has been thrown! 586 584 587 585 ----------------------------------- … … 594 592 Line: 779 595 593 Stack unwinding: <<beginning of stack>> 596 1 8:03:22: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!594 14:06:41: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 597 595 598 596 ----------------------------------- … … 605 603 Line: 779 606 604 Stack unwinding: <<beginning of stack>> 607 1 8:03:22: An exception has been thrown!605 14:06:41: An exception has been thrown! 608 606 609 607 ----------------------------------- … … 616 614 Line: 779 617 615 Stack unwinding: <<beginning of stack>> 618 1 8:03:22: Error in material Difflab/TexturedPhong at line 70 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown!616 14:06:41: Error in material Difflab/TexturedPhong at line 70 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 619 617 620 618 ----------------------------------- … … 627 625 Line: 779 628 626 Stack unwinding: <<beginning of stack>> 629 1 8:03:22: Parsing script diffscene.material630 1 8:03:22: An exception has been thrown!627 14:06:41: Parsing script diffscene.material 628 14:06:41: An exception has been thrown! 631 629 632 630 ----------------------------------- … … 639 637 Line: 779 640 638 Stack unwinding: <<beginning of stack>> 641 1 8:03:22: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!639 14:06:41: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 642 640 643 641 ----------------------------------- … … 650 648 Line: 779 651 649 Stack unwinding: <<beginning of stack>> 652 1 8:03:22: An exception has been thrown!650 14:06:41: An exception has been thrown! 653 651 654 652 ----------------------------------- … … 661 659 Line: 779 662 660 Stack unwinding: <<beginning of stack>> 663 1 8:03:22: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!661 14:06:41: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 664 662 665 663 ----------------------------------- … … 672 670 Line: 779 673 671 Stack unwinding: <<beginning of stack>> 674 1 8:03:22: An exception has been thrown!672 14:06:41: An exception has been thrown! 675 673 676 674 ----------------------------------- … … 683 681 Line: 779 684 682 Stack unwinding: <<beginning of stack>> 685 1 8:03:22: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!683 14:06:41: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 686 684 687 685 ----------------------------------- … … 694 692 Line: 779 695 693 Stack unwinding: <<beginning of stack>> 696 1 8:03:22: An exception has been thrown!694 14:06:41: An exception has been thrown! 697 695 698 696 ----------------------------------- … … 705 703 Line: 779 706 704 Stack unwinding: <<beginning of stack>> 707 1 8:03:22: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!705 14:06:41: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 708 706 709 707 ----------------------------------- … … 716 714 Line: 779 717 715 Stack unwinding: <<beginning of stack>> 718 1 8:03:22: An exception has been thrown!716 14:06:41: An exception has been thrown! 719 717 720 718 ----------------------------------- … … 727 725 Line: 779 728 726 Stack unwinding: <<beginning of stack>> 729 1 8:03:22: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!727 14:06:41: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 730 728 731 729 ----------------------------------- … … 738 736 Line: 779 739 737 Stack unwinding: <<beginning of stack>> 740 1 8:03:22: An exception has been thrown!738 14:06:41: An exception has been thrown! 741 739 742 740 ----------------------------------- … … 749 747 Line: 779 750 748 Stack unwinding: <<beginning of stack>> 751 1 8:03:22: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!749 14:06:41: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 752 750 753 751 ----------------------------------- … … 760 758 Line: 779 761 759 Stack unwinding: <<beginning of stack>> 762 1 8:03:22: An exception has been thrown!760 14:06:41: An exception has been thrown! 763 761 764 762 ----------------------------------- … … 771 769 Line: 779 772 770 Stack unwinding: <<beginning of stack>> 773 1 8:03:22: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!771 14:06:41: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 774 772 775 773 ----------------------------------- … … 782 780 Line: 779 783 781 Stack unwinding: <<beginning of stack>> 784 1 8:03:22: An exception has been thrown!782 14:06:41: An exception has been thrown! 785 783 786 784 ----------------------------------- … … 793 791 Line: 779 794 792 Stack unwinding: <<beginning of stack>> 795 1 8:03:22: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown!793 14:06:41: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 796 794 797 795 ----------------------------------- … … 804 802 Line: 779 805 803 Stack unwinding: <<beginning of stack>> 806 1 8:03:22: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857807 1 8:03:22: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857808 1 8:03:22: Parsing script EnvMetals.material809 1 8:03:22: An exception has been thrown!804 14:06:41: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 805 14:06:41: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 806 14:06:41: Parsing script EnvMetals.material 807 14:06:41: An exception has been thrown! 810 808 811 809 ----------------------------------- … … 818 816 Line: 779 819 817 Stack unwinding: <<beginning of stack>> 820 1 8:03:22: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!818 14:06:41: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 821 819 822 820 ----------------------------------- … … 829 827 Line: 779 830 828 Stack unwinding: <<beginning of stack>> 831 1 8:03:22: An exception has been thrown!829 14:06:41: An exception has been thrown! 832 830 833 831 ----------------------------------- … … 840 838 Line: 779 841 839 Stack unwinding: <<beginning of stack>> 842 1 8:03:22: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!840 14:06:41: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 843 841 844 842 ----------------------------------- … … 851 849 Line: 779 852 850 Stack unwinding: <<beginning of stack>> 853 1 8:03:22: An exception has been thrown!851 14:06:41: An exception has been thrown! 854 852 855 853 ----------------------------------- … … 862 860 Line: 779 863 861 Stack unwinding: <<beginning of stack>> 864 1 8:03:22: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!862 14:06:41: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 865 863 866 864 ----------------------------------- … … 873 871 Line: 779 874 872 Stack unwinding: <<beginning of stack>> 875 1 8:03:22: An exception has been thrown!873 14:06:41: An exception has been thrown! 876 874 877 875 ----------------------------------- … … 884 882 Line: 779 885 883 Stack unwinding: <<beginning of stack>> 886 1 8:03:22: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!884 14:06:41: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 887 885 888 886 ----------------------------------- … … 895 893 Line: 779 896 894 Stack unwinding: <<beginning of stack>> 897 1 8:03:22: Parsing script GameTools.material898 1 8:03:22: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5)899 1 8:03:22: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend900 1 8:03:22: An exception has been thrown!895 14:06:41: Parsing script GameTools.material 896 14:06:41: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 897 14:06:41: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 898 14:06:41: An exception has been thrown! 901 899 902 900 ----------------------------------- … … 909 907 Line: 779 910 908 Stack unwinding: <<beginning of stack>> 911 1 8:03:22: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!909 14:06:41: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 912 910 913 911 ----------------------------------- … … 920 918 Line: 779 921 919 Stack unwinding: <<beginning of stack>> 922 1 8:03:22: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend923 1 8:03:22: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.924 1 8:03:22: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend925 1 8:03:22: Error in material GameTools/ShadowMapDistance at line 266 of GameTools.material: Bad scene_blend attribute, unrecognised parameter 'none'926 1 8:03:22: Parsing script GlassHead.material927 1 8:03:22: An exception has been thrown!920 14:06:41: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 921 14:06:41: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 922 14:06:41: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 923 14:06:41: Error in material GameTools/ShadowMapDistance at line 266 of GameTools.material: Bad scene_blend attribute, unrecognised parameter 'none' 924 14:06:42: Parsing script GlassHead.material 925 14:06:42: An exception has been thrown! 928 926 929 927 ----------------------------------- … … 936 934 Line: 779 937 935 Stack unwinding: <<beginning of stack>> 938 1 8:03:22: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!936 14:06:42: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 939 937 940 938 ----------------------------------- … … 947 945 Line: 779 948 946 Stack unwinding: <<beginning of stack>> 949 1 8:03:22: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.950 1 8:03:22: An exception has been thrown!947 14:06:42: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 948 14:06:42: An exception has been thrown! 951 949 952 950 ----------------------------------- … … 959 957 Line: 779 960 958 Stack unwinding: <<beginning of stack>> 961 1 8:03:22: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!959 14:06:42: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 962 960 963 961 ----------------------------------- … … 970 968 Line: 779 971 969 Stack unwinding: <<beginning of stack>> 972 1 8:03:22: An exception has been thrown!970 14:06:42: An exception has been thrown! 973 971 974 972 ----------------------------------- … … 981 979 Line: 779 982 980 Stack unwinding: <<beginning of stack>> 983 1 8:03:22: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!981 14:06:42: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 984 982 985 983 ----------------------------------- … … 992 990 Line: 779 993 991 Stack unwinding: <<beginning of stack>> 994 1 8:03:22: An exception has been thrown!992 14:06:42: An exception has been thrown! 995 993 996 994 ----------------------------------- … … 1003 1001 Line: 779 1004 1002 Stack unwinding: <<beginning of stack>> 1005 1 8:03:22: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!1003 14:06:42: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 1006 1004 1007 1005 ----------------------------------- … … 1014 1012 Line: 779 1015 1013 Stack unwinding: <<beginning of stack>> 1016 1 8:03:22: Parsing script Glow.material1017 1 8:03:22: Error in material GameTools/PostProcBlack at line 7 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1018 1 8:03:22: Error in material GameTools/PostProcBlack at line 10 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc_Black has not been defined.1019 1 8:03:22: Error in material GameTools/PostProc1 at line 23 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1020 1 8:03:22: Error in material GameTools/PostProc1 at line 26 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc1_PS has not been defined.1021 1 8:03:22: Error in material GameTools/GlowCut at line 45 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1022 1 8:03:22: Error in material GameTools/GlowCut at line 48 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowCut_PS has not been defined.1023 1 8:03:22: Error in material GameTools/Luminance at line 75 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1024 1 8:03:22: Error in material GameTools/Luminance at line 78 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/Luminance_PS has not been defined.1025 1 8:03:22: Error in material GameTools/GlowBlurH at line 102 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1026 1 8:03:22: Error in material GameTools/GlowBlurH at line 105 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined.1027 1 8:03:22: Error in material GameTools/GlowBlurV at line 128 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1028 1 8:03:22: Error in material GameTools/GlowBlurV at line 131 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurV_PS has not been defined.1029 1 8:03:22: Error in material GameTools/GlowBlurHTB at line 154 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1030 1 8:03:22: Error in material GameTools/GlowBlurHTB at line 157 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined.1031 1 8:03:22: Error in material GameTools/TextureCopy at line 179 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1032 1 8:03:22: Error in material GameTools/TextureCopy at line 182 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/TextureCopy_PS has not been defined.1033 1 8:03:22: Error in material GameTools/GlowAdd at line 203 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1034 1 8:03:22: Error in material GameTools/GlowAdd at line 206 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowAdd_PS has not been defined.1035 1 8:03:22: Error in material GameTools/ToneMap at line 232 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined.1036 1 8:03:22: Error in material GameTools/ToneMap at line 235 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/ToneMap_PS has not been defined.1037 1 8:03:22: Parsing script hangar.material1038 1 8:03:22: Parsing script kupola.material1039 1 8:03:22: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1040 1 8:03:22: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1041 1 8:03:22: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'1042 1 8:03:22: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'1043 1 8:03:22: Parsing script Ogre.material1044 1 8:03:22: Parsing script RaytraceDemo.material1045 1 8:03:22: Parsing script stairs.material1046 1 8:03:22: Parsing script terito.material1047 1 8:03:22: Parsing script uvegfolyoso2.material1048 1 8:03:22: An exception has been thrown!1014 14:06:42: Parsing script Glow.material 1015 14:06:42: Error in material GameTools/PostProcBlack at line 7 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1016 14:06:42: Error in material GameTools/PostProcBlack at line 10 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc_Black has not been defined. 1017 14:06:42: Error in material GameTools/PostProc1 at line 23 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1018 14:06:42: Error in material GameTools/PostProc1 at line 26 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc1_PS has not been defined. 1019 14:06:42: Error in material GameTools/GlowCut at line 45 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1020 14:06:42: Error in material GameTools/GlowCut at line 48 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowCut_PS has not been defined. 1021 14:06:42: Error in material GameTools/Luminance at line 75 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1022 14:06:42: Error in material GameTools/Luminance at line 78 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/Luminance_PS has not been defined. 1023 14:06:42: Error in material GameTools/GlowBlurH at line 102 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1024 14:06:42: Error in material GameTools/GlowBlurH at line 105 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 1025 14:06:42: Error in material GameTools/GlowBlurV at line 128 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1026 14:06:42: Error in material GameTools/GlowBlurV at line 131 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurV_PS has not been defined. 1027 14:06:42: Error in material GameTools/GlowBlurHTB at line 154 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1028 14:06:42: Error in material GameTools/GlowBlurHTB at line 157 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 1029 14:06:42: Error in material GameTools/TextureCopy at line 179 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1030 14:06:42: Error in material GameTools/TextureCopy at line 182 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/TextureCopy_PS has not been defined. 1031 14:06:42: Error in material GameTools/GlowAdd at line 203 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1032 14:06:42: Error in material GameTools/GlowAdd at line 206 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowAdd_PS has not been defined. 1033 14:06:42: Error in material GameTools/ToneMap at line 232 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 1034 14:06:42: Error in material GameTools/ToneMap at line 235 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/ToneMap_PS has not been defined. 1035 14:06:42: Parsing script hangar.material 1036 14:06:42: Parsing script kupola.material 1037 14:06:42: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1038 14:06:42: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1039 14:06:42: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 1040 14:06:42: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 1041 14:06:42: Parsing script Ogre.material 1042 14:06:42: Parsing script RaytraceDemo.material 1043 14:06:42: Parsing script stairs.material 1044 14:06:42: Parsing script terito.material 1045 14:06:42: Parsing script uvegfolyoso2.material 1046 14:06:42: An exception has been thrown! 1049 1047 1050 1048 ----------------------------------- … … 1057 1055 Line: 779 1058 1056 Stack unwinding: <<beginning of stack>> 1059 1 8:03:22: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1057 14:06:42: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1060 1058 1061 1059 ----------------------------------- … … 1068 1066 Line: 779 1069 1067 Stack unwinding: <<beginning of stack>> 1070 1 8:03:22: An exception has been thrown!1068 14:06:42: An exception has been thrown! 1071 1069 1072 1070 ----------------------------------- … … 1079 1077 Line: 779 1080 1078 Stack unwinding: <<beginning of stack>> 1081 1 8:03:22: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1079 14:06:42: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1082 1080 1083 1081 ----------------------------------- … … 1090 1088 Line: 779 1091 1089 Stack unwinding: <<beginning of stack>> 1092 1 8:03:22: An exception has been thrown!1090 14:06:42: An exception has been thrown! 1093 1091 1094 1092 ----------------------------------- … … 1101 1099 Line: 779 1102 1100 Stack unwinding: <<beginning of stack>> 1103 1 8:03:22: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1101 14:06:42: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1104 1102 1105 1103 ----------------------------------- … … 1112 1110 Line: 779 1113 1111 Stack unwinding: <<beginning of stack>> 1114 1 8:03:22: An exception has been thrown!1112 14:06:42: An exception has been thrown! 1115 1113 1116 1114 ----------------------------------- … … 1123 1121 Line: 779 1124 1122 Stack unwinding: <<beginning of stack>> 1125 1 8:03:22: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1123 14:06:42: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1126 1124 1127 1125 ----------------------------------- … … 1134 1132 Line: 779 1135 1133 Stack unwinding: <<beginning of stack>> 1136 1 8:03:22: An exception has been thrown!1134 14:06:42: An exception has been thrown! 1137 1135 1138 1136 ----------------------------------- … … 1145 1143 Line: 779 1146 1144 Stack unwinding: <<beginning of stack>> 1147 1 8:03:22: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1145 14:06:42: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1148 1146 1149 1147 ----------------------------------- … … 1156 1154 Line: 779 1157 1155 Stack unwinding: <<beginning of stack>> 1158 1 8:03:22: An exception has been thrown!1156 14:06:42: An exception has been thrown! 1159 1157 1160 1158 ----------------------------------- … … 1167 1165 Line: 779 1168 1166 Stack unwinding: <<beginning of stack>> 1169 1 8:03:22: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1167 14:06:42: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1170 1168 1171 1169 ----------------------------------- … … 1178 1176 Line: 779 1179 1177 Stack unwinding: <<beginning of stack>> 1180 1 8:03:22: An exception has been thrown!1178 14:06:42: An exception has been thrown! 1181 1179 1182 1180 ----------------------------------- … … 1189 1187 Line: 779 1190 1188 Stack unwinding: <<beginning of stack>> 1191 1 8:03:22: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1189 14:06:42: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1192 1190 1193 1191 ----------------------------------- … … 1200 1198 Line: 779 1201 1199 Stack unwinding: <<beginning of stack>> 1202 1 8:03:22: An exception has been thrown!1200 14:06:42: An exception has been thrown! 1203 1201 1204 1202 ----------------------------------- … … 1211 1209 Line: 779 1212 1210 Stack unwinding: <<beginning of stack>> 1213 1 8:03:22: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1211 14:06:42: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1214 1212 1215 1213 ----------------------------------- … … 1222 1220 Line: 779 1223 1221 Stack unwinding: <<beginning of stack>> 1224 1 8:03:22: An exception has been thrown!1222 14:06:42: An exception has been thrown! 1225 1223 1226 1224 ----------------------------------- … … 1233 1231 Line: 779 1234 1232 Stack unwinding: <<beginning of stack>> 1235 1 8:03:22: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1233 14:06:42: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1236 1234 1237 1235 ----------------------------------- … … 1244 1242 Line: 779 1245 1243 Stack unwinding: <<beginning of stack>> 1246 1 8:03:22: An exception has been thrown!1244 14:06:42: An exception has been thrown! 1247 1245 1248 1246 ----------------------------------- … … 1255 1253 Line: 779 1256 1254 Stack unwinding: <<beginning of stack>> 1257 1 8:03:22: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1255 14:06:42: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1258 1256 1259 1257 ----------------------------------- … … 1266 1264 Line: 779 1267 1265 Stack unwinding: <<beginning of stack>> 1268 1 8:03:22: An exception has been thrown!1266 14:06:42: An exception has been thrown! 1269 1267 1270 1268 ----------------------------------- … … 1277 1275 Line: 779 1278 1276 Stack unwinding: <<beginning of stack>> 1279 1 8:03:22: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1277 14:06:42: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1280 1278 1281 1279 ----------------------------------- … … 1288 1286 Line: 779 1289 1287 Stack unwinding: <<beginning of stack>> 1290 1 8:03:22: An exception has been thrown!1288 14:06:42: An exception has been thrown! 1291 1289 1292 1290 ----------------------------------- … … 1299 1297 Line: 779 1300 1298 Stack unwinding: <<beginning of stack>> 1301 1 8:03:22: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1299 14:06:42: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1302 1300 1303 1301 ----------------------------------- … … 1310 1308 Line: 779 1311 1309 Stack unwinding: <<beginning of stack>> 1312 1 8:03:22: An exception has been thrown!1310 14:06:42: An exception has been thrown! 1313 1311 1314 1312 ----------------------------------- … … 1321 1319 Line: 779 1322 1320 Stack unwinding: <<beginning of stack>> 1323 1 8:03:22: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1321 14:06:42: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1324 1322 1325 1323 ----------------------------------- … … 1332 1330 Line: 779 1333 1331 Stack unwinding: <<beginning of stack>> 1334 1 8:03:22: An exception has been thrown!1332 14:06:42: An exception has been thrown! 1335 1333 1336 1334 ----------------------------------- … … 1343 1341 Line: 779 1344 1342 Stack unwinding: <<beginning of stack>> 1345 1 8:03:22: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1343 14:06:42: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1346 1344 1347 1345 ----------------------------------- … … 1354 1352 Line: 779 1355 1353 Stack unwinding: <<beginning of stack>> 1356 1 8:03:22: An exception has been thrown!1354 14:06:42: An exception has been thrown! 1357 1355 1358 1356 ----------------------------------- … … 1365 1363 Line: 779 1366 1364 Stack unwinding: <<beginning of stack>> 1367 1 8:03:22: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1365 14:06:42: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1368 1366 1369 1367 ----------------------------------- … … 1376 1374 Line: 779 1377 1375 Stack unwinding: <<beginning of stack>> 1378 1 8:03:22: An exception has been thrown!1376 14:06:42: An exception has been thrown! 1379 1377 1380 1378 ----------------------------------- … … 1387 1385 Line: 779 1388 1386 Stack unwinding: <<beginning of stack>> 1389 1 8:03:22: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown!1387 14:06:42: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1390 1388 1391 1389 ----------------------------------- … … 1398 1396 Line: 779 1399 1397 Stack unwinding: <<beginning of stack>> 1400 18:03:22: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1401 18:03:22: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1402 18:03:22: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1403 18:03:22: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1404 18:03:22: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1405 18:03:22: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1406 18:03:22: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1407 18:03:22: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1408 18:03:22: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1409 18:03:22: Parsing script X3D.material 1410 18:03:22: Parsing script GameTools_Glow.compositor 1411 18:03:22: Parsing script GameTools_ToneMap.compositor 1412 18:03:22: Parsing script sample.fontdef 1413 18:03:22: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1414 18:03:22: Parsing script GameTools.particle 1415 18:03:22: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1416 18:03:22: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1417 18:03:22: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1418 18:03:22: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1419 18:03:22: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1420 18:03:22: Parsing script Compositor.overlay 1421 18:03:22: Parsing script DP3.overlay 1422 18:03:22: Parsing script Example-CubeMapping.overlay 1423 18:03:22: Parsing script Example-DynTex.overlay 1424 18:03:22: Parsing script Example-Water.overlay 1425 18:03:22: Parsing script FullScreen.overlay 1426 18:03:22: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1427 18:03:22: Parsing script Shadows.overlay 1428 18:03:22: Finished parsing scripts for resource group General 1429 18:03:22: Initialising resource group GTP_Basic 1430 18:03:22: Parsing scripts for resource group GTP_Basic 1431 18:03:22: Parsing script GTPBasic.program 1432 18:03:22: Parsing script GTPBasic.material 1433 18:03:22: Finished parsing scripts for resource group GTP_Basic 1434 18:03:22: Initialising resource group PostProc 1435 18:03:22: Parsing scripts for resource group PostProc 1436 18:03:22: Parsing script GTPPostProc.program 1437 18:03:22: Parsing script GTPPostProc.material 1438 18:03:22: Parsing script GTPGlow.compositor 1439 18:03:22: Parsing script GTPToneMap.compositor 1440 18:03:22: Finished parsing scripts for resource group PostProc 1441 18:03:22: Initialising resource group GTP_EnvMap 1442 18:03:22: Parsing scripts for resource group GTP_EnvMap 1443 18:03:22: Parsing script GTPEnvMap.program 1444 18:03:22: Parsing script GTPEnvMap.material 1445 18:03:22: Finished parsing scripts for resource group GTP_EnvMap 1446 18:03:22: Initialising resource group GTP_Caustic 1447 18:03:22: Parsing scripts for resource group GTP_Caustic 1448 18:03:22: Parsing script GTPCaustic.program 1449 18:03:22: Parsing script GTPCaustic.material 1450 18:03:22: Finished parsing scripts for resource group GTP_Caustic 1451 18:03:22: Creating viewport on target 'rtt/3116480', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1452 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 1453 18:03:22: Creating viewport on target 'rtt/3118336', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1454 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1455 18:03:22: Creating viewport on target 'rtt/3097792', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1456 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1457 18:03:22: Creating viewport on target 'rtt/3116160', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1458 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1459 18:03:22: Creating viewport on target 'rtt/3126176', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1460 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1461 18:03:22: Creating viewport on target 'rtt/3126528', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1462 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 1463 18:03:22: Creating viewport on target 'rtt/3126880', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1464 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1465 18:03:22: Creating viewport on target 'rtt/3127232', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1466 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1467 18:03:22: Creating viewport on target 'rtt/3127584', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1468 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1469 18:03:22: Creating viewport on target 'rtt/44302464', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1470 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 1471 18:03:22: Creating viewport on target 'rtt/44302816', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1472 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 1473 18:03:22: Creating viewport on target 'rtt/44303168', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1474 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 1475 18:03:22: Creating viewport on target 'rtt/44303616', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1476 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 1477 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_fr.dds' with 5 mip map levels 1478 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_bk.dds' with 5 mip map levels 1479 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_lf.dds' with 5 mip map levels 1480 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_rt.dds' with 5 mip map levels 1481 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_up.dds' with 5 mip map levels 1482 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_dn.dds' with 5 mip map levels 1483 18:03:22: Mesh: Loading kupola.mesh. 1484 18:03:23: Texture: falt2.tga: Loading 1 faces(PF_R8G8B8,2048x2048x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x2048x1. 1485 18:03:23: D3D9 : Loading 2D Texture, image name : 'falnormal.dds' with 2147483647 mip map levels 1486 18:03:23: Texture: talaj2.tga: Loading 1 faces(PF_R8G8B8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 1487 18:03:23: D3D9 : Loading 2D Texture, image name : 'talajnormal.dds' with 2147483647 mip map levels 1488 18:03:23: Mesh: Loading head.mesh. 1489 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of centerHead because this Material does not exist. Have you forgotten to define it in a .material script? 1490 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of goldHead because this Material does not exist. Have you forgotten to define it in a .material script? 1491 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of silverHeade because this Material does not exist. Have you forgotten to define it in a .material script? 1492 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of copperHead because this Material does not exist. Have you forgotten to define it in a .material script? 1493 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of aluHead because this Material does not exist. Have you forgotten to define it in a .material script? 1494 18:03:23: Creating viewport on target 'rtt/3145984', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1495 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1496 18:03:23: Creating viewport on target 'rtt/3146048', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1497 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1498 18:03:23: Creating viewport on target 'rtt/3146112', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1499 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1500 18:03:23: Creating viewport on target 'rtt/3170208', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1501 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1502 18:03:23: Creating viewport on target 'rtt/3170272', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1503 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1504 18:03:23: Creating viewport on target 'rtt/3170336', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1505 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1506 18:03:23: WARNING: Texture instance 'aluHead_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. 1507 18:03:23: Creating viewport on target 'rtt/3170528', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1508 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1509 18:03:23: Creating viewport on target 'rtt/3170592', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1510 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1511 18:03:23: Creating viewport on target 'rtt/3134208', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1512 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1513 18:03:23: Creating viewport on target 'rtt/3134272', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1514 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1515 18:03:23: Creating viewport on target 'rtt/3134336', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1516 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1517 18:03:23: Creating viewport on target 'rtt/3134400', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1518 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1519 18:03:23: WARNING: Texture instance 'aluHead_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. 1520 18:03:23: Creating viewport on target 'rtt/3135456', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1521 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1522 18:03:23: Creating viewport on target 'rtt/3135520', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1523 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1524 18:03:23: Creating viewport on target 'rtt/3135584', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1525 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1526 18:03:23: Creating viewport on target 'rtt/3135648', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1527 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1528 18:03:23: Creating viewport on target 'rtt/3135712', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1529 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1530 18:03:23: Creating viewport on target 'rtt/3135776', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1531 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1532 18:03:23: WARNING: Texture instance 'centerHead_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. 1533 18:03:23: Creating viewport on target 'rtt/3136800', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1534 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1535 18:03:23: Creating viewport on target 'rtt/3136864', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1536 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1537 18:03:23: Creating viewport on target 'rtt/3136928', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1538 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1539 18:03:23: Creating viewport on target 'rtt/3136992', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1540 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1541 18:03:23: Creating viewport on target 'rtt/3137056', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1542 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1543 18:03:23: Creating viewport on target 'rtt/3137120', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1544 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1545 18:03:23: WARNING: Texture instance 'centerHead_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. 1546 18:03:23: Creating viewport on target 'rtt/3138176', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1547 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1548 18:03:23: Creating viewport on target 'rtt/3138240', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1549 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1550 18:03:23: Creating viewport on target 'rtt/3138304', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1551 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1552 18:03:23: Creating viewport on target 'rtt/3138368', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1553 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1554 18:03:23: Creating viewport on target 'rtt/3138432', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1555 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1556 18:03:23: Creating viewport on target 'rtt/3138496', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1557 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1558 18:03:23: Creating viewport on target 'rtt/3138944', rendering from camera 'centerHead_SE_0_PHOTONMAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1559 18:03:23: Viewport for camera 'centerHead_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 64 H: 64 1560 18:03:23: centerHead_SE_0_CAUSTICCUBEMAP map: centerHead_SE_0_PHOTONMAP material: GTP/Caustic/CauCube_PointSpritecenterHead_SE_0_clone 1561 18:03:23: Creating viewport on target 'rtt/44310720', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1562 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1563 18:03:23: Creating viewport on target 'rtt/44310784', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1564 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1565 18:03:23: Creating viewport on target 'rtt/44310848', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1566 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1567 18:03:23: Creating viewport on target 'rtt/44310912', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1568 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1569 18:03:23: Creating viewport on target 'rtt/44310976', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1570 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1571 18:03:23: Creating viewport on target 'rtt/44311040', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1572 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1573 18:03:23: WARNING: Texture instance 'copperHead_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. 1574 18:03:23: Creating viewport on target 'rtt/44312096', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1575 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1576 18:03:23: Creating viewport on target 'rtt/44312160', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1577 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1578 18:03:23: Creating viewport on target 'rtt/44312224', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1579 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1580 18:03:23: Creating viewport on target 'rtt/44312288', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1581 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1582 18:03:23: Creating viewport on target 'rtt/44312352', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1583 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1584 18:03:23: Creating viewport on target 'rtt/44312416', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1585 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1586 18:03:23: WARNING: Texture instance 'copperHead_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. 1587 18:03:23: Creating viewport on target 'rtt/44313440', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1588 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1589 18:03:23: Creating viewport on target 'rtt/44313504', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1590 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1591 18:03:23: Creating viewport on target 'rtt/44313568', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1592 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1593 18:03:23: Creating viewport on target 'rtt/44313632', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1594 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1595 18:03:23: Creating viewport on target 'rtt/44313696', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1596 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1597 18:03:23: Creating viewport on target 'rtt/44313760', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1598 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1599 18:03:23: WARNING: Texture instance 'goldHead_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. 1600 18:03:23: Creating viewport on target 'rtt/44314816', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1601 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1602 18:03:23: Creating viewport on target 'rtt/44314880', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1603 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1604 18:03:23: Creating viewport on target 'rtt/44314944', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1605 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1606 18:03:23: Creating viewport on target 'rtt/44315008', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1607 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1608 18:03:23: Creating viewport on target 'rtt/44315072', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1609 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1610 18:03:23: Creating viewport on target 'rtt/44315136', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1611 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1612 18:03:23: WARNING: Texture instance 'goldHead_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. 1613 18:03:23: Creating viewport on target 'rtt/44334944', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1614 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1615 18:03:23: Creating viewport on target 'rtt/44335008', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1616 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1617 18:03:23: Creating viewport on target 'rtt/44335072', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1618 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1619 18:03:23: Creating viewport on target 'rtt/44335136', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1620 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1621 18:03:23: Creating viewport on target 'rtt/44335200', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1622 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1623 18:03:23: Creating viewport on target 'rtt/44335264', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1624 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1625 18:03:23: WARNING: Texture instance 'silverHeade_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. 1626 18:03:23: Creating viewport on target 'rtt/44335776', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1627 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1628 18:03:23: Creating viewport on target 'rtt/44335840', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1629 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1630 18:03:23: Creating viewport on target 'rtt/44335904', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1631 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1632 18:03:23: Creating viewport on target 'rtt/44335968', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1633 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1634 18:03:23: Creating viewport on target 'rtt/44336032', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1635 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1636 18:03:23: Creating viewport on target 'rtt/44336096', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1637 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1638 18:03:23: WARNING: Texture instance 'silverHeade_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. 1639 18:03:23: Win32Input8: DirectInput Activation Starts 1640 18:03:23: Win32Input8: Establishing keyboard input. 1641 18:03:23: Win32Input8: Keyboard input established. 1642 18:03:23: Win32Input8: Initializing mouse input in immediate mode. 1643 18:03:23: Win32Input8: Mouse input in immediate mode initialized. 1644 18:03:23: Win32Input8: DirectInput OK. 1645 18:03:23: WARNING: Texture instance 'centerHead_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. 1646 18:03:23: D3D9 : Loading 2D Texture, image name : 'PowerOfPhotonHitTexel.dds' with 2147483647 mip map levels 1647 18:03:23: WARNING: Texture instance 'centerHead_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. 1648 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1649 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1650 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1651 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1652 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1653 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture5' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1654 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture6' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1655 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture7' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1656 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture8' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1657 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture9' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1658 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture10' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1659 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture11' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1660 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture12' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1661 18:04:09: Unregistering ResourceManager for type BspLevel 1662 18:04:09: Render Target 'rtt/3116480' Average FPS: 37.4109 Best FPS: 65.6716 Worst FPS: 20.854 1663 18:04:09: Render Target 'rtt/3116160' Average FPS: 37.4035 Best FPS: 65.6716 Worst FPS: 20.8127 1664 18:04:09: Render Target 'rtt/3097792' Average FPS: 37.4122 Best FPS: 65.6716 Worst FPS: 20.8333 1665 18:04:09: Render Target 'rtt/3126176' Average FPS: 37.4086 Best FPS: 65.6064 Worst FPS: 21.7822 1666 18:04:09: Render Target 'rtt/3118336' Average FPS: 37.456 Best FPS: 65.6716 Worst FPS: 20.8333 1667 18:04:09: Render Target 'rtt/3126528' Average FPS: 37.4035 Best FPS: 65.6064 Worst FPS: 20.7921 1668 18:04:09: Render Target 'rtt/44303616' Average FPS: 37.4112 Best FPS: 65.5412 Worst FPS: 21.215 1669 18:04:09: Render Target 'rtt/44303168' Average FPS: 37.4012 Best FPS: 65.5412 Worst FPS: 20.2507 1670 18:04:09: Render Target 'rtt/44302816' Average FPS: 37.4081 Best FPS: 65.5412 Worst FPS: 20.2507 1671 18:04:09: Render Target 'rtt/44302464' Average FPS: 37.4133 Best FPS: 65.5412 Worst FPS: 20.2703 1672 18:04:09: Render Target 'rtt/3127584' Average FPS: 37.4035 Best FPS: 65.6064 Worst FPS: 20.2899 1673 18:04:09: Render Target 'rtt/3127232' Average FPS: 37.4105 Best FPS: 65.6064 Worst FPS: 20.4678 1674 18:04:09: Render Target 'rtt/3126880' Average FPS: 37.4132 Best FPS: 65.5412 Worst FPS: 20.7715 1675 18:04:09: Render Target 'rtt/44335776' Average FPS: 6.22367 Best FPS: 6.80934 Worst FPS: 0.961538 1676 18:04:09: Render Target 'rtt/44335840' Average FPS: 6.2236 Best FPS: 6.80934 Worst FPS: 0.680041 1677 18:04:09: Render Target 'rtt/44335904' Average FPS: 6.16038 Best FPS: 6.81597 Worst FPS: 0.965872 1678 18:04:09: Render Target 'rtt/44335968' Average FPS: 6.16066 Best FPS: 6.80934 Worst FPS: 0.966495 1679 18:04:09: Render Target 'rtt/44336032' Average FPS: 6.2231 Best FPS: 6.80272 Worst FPS: 0.96743 1680 18:04:09: Render Target 'rtt/44336096' Average FPS: 6.22353 Best FPS: 6.80272 Worst FPS: 0.967742 1681 18:04:09: Render Target 'rtt/44334944' Average FPS: 6.22221 Best FPS: 6.80934 Worst FPS: 0.961538 1682 18:04:09: Render Target 'rtt/44335008' Average FPS: 6.22198 Best FPS: 6.80272 Worst FPS: 0.67981 1683 18:04:09: Render Target 'rtt/44335072' Average FPS: 6.16026 Best FPS: 6.80934 Worst FPS: 0.965872 1684 18:04:09: Render Target 'rtt/44335136' Average FPS: 6.16065 Best FPS: 6.80934 Worst FPS: 0.966495 1685 18:04:09: Render Target 'rtt/44335200' Average FPS: 6.22185 Best FPS: 6.80934 Worst FPS: 1.22436 1686 18:04:09: Render Target 'rtt/44335264' Average FPS: 6.22142 Best FPS: 6.80934 Worst FPS: 0.968054 1687 18:04:09: Render Target 'rtt/44314816' Average FPS: 6.03252 Best FPS: 7.52587 Worst FPS: 1.49142 1688 18:04:09: Render Target 'rtt/44314880' Average FPS: 6.03062 Best FPS: 7.52587 Worst FPS: 0.851789 1689 18:04:09: Render Target 'rtt/44314944' Average FPS: 6.0299 Best FPS: 7.54006 Worst FPS: 0.851789 1690 18:04:09: Render Target 'rtt/44315008' Average FPS: 6.07837 Best FPS: 7.75194 Worst FPS: 2.39521 1691 18:04:09: Render Target 'rtt/44315072' Average FPS: 6.06637 Best FPS: 7.51174 Worst FPS: 1.98939 1692 18:04:09: Render Target 'rtt/44315136' Average FPS: 6.04682 Best FPS: 7.5188 Worst FPS: 1.49365 1693 18:04:09: Render Target 'rtt/44313440' Average FPS: 6.03249 Best FPS: 7.5188 Worst FPS: 1.49031 1694 18:04:09: Render Target 'rtt/44313504' Average FPS: 6.02961 Best FPS: 7.5188 Worst FPS: 0.852515 1695 18:04:09: Render Target 'rtt/44313568' Average FPS: 6.02886 Best FPS: 7.54006 Worst FPS: 0.851789 1696 18:04:09: Render Target 'rtt/44313632' Average FPS: 6.07769 Best FPS: 7.75194 Worst FPS: 2.39521 1697 18:04:09: Render Target 'rtt/44313696' Average FPS: 6.06403 Best FPS: 7.5188 Worst FPS: 1.99071 1698 18:04:09: Render Target 'rtt/44313760' Average FPS: 6.06539 Best FPS: 7.5188 Worst FPS: 1.98939 1699 18:04:09: Render Target 'rtt/44312096' Average FPS: 6.15619 Best FPS: 6.80934 Worst FPS: 1.33601 1700 18:04:09: Render Target 'rtt/44312160' Average FPS: 6.15241 Best FPS: 6.80934 Worst FPS: 0.841751 1701 18:04:09: Render Target 'rtt/44312224' Average FPS: 6.15597 Best FPS: 6.80934 Worst FPS: 0.746826 1702 18:04:09: Render Target 'rtt/44312288' Average FPS: 6.15883 Best FPS: 6.80934 Worst FPS: 0.746269 1703 18:04:09: Render Target 'rtt/44312352' Average FPS: 6.18535 Best FPS: 6.80272 Worst FPS: 1.33422 1704 18:04:09: Render Target 'rtt/44312416' Average FPS: 6.15684 Best FPS: 6.80934 Worst FPS: 1.33511 1705 18:04:09: Render Target 'rtt/44310720' Average FPS: 6.15705 Best FPS: 6.80934 Worst FPS: 1.33511 1706 18:04:09: Render Target 'rtt/44310784' Average FPS: 6.15278 Best FPS: 6.80272 Worst FPS: 0.841043 1707 18:04:09: Render Target 'rtt/44310848' Average FPS: 6.15727 Best FPS: 6.80934 Worst FPS: 0.746269 1708 18:04:09: Render Target 'rtt/44310912' Average FPS: 6.15883 Best FPS: 6.80272 Worst FPS: 0.746269 1709 18:04:09: Render Target 'rtt/44310976' Average FPS: 6.18352 Best FPS: 6.80272 Worst FPS: 1.33422 1710 18:04:09: Render Target 'rtt/44311040' Average FPS: 6.15792 Best FPS: 6.80934 Worst FPS: 1.33511 1711 18:04:09: Render Target 'rtt/3138944' Average FPS: 37.4513 Best FPS: 65.4762 Worst FPS: 21.1132 1712 18:04:09: Render Target 'rtt/3138176' Average FPS: 37.4326 Best FPS: 65.4762 Worst FPS: 21.093 1713 18:04:09: Render Target 'rtt/3138240' Average FPS: 37.4327 Best FPS: 65.4762 Worst FPS: 21.093 1714 18:04:09: Render Target 'rtt/3138304' Average FPS: 37.4411 Best FPS: 65.5412 Worst FPS: 21.093 1715 18:04:09: Render Target 'rtt/3138368' Average FPS: 37.4411 Best FPS: 65.4762 Worst FPS: 21.093 1716 18:04:09: Render Target 'rtt/3138432' Average FPS: 37.4016 Best FPS: 65.4762 Worst FPS: 21.093 1717 18:04:09: Render Target 'rtt/3138496' Average FPS: 37.4513 Best FPS: 65.4762 Worst FPS: 21.093 1718 18:04:09: Render Target 'rtt/3136800' Average FPS: 37.4506 Best FPS: 65.4762 Worst FPS: 21.1538 1719 18:04:09: Render Target 'rtt/3136864' Average FPS: 37.439 Best FPS: 65.5412 Worst FPS: 21.1538 1720 18:04:09: Render Target 'rtt/3136928' Average FPS: 37.4408 Best FPS: 65.4762 Worst FPS: 21.1335 1721 18:04:09: Render Target 'rtt/3136992' Average FPS: 37.4506 Best FPS: 65.4762 Worst FPS: 21.1335 1722 18:04:09: Render Target 'rtt/3137056' Average FPS: 37.438 Best FPS: 65.4762 Worst FPS: 21.1335 1723 18:04:09: Render Target 'rtt/3137120' Average FPS: 37.4508 Best FPS: 65.4762 Worst FPS: 21.1132 1724 18:04:09: Render Target 'rtt/3135456' Average FPS: 37.374 Best FPS: 40.8367 Worst FPS: 20.2232 1725 18:04:09: Render Target 'rtt/3135520' Average FPS: 37.3903 Best FPS: 40.8367 Worst FPS: 20.2232 1726 18:04:09: Render Target 'rtt/3135584' Average FPS: 37.3757 Best FPS: 40.1567 Worst FPS: 20.5198 1727 18:04:09: Render Target 'rtt/3135648' Average FPS: 37.3806 Best FPS: 40.1567 Worst FPS: 20.5198 1728 18:04:09: Render Target 'rtt/3135712' Average FPS: 37.3903 Best FPS: 40.1567 Worst FPS: 20.5058 1729 18:04:09: Render Target 'rtt/3135776' Average FPS: 37.3897 Best FPS: 40.1961 Worst FPS: 20.4918 1730 18:04:09: Render Target 'rtt/3170528' Average FPS: 6.14547 Best FPS: 6.80934 Worst FPS: 1.71527 1731 18:04:09: Render Target 'rtt/3170592' Average FPS: 6.12827 Best FPS: 6.80934 Worst FPS: 1.24961 1732 18:04:09: Render Target 'rtt/3134208' Average FPS: 6.12737 Best FPS: 6.80934 Worst FPS: 1.24922 1733 18:04:09: Render Target 'rtt/3134272' Average FPS: 6.12621 Best FPS: 6.80934 Worst FPS: 1.91781 1734 18:04:09: Render Target 'rtt/3134336' Average FPS: 6.14745 Best FPS: 6.80934 Worst FPS: 1.71576 1735 18:04:09: Render Target 'rtt/3134400' Average FPS: 6.14379 Best FPS: 6.80934 Worst FPS: 0.364432 1736 18:04:09: Render Target 'rtt/3145984' Average FPS: 6.14408 Best FPS: 6.80934 Worst FPS: 1.71527 1737 18:04:09: Render Target 'rtt/3146048' Average FPS: 6.12646 Best FPS: 6.80934 Worst FPS: 1.24961 1738 18:04:09: Render Target 'rtt/3146112' Average FPS: 6.12572 Best FPS: 6.81597 Worst FPS: 1.24922 1739 18:04:09: Render Target 'rtt/3170208' Average FPS: 6.12621 Best FPS: 6.80934 Worst FPS: 1.91781 1740 18:04:09: Render Target 'rtt/3170272' Average FPS: 6.14585 Best FPS: 6.80272 Worst FPS: 1.71527 1741 18:04:09: Render Target 'rtt/3170336' Average FPS: 6.14511 Best FPS: 6.80272 Worst FPS: 0.364299 1742 18:04:09: *-*-* OGRE Shutdown 1743 18:04:09: Unregistering ResourceManager for type Compositor 1744 18:04:09: Unregistering ResourceManager for type Font 1745 18:04:09: Unregistering ResourceManager for type Skeleton 1746 18:04:09: Unregistering ResourceManager for type Mesh 1747 18:04:09: Unregistering ResourceManager for type HighLevelGpuProgram 1748 18:04:09: Unloading library .\Plugin_VisibilitySceneManager 1749 18:04:09: Unloading library .\Plugin_CgProgramManager 1750 18:04:09: Unloading library .\Plugin_OctreeSceneManager 1751 18:04:09: Unloading library .\Plugin_BSPSceneManager 1752 18:04:09: Unloading library .\Plugin_ParticleFX 1753 18:04:09: Render Target 'OGRE Render Window' Average FPS: 37.4477 Best FPS: 65.4762 Worst FPS: 20.2117 1754 18:04:09: D3D9 : Shutting down cleanly. 1755 18:04:09: Unregistering ResourceManager for type Texture 1756 18:04:09: Unregistering ResourceManager for type GpuProgram 1757 18:04:09: D3D9 : Direct3D9 Rendering Subsystem destroyed. 1758 18:04:09: Unloading library .\RenderSystem_Direct3D9 1759 18:04:09: Unregistering ResourceManager for type Material 1760 18:04:09: Unloading library OgrePlatform.dll 1398 14:06:42: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1399 14:06:42: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1400 14:06:42: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1401 14:06:42: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1402 14:06:42: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1403 14:06:42: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1404 14:06:42: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1405 14:06:42: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1406 14:06:42: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1407 14:06:42: Parsing script X3D.material 1408 14:06:42: Parsing script GameTools_Glow.compositor 1409 14:06:42: Parsing script GameTools_ToneMap.compositor 1410 14:06:42: Parsing script sample.fontdef 1411 14:06:42: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1412 14:06:42: Parsing script GameTools.particle 1413 14:06:42: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1414 14:06:42: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1415 14:06:42: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1416 14:06:42: Bad particle system attribute line: 'billboard_type point' in GameTools/FogBig (tried renderer) 1417 14:06:42: Bad particle system attribute line: 'billboard_type point' in GameTools/FogLittle (tried renderer) 1418 14:06:42: Parsing script Compositor.overlay 1419 14:06:42: Parsing script DP3.overlay 1420 14:06:42: Parsing script Example-CubeMapping.overlay 1421 14:06:42: Parsing script Example-DynTex.overlay 1422 14:06:42: Parsing script Example-Water.overlay 1423 14:06:42: Parsing script FullScreen.overlay 1424 14:06:42: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1425 14:06:42: Parsing script Shadows.overlay 1426 14:06:42: Finished parsing scripts for resource group General 1427 14:06:42: Initialising resource group GTP_Basic 1428 14:06:42: Parsing scripts for resource group GTP_Basic 1429 14:06:42: Parsing script GTPBasic.program 1430 14:06:42: Parsing script GTPBasic.material 1431 14:06:42: Error in material GTP/Basic/ShadowReciever/Distance at line 126 of GTPBasic.material: Unrecognised command: lighting 1432 14:06:42: Finished parsing scripts for resource group GTP_Basic 1433 14:06:42: Initialising resource group PostProc 1434 14:06:42: Parsing scripts for resource group PostProc 1435 14:06:42: Parsing script GTPPostProc.program 1436 14:06:42: Parsing script GTPPostProc.material 1437 14:06:42: Parsing script GTPGlow.compositor 1438 14:06:42: Parsing script GTPToneMap.compositor 1439 14:06:42: Finished parsing scripts for resource group PostProc 1440 14:06:42: Initialising resource group GTP_Demo 1441 14:06:42: Parsing scripts for resource group GTP_Demo 1442 14:06:42: Parsing script tower.material 1443 14:06:42: Finished parsing scripts for resource group GTP_Demo 1444 14:06:42: Creating viewport on target 'rtt/3116416', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1445 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 1446 14:06:42: Creating viewport on target 'rtt/3118272', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1447 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1448 14:06:42: Creating viewport on target 'rtt/3097728', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1449 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1450 14:06:42: Creating viewport on target 'rtt/3117120', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1451 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1452 14:06:42: Creating viewport on target 'rtt/3126112', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1453 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1454 14:06:42: Creating viewport on target 'rtt/3126464', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1455 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 1456 14:06:42: Creating viewport on target 'rtt/3126816', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1457 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1458 14:06:42: Creating viewport on target 'rtt/3127168', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1459 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1460 14:06:42: Creating viewport on target 'rtt/3127520', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1461 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 1462 14:06:42: Creating viewport on target 'rtt/44302464', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1463 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 1464 14:06:42: Creating viewport on target 'rtt/44302816', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1465 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 1466 14:06:42: Creating viewport on target 'rtt/44303168', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1467 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 1468 14:06:42: Creating viewport on target 'rtt/44303616', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1469 14:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 1470 14:06:42: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1471 14:06:42: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1472 14:06:42: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1473 14:06:42: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1474 14:06:42: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1475 14:06:42: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1476 14:06:42: Error at line 3 of towers2.level: Unrecognised command: ogreXMLfile 1477 14:06:42: Error at line 9 of towers2.level: Unrecognised command: ogreXMLfile 1478 14:06:42: Error at line 15 of towers2.level: Unrecognised command: ogreXMLfile 1479 14:06:42: Error at line 21 of towers2.level: Unrecognised command: ogreXMLfile 1480 14:06:42: Error at line 27 of towers2.level: Unrecognised command: ogreXMLfile 1481 14:06:42: Error at line 33 of towers2.level: Unrecognised command: ogreXMLfile 1482 14:06:42: Mesh: Loading tower_bottomShape.mesh. 1483 14:06:42: Texture: stone.bmp: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1484 14:06:42: Texture: towerdetailgrey.bmp: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1485 14:06:42: D3D9 : Loading 2D Texture, image name : 'stoneNormal.dds' with 2147483647 mip map levels 1486 14:06:42: Mesh: Loading tower_middleShape.mesh. 1487 14:06:42: Mesh: Loading GateTowerTopShape.mesh. 1488 14:06:42: Mesh: Loading TowerTopShape.mesh. 1489 14:06:42: Mesh: Loading CornerTowerTopShape.mesh. 1490 14:06:42: Mesh: Loading wallShape.mesh. 1491 14:06:42: Texture: walldetailgrey.bmp: Loading 1 faces(PF_R8G8B8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 1492 14:06:42: An exception has been thrown! 1493 1494 ----------------------------------- 1495 Details: 1496 ----------------------------------- 1497 Error #: 7 1498 Function: GpuProgramParameters::getParamIndex 1499 Description: Cannot find a parameter named worldViewProj. 1500 File: \GameToolsSVN\Ogre\Ogre1.2\OgreMain\src\OgreGpuProgram.cpp 1501 Line: 779 1502 Stack unwinding: <<beginning of stack>> 1503 14:07:50: Unregistering ResourceManager for type BspLevel 1504 14:07:50: Render Target 'rtt/3116416' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1505 14:07:50: Render Target 'rtt/3117120' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1506 14:07:50: Render Target 'rtt/3097728' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1507 14:07:50: Render Target 'rtt/3126112' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1508 14:07:50: Render Target 'rtt/3118272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1509 14:07:50: Render Target 'rtt/3126464' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1510 14:07:50: Render Target 'rtt/44303616' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1511 14:07:50: Render Target 'rtt/44303168' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1512 14:07:50: Render Target 'rtt/44302816' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1513 14:07:50: Render Target 'rtt/44302464' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1514 14:07:50: Render Target 'rtt/3127520' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1515 14:07:50: Render Target 'rtt/3127168' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1516 14:07:50: Render Target 'rtt/3126816' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1517 14:07:50: *-*-* OGRE Shutdown 1518 14:07:50: Unregistering ResourceManager for type Compositor 1519 14:07:50: Unregistering ResourceManager for type Font 1520 14:07:50: Unregistering ResourceManager for type Skeleton 1521 14:07:50: Unregistering ResourceManager for type Mesh 1522 14:07:50: Unregistering ResourceManager for type HighLevelGpuProgram 1523 14:07:50: Unloading library .\Plugin_VisibilitySceneManager 1524 14:07:50: Unloading library .\Plugin_CgProgramManager 1525 14:07:50: Unloading library .\Plugin_OctreeSceneManager 1526 14:07:50: Unloading library .\Plugin_BSPSceneManager 1527 14:07:50: Unloading library .\Plugin_ParticleFX 1528 14:07:50: Render Target 'OGRE Render Window' Average FPS: 0 Best FPS: 0 Worst FPS: 999 1529 14:07:50: D3D9 : Shutting down cleanly. 1530 14:07:50: Unregistering ResourceManager for type Texture 1531 14:07:50: Unregistering ResourceManager for type GpuProgram 1532 14:07:50: D3D9 : Direct3D9 Rendering Subsystem destroyed. 1533 14:07:50: Unloading library .\RenderSystem_Direct3D9 1534 14:07:50: Unregistering ResourceManager for type Material 1535 14:07:50: Unloading library OgrePlatform.dll -
GTP/trunk/App/Demos/Illum/Ogre/src/CausticTest/include/CausticTest.h
r2175 r2179 149 149 void chooseSceneManager() 150 150 { 151 mSceneMgr = mRoot->createSceneManager("OctreeSceneManager");152 //mSceneMgr = mRoot->createSceneManager("OcclusionCullingSceneManager");151 //mSceneMgr = mRoot->createSceneManager("OctreeSceneManager"); 152 mSceneMgr = mRoot->createSceneManager("OcclusionCullingSceneManager"); 153 153 } 154 154 … … 181 181 void createScene(void) 182 182 { 183 // std::string terrain_cfg("terrainCulling.cfg");184 // mSceneMgr->setWorldGeometry(terrain_cfg);183 std::string occlusion_cfg("OcclusionCulling.cfg"); 184 mSceneMgr->setWorldGeometry(occlusion_cfg); 185 185 //createPostproc(); 186 186 OgreIlluminationManager::getSingleton().setBlurShadowMap(true); -
GTP/trunk/App/Demos/Illum/Ogre/src/DiffuseTest/include/DiffuseTest.h
r2175 r2179 361 361 ResourceGroupManager::getSingleton().initialiseResourceGroup("PostProc"); 362 362 ResourceGroupManager::getSingleton().initialiseResourceGroup("GTP_Basic"); 363 ResourceGroupManager::getSingleton().initialiseResourceGroup("GTP_Diffuse");363 // ResourceGroupManager::getSingleton().initialiseResourceGroup("GTP_Diffuse"); 364 364 } 365 365 … … 654 654 OgreIlluminationManager::getSingleton().setShadowMapSize(512); 655 655 OgreIlluminationManager::getSingleton().setBlurShadowMap(true); 656 OgreIlluminationManager::getSingleton().setShadowMapMaterialName("G ameTools/ShadowMapDistance");656 OgreIlluminationManager::getSingleton().setShadowMapMaterialName("GTP/Basic/Distance_Normalized");//GameTools/ShadowMapDistance 657 657 mSceneMgr->setAmbientLight(ColourValue(0.505 * 0.2, 0.897 * 0.2, 0.914 * 0.2)); 658 658 … … 660 660 661 661 Entity* object = mSceneMgr->createEntity("object", "buddha.mesh"); 662 object->setMaterialName("GTP/Diffuse/Disc2Point");662 //object->setMaterialName("GTP/Diffuse/Disc2Point"); 663 663 //object->setMaterialName("GameTools/DiffuseP2P"); 664 664 objectNode = rootNode->createChildSceneNode(); -
GTP/trunk/App/Demos/Illum/Ogre/src/HierarchicalSystem/include/HierarchicalSystem.h
r2175 r2179 99 99 if(scene == 1) 100 100 { 101 mSceneMgr = mRoot->createSceneManager("OctreeSceneManager");102 //mSceneMgr = mRoot->createSceneManager("OcclusionCullingSceneManager");101 // mSceneMgr = mRoot->createSceneManager("OctreeSceneManager"); 102 mSceneMgr = mRoot->createSceneManager("OcclusionCullingSceneManager"); 103 103 } 104 104 else if(scene == 2) … … 109 109 { 110 110 //createPostproc(); 111 111 //std::string occlusion_cfg("OcclusionCulling.cfg"); 112 //mSceneMgr->setWorldGeometry(occlusion_cfg); 113 112 114 OgreIlluminationManager::getSingleton().setMainCamera(mCamera); 113 115 OgreIlluminationManager::getSingleton().setMainViewport(mWindow->getViewport(0)); -
GTP/trunk/App/Demos/Illum/Ogre/src/PRMDemo/include/PRMDemo.h
r2175 r2179 96 96 void createScene(void) 97 97 { 98 createPostproc(); 98 //std::string occlusion_cfg("OcclusionCulling.cfg"); 99 //mSceneMgr->setWorldGeometry(occlusion_cfg); 100 101 //createPostproc(); 99 102 100 103 OgreIlluminationManager::getSingleton().setMainCamera(mCamera); 101 104 OgreIlluminationManager::getSingleton().setMainViewport(mWindow->getViewport(0)); 102 105 OgreIlluminationManager::getSingleton().setShadowMapSize(512); 106 OgreIlluminationManager::getSingleton().setShadowMapMaterialName("GameTools/ShadowMapDistance"); 107 OgreIlluminationManager::getSingleton().setFocusingSM(true); 108 OgreIlluminationManager::getSingleton().setShadowMapSize(512); 109 OgreIlluminationManager::getSingleton().setBlurShadowMap(false); 110 OgreIlluminationManager::getSingleton().setUseLISPSM(false); 103 111 104 112 Root::getSingleton()._setCurrentSceneManager(mSceneMgr); … … 113 121 mSceneMgr->setSkyBox(true, "Examples/EveningSkyBox", 500); 114 122 115 SceneNode* rootNode = mSceneMgr->getRootSceneNode(); 123 SceneNode* rootNode = mSceneMgr->getRootSceneNode(); 116 124 117 125 118 126 SceneSerializer s(mSceneMgr); 119 127 DataStreamPtr inputStream; 120 inputStream = ResourceGroupManager::getSingleton().openResource(" towers2.level");128 inputStream = ResourceGroupManager::getSingleton().openResource("level.txt"); //towers2.level 121 129 s.parseScript(inputStream, ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME); 122 123 /* Entity* tower = mSceneMgr->createEntity("tower","tower.mesh"); 124 SceneNode* tNode = rootNode->createChildSceneNode("tower"); 125 tNode->setScale(10,10,10); 126 tNode->attachObject(tower); 127 128 Entity* tower2 = mSceneMgr->createEntity("tower2","tower.mesh"); 129 tower2->setMaterialName("towermaterialBump"); 130 SceneNode* tNode2 = rootNode->createChildSceneNode("tower2"); 131 tNode2->setScale(10,10,10); 132 tNode2->setPosition(0,0,100); 133 tNode2->attachObject(tower2);*/ 134 135 /* Entity* tower3 = mSceneMgr->createEntity("tower3","tower.mesh"); 136 tower3->setMaterialName("towermaterialNoBump"); 137 SceneNode* tNode3 = rootNode->createChildSceneNode("tower3"); 138 tNode3->setPosition(0,0,-50); 139 tNode3->setScale(10,10,10); 140 tNode3->attachObject(tower3);*/ 141 142 /* Entity* lepcso = mSceneMgr->createEntity("lepcso","stairs.mesh"); 143 SceneNode* lNode = rootNode->createChildSceneNode("l"); 144 lNode->attachObject(lepcso);*/ 145 146 //createPlane("p","lambert1",Vector3(0,-20,0),Vector2(100,100)); 130 131 createPlane("p","GTP/Basic/ShadowReciever/Depth",Vector3(0,0,0),Vector2(1000,1000)); 147 132 148 133 Light* mainLight = mSceneMgr->createLight("MainLight"); 149 134 mainLight->setType(Light::LT_DIRECTIONAL); 135 mainLight->setCastShadows(true); 150 136 mainLight->setDiffuseColour(ColourValue::White); 151 137 mainLight->setSpecularColour(ColourValue::White); 152 138 mainLightNode = rootNode->createChildSceneNode(); 153 139 154 mainLightNode->setPosition(10 ,10,0);155 mainLight->setPosition(10 ,10,0);140 mainLightNode->setPosition(1000,1000,1000); 141 mainLight->setPosition(1000,1000,1000); 156 142 mainLight->setPowerScale(5); 157 143 mainLight->setDirection(-1,-1, -1);
Note: See TracChangeset
for help on using the changeset viewer.