Changeset 1598 for GTP/trunk/App/Demos
- Timestamp:
- 10/10/06 11:13:58 (18 years ago)
- Location:
- GTP/trunk/App/Demos/Illum/Ogre
- Files:
-
- 3 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/GameTools_Phong.hlsl
r1590 r1598 4 4 { 5 5 float4 hPos :POSITION; 6 float4 hPosition :TEXCOORD4; 6 7 float3 wPos :TEXCOORD1; 7 8 float2 texCoord :TEXCOORD0; … … 17 18 { 18 19 vertOUT OUT; 19 OUT.hPos = mul(worldViewProj, position);20 OUT.hPos = OUT.hPosition = mul(worldViewProj, position); 20 21 OUT.wPos = mul(world, position).xyz; 21 22 OUT.mNormal = mul(world, normal); … … 59 60 float3 pos = IN.wPos; 60 61 61 float M = 8;62 float M = 4; 62 63 63 64 float3 lightpositions[8]; … … 91 92 L = normalize(L); 92 93 float3 H = normalize(L + V); 93 float4 spec = specular * lightcolors[i] * pow(dot(H, N), shininess); 94 float4 diff = diffuse * lightcolors[i] * abs(dot(L, N)); 94 float lightscale = 3; 95 float4 spec = specular * lightcolors[i] * pow(dot(H, N), shininess) * lightscale; 96 float4 diff = diffuse * lightcolors[i] * abs(dot(L, N)) * lightscale; 95 97 float range = 4.0; 96 98 I += 1.0 / d * (spec + diff); … … 102 104 } 103 105 106 107 float4 PhongPlaneReflectPS( vertOUT IN, 108 uniform float3 cameraPos, 109 uniform float3 lightpos1, 110 uniform float3 lightpos2, 111 uniform float3 lightpos3, 112 uniform float3 lightpos4, 113 uniform float3 lightpos5, 114 uniform float3 lightpos6, 115 uniform float3 lightpos7, 116 uniform float3 lightpos8, 117 uniform float4 lightcol1, 118 uniform float4 lightcol2, 119 uniform float4 lightcol3, 120 uniform float4 lightcol4, 121 uniform float4 lightcol5, 122 uniform float4 lightcol6, 123 uniform float4 lightcol7, 124 uniform float4 lightcol8, 125 uniform float4 ambientLight, 126 uniform float shininess, 127 uniform float4 specular, 128 uniform float4 diffuse, 129 uniform float4 ambient, 130 uniform sampler2D reflectionTex, 131 uniform float reflectionAmount 132 133 ) : COLOR0 134 { 135 136 137 float3 N = IN.mNormal; 138 N = normalize( N ); 139 float3 pos = IN.wPos; 140 141 float M = 4; 142 143 float3 lightpositions[8]; 144 float4 lightcolors[8]; 145 146 lightpositions[0] = lightpos1; 147 lightpositions[1] = lightpos2; 148 lightpositions[2] = lightpos3; 149 lightpositions[3] = lightpos4; 150 lightpositions[4] = lightpos5; 151 lightpositions[5] = lightpos6; 152 lightpositions[6] = lightpos7; 153 lightpositions[7] = lightpos8; 154 155 lightcolors[0] = lightcol1; 156 lightcolors[1] = lightcol2; 157 lightcolors[2] = lightcol3; 158 lightcolors[3] = lightcol4; 159 lightcolors[4] = lightcol5; 160 lightcolors[5] = lightcol6; 161 lightcolors[6] = lightcol7; 162 lightcolors[7] = lightcol8; 163 164 float4 I = ambientLight * ambient; 165 166 for(int i=0; i< M; i++) 167 { 168 float3 V = normalize(cameraPos - pos); 169 float3 L = lightpositions[i] - pos; 170 float d = length(L); 171 L = normalize(L); 172 float3 H = normalize(L + V); 173 float lightscale = 3; 174 float4 spec = specular * lightcolors[i] * pow(dot(H, N), shininess) * lightscale; 175 float4 diff = diffuse * lightcolors[i] * abs(dot(L, N)) * lightscale; 176 float range = 4.0; 177 I += 1.0 / d * (spec + diff); 178 } 179 180 float2 uv = (IN.hPosition.xy/IN.hPosition.w + 1.0) * 0.5; 181 uv.y = 1.0 - uv.y; 182 float4 reflection = tex2D(reflectionTex, uv); 183 I *= reflectionAmount * reflection + (1 - reflectionAmount); 184 185 //I = reflection; 186 //return 1; 187 return I; 188 189 } -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log
r1590 r1598 1 17:19:36: Creating resource group General 2 17:19:36: Creating resource group Internal 3 17:19:36: Creating resource group Autodetect 4 17:19:36: Registering ResourceManager for type Material 5 17:19:36: Registering ResourceManager for type Mesh 6 17:19:36: Registering ResourceManager for type Skeleton 7 17:19:36: MovableObjectFactory for type 'ParticleSystem' registered. 8 17:19:36: Loading library OgrePlatform_d.dll 9 17:19:36: OverlayElementFactory for type Panel registered. 10 17:19:36: OverlayElementFactory for type BorderPanel registered. 11 17:19:36: OverlayElementFactory for type TextArea registered. 12 17:19:36: Registering ResourceManager for type Font 13 17:19:36: ArchiveFactory for archive type FileSystem registered. 14 17:19:36: ArchiveFactory for archive type Zip registered. 15 17:19:36: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 17:19:36: 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 17:19:36: Registering ResourceManager for type HighLevelGpuProgram 18 17:19:36: Registering ResourceManager for type Compositor 19 17:19:36: MovableObjectFactory for type 'Entity' registered. 20 17:19:36: MovableObjectFactory for type 'Light' registered. 21 17:19:36: MovableObjectFactory for type 'BillboardSet' registered. 22 17:19:36: MovableObjectFactory for type 'ManualObject' registered. 23 17:19:36: MovableObjectFactory for type 'BillboardChain' registered. 24 17:19:36: MovableObjectFactory for type 'RibbonTrail' registered. 25 17:19:36: Loading library .\RenderSystem_Direct3D9 26 17:19:36: D3D9 : Direct3D9 Rendering Subsystem created. 27 17:19:36: D3D9: Driver Detection Starts 28 17:19:36: D3D9: Driver Detection Ends 29 17:19:36: Loading library .\Plugin_ParticleFX 30 17:19:36: Particle Emitter Type 'Point' registered 31 17:19:36: Particle Emitter Type 'Box' registered 32 17:19:36: Particle Emitter Type 'Ellipsoid' registered 33 17:19:36: Particle Emitter Type 'Cylinder' registered 34 17:19:36: Particle Emitter Type 'Ring' registered 35 17:19:36: Particle Emitter Type 'HollowEllipsoid' registered 36 17:19:36: Particle Affector Type 'LinearForce' registered 37 17:19:36: Particle Affector Type 'ColourFader' registered 38 17:19:36: Particle Affector Type 'ColourFader2' registered 39 17:19:36: Particle Affector Type 'ColourImage' registered 40 17:19:36: Particle Affector Type 'ColourInterpolator' registered 41 17:19:36: Particle Affector Type 'Scaler' registered 42 17:19:36: Particle Affector Type 'Rotator' registered 43 17:19:36: Particle Affector Type 'DirectionRandomiser' registered 44 17:19:36: Particle Affector Type 'DeflectorPlane' registered 45 17:19:36: Loading library .\Plugin_BSPSceneManager 46 17:19:36: Registering ResourceManager for type BspLevel 47 17:19:36: Loading library .\Plugin_OctreeSceneManager 48 17:19:36: Loading library .\Plugin_CgProgramManager 49 17:19:36: *-*-* OGRE Initialising 50 17:19:36: *-*-* Version 1.2.0 (Dagon) 51 17:19:36: Creating resource group Bootstrap 52 17:19:36: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 17:19:36: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 17:19:36: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 17:19:36: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 17:19:36: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 17:19:36: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 17:19:36: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 17:19:36: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 17:19:36: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 17:19:36: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 17:19:36: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 17:19:36: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 17:19:36: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 17:19:36: D3D9 : RenderSystem Option: Anti aliasing = None 66 17:19:36: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 17:19:36: D3D9 : RenderSystem Option: Full Screen = No 68 17:19:36: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 69 17:19:36: D3D9 : RenderSystem Option: VSync = No 70 17:19:36: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 17:19:41: D3D9 : Subsystem Initialising 72 17:19:41: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 17:19:41: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 17:19:41: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 17:19:41: Registering ResourceManager for type Texture 76 17:19:41: Registering ResourceManager for type GpuProgram 77 17:19:41: RenderSystem capabilities 78 17:19:41: ------------------------- 79 17:19:41: * Hardware generation of mipmaps: yes 80 17:19:41: * Texture blending: yes 81 17:19:41: * Anisotropic texture filtering: yes 82 17:19:41: * Dot product texture operation: yes 83 17:19:41: * Cube mapping: yes 84 17:19:41: * Hardware stencil buffer: yes 85 17:19:41: - Stencil depth: 8 86 17:19:41: - Two sided stencil support: yes 87 17:19:41: - Wrap stencil values: yes 88 17:19:41: * Hardware vertex / index buffers: yes 89 17:19:41: * Vertex programs: yes 90 17:19:41: - Max vertex program version: vs_3_0 91 17:19:41: * Fragment programs: yes 92 17:19:41: - Max fragment program version: ps_3_0 93 17:19:41: * Texture Compression: yes 94 17:19:41: - DXT: yes 95 17:19:41: - VTC: no 96 17:19:41: * Scissor Rectangle: yes 97 17:19:41: * Hardware Occlusion Query: yes 98 17:19:41: * User clip planes: yes 99 17:19:41: * VET_UBYTE4 vertex element type: yes 100 17:19:41: * Infinite far plane projection: yes 101 17:19:41: * Hardware render-to-texture: yes 102 17:19:41: * Floating point textures: yes 103 17:19:41: * Non-power-of-two textures: yes 104 17:19:41: * Volume textures: yes 105 17:19:41: * Multiple Render Targets: 4 106 17:19:41: * Max Point Size: 8192 107 17:19:41: *************************************** 108 17:19:41: *** D3D9 : Subsystem Initialised OK *** 109 17:19:41: *************************************** 110 17:19:41: ResourceBackgroundQueue - threading disabled 111 17:19:41: Particle Renderer Type 'billboard' registered 112 17:19:41: Particle Renderer Type 'sprite' registered 113 17:19: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 114 17:19:41: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 17:19:41: Parsing scripts for resource group Autodetect 116 17:19:41: Finished parsing scripts for resource group Autodetect 117 17:19:41: Parsing scripts for resource group Bootstrap 118 17:19:41: Parsing script OgreCore.material 119 17:19:41: Parsing script OgreProfiler.material 120 17:19:41: Parsing script Ogre.fontdef 121 17:19:41: Parsing script OgreDebugPanel.overlay 122 17:19: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. 123 17:19:41: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 124 17:19: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. 125 17:19:41: Font TrebuchetMSBoldusing texture size 512x512 126 17:19:41: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 17:19:41: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 128 17:19:41: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 17:19:41: Parsing script OgreLoadingPanel.overlay 130 17:19:41: Finished parsing scripts for resource group Bootstrap 131 17:19:41: Parsing scripts for resource group General 132 17:19:41: Parsing script GameTools.program 133 17:19:41: Parsing script atlascube.material 134 17:19:41: Parsing script diffscene.material 135 17:19:41: Parsing script Diffuse.material 136 17:19:42: An exception has been thrown! 1 10:37:48: Creating resource group General 2 10:37:48: Creating resource group Internal 3 10:37:48: Creating resource group Autodetect 4 10:37:48: Registering ResourceManager for type Material 5 10:37:48: Registering ResourceManager for type Mesh 6 10:37:48: Registering ResourceManager for type Skeleton 7 10:37:48: MovableObjectFactory for type 'ParticleSystem' registered. 8 10:37:48: Loading library OgrePlatform_d.dll 9 10:37:48: OverlayElementFactory for type Panel registered. 10 10:37:48: OverlayElementFactory for type BorderPanel registered. 11 10:37:48: OverlayElementFactory for type TextArea registered. 12 10:37:48: Registering ResourceManager for type Font 13 10:37:48: ArchiveFactory for archive type FileSystem registered. 14 10:37:48: ArchiveFactory for archive type Zip registered. 15 10:37:48: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 10:37:48: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw 17 10:37:48: Registering ResourceManager for type HighLevelGpuProgram 18 10:37:48: Registering ResourceManager for type Compositor 19 10:37:48: MovableObjectFactory for type 'Entity' registered. 20 10:37:48: MovableObjectFactory for type 'Light' registered. 21 10:37:48: MovableObjectFactory for type 'BillboardSet' registered. 22 10:37:48: MovableObjectFactory for type 'ManualObject' registered. 23 10:37:48: MovableObjectFactory for type 'BillboardChain' registered. 24 10:37:48: MovableObjectFactory for type 'RibbonTrail' registered. 25 10:37:48: Loading library .\RenderSystem_Direct3D9 26 10:37:48: D3D9 : Direct3D9 Rendering Subsystem created. 27 10:37:48: D3D9: Driver Detection Starts 28 10:37:48: D3D9: Driver Detection Ends 29 10:37:48: Loading library .\Plugin_ParticleFX 30 10:37:48: Particle Emitter Type 'Point' registered 31 10:37:48: Particle Emitter Type 'Box' registered 32 10:37:48: Particle Emitter Type 'Ellipsoid' registered 33 10:37:48: Particle Emitter Type 'Cylinder' registered 34 10:37:48: Particle Emitter Type 'Ring' registered 35 10:37:48: Particle Emitter Type 'HollowEllipsoid' registered 36 10:37:48: Particle Affector Type 'LinearForce' registered 37 10:37:48: Particle Affector Type 'ColourFader' registered 38 10:37:48: Particle Affector Type 'ColourFader2' registered 39 10:37:48: Particle Affector Type 'ColourImage' registered 40 10:37:48: Particle Affector Type 'ColourInterpolator' registered 41 10:37:48: Particle Affector Type 'Scaler' registered 42 10:37:48: Particle Affector Type 'Rotator' registered 43 10:37:48: Particle Affector Type 'DirectionRandomiser' registered 44 10:37:48: Particle Affector Type 'DeflectorPlane' registered 45 10:37:48: Loading library .\Plugin_BSPSceneManager 46 10:37:48: Registering ResourceManager for type BspLevel 47 10:37:48: Loading library .\Plugin_OctreeSceneManager 48 10:37:48: Loading library .\Plugin_CgProgramManager 49 10:37:48: *-*-* OGRE Initialising 50 10:37:48: *-*-* Version 1.2.0 (Dagon) 51 10:37:48: Creating resource group Bootstrap 52 10:37:48: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 10:37:48: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 10:37:48: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 10:37:48: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 10:37:48: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 10:37:48: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 10:37:48: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 10:37:48: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 10:37:48: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 10:37:48: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 10:37:48: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 10:37:48: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 10:37:48: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 10:37:48: D3D9 : RenderSystem Option: Anti aliasing = None 66 10:37:48: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 10:37:48: D3D9 : RenderSystem Option: Full Screen = No 68 10:37:48: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 69 10:37:48: D3D9 : RenderSystem Option: VSync = No 70 10:37:48: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 10:37:49: D3D9 : Subsystem Initialising 72 10:37:49: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 10:37:49: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 10:37:49: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 10:37:49: Registering ResourceManager for type Texture 76 10:37:49: Registering ResourceManager for type GpuProgram 77 10:37:49: RenderSystem capabilities 78 10:37:49: ------------------------- 79 10:37:49: * Hardware generation of mipmaps: yes 80 10:37:49: * Texture blending: yes 81 10:37:49: * Anisotropic texture filtering: yes 82 10:37:49: * Dot product texture operation: yes 83 10:37:49: * Cube mapping: yes 84 10:37:49: * Hardware stencil buffer: yes 85 10:37:49: - Stencil depth: 8 86 10:37:49: - Two sided stencil support: yes 87 10:37:49: - Wrap stencil values: yes 88 10:37:49: * Hardware vertex / index buffers: yes 89 10:37:49: * Vertex programs: yes 90 10:37:49: - Max vertex program version: vs_3_0 91 10:37:49: * Fragment programs: yes 92 10:37:49: - Max fragment program version: ps_3_0 93 10:37:49: * Texture Compression: yes 94 10:37:49: - DXT: yes 95 10:37:49: - VTC: no 96 10:37:49: * Scissor Rectangle: yes 97 10:37:49: * Hardware Occlusion Query: yes 98 10:37:49: * User clip planes: yes 99 10:37:49: * VET_UBYTE4 vertex element type: yes 100 10:37:49: * Infinite far plane projection: yes 101 10:37:49: * Hardware render-to-texture: yes 102 10:37:49: * Floating point textures: yes 103 10:37:49: * Non-power-of-two textures: yes 104 10:37:49: * Volume textures: yes 105 10:37:49: * Multiple Render Targets: 4 106 10:37:49: * Max Point Size: 8192 107 10:37:49: *************************************** 108 10:37:49: *** D3D9 : Subsystem Initialised OK *** 109 10:37:49: *************************************** 110 10:37:49: ResourceBackgroundQueue - threading disabled 111 10:37:49: Particle Renderer Type 'billboard' registered 112 10:37:49: Particle Renderer Type 'sprite' registered 113 10:37:49: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 114 10:37:49: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 10:37:49: Parsing scripts for resource group Autodetect 116 10:37:49: Finished parsing scripts for resource group Autodetect 117 10:37:49: Parsing scripts for resource group Bootstrap 118 10:37:49: Parsing script OgreCore.material 119 10:37:49: Parsing script OgreProfiler.material 120 10:37:49: Parsing script Ogre.fontdef 121 10:37:49: Parsing script OgreDebugPanel.overlay 122 10:37:49: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 123 10:37:49: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 124 10:37:49: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 125 10:37:49: Font TrebuchetMSBoldusing texture size 512x512 126 10:37:49: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 10:37:49: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 128 10:37:49: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 10:37:49: Parsing script OgreLoadingPanel.overlay 130 10:37:49: Finished parsing scripts for resource group Bootstrap 131 10:37:49: Parsing scripts for resource group General 132 10:37:49: Parsing script GameTools.program 133 10:37:49: Parsing script atlascube.material 134 10:37:49: Parsing script diffscene.material 135 10:37:49: An exception has been thrown! 136 137 ----------------------------------- 138 Details: 139 ----------------------------------- 140 Error #: 7 141 Function: GpuProgramParameters::getParamIndex 142 Description: Cannot find a parameter named lightcol5. 143 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 144 Line: 768 145 Stack unwinding: <<beginning of stack>> 146 10:37:49: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 147 148 ----------------------------------- 149 Details: 150 ----------------------------------- 151 Error #: 7 152 Function: GpuProgramParameters::getParamIndex 153 Description: Cannot find a parameter named lightcol5. 154 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 155 Line: 768 156 Stack unwinding: <<beginning of stack>> 157 10:37:49: An exception has been thrown! 158 159 ----------------------------------- 160 Details: 161 ----------------------------------- 162 Error #: 7 163 Function: GpuProgramParameters::getParamIndex 164 Description: Cannot find a parameter named lightcol6. 165 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 166 Line: 768 167 Stack unwinding: <<beginning of stack>> 168 10:37:49: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 169 170 ----------------------------------- 171 Details: 172 ----------------------------------- 173 Error #: 7 174 Function: GpuProgramParameters::getParamIndex 175 Description: Cannot find a parameter named lightcol6. 176 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 177 Line: 768 178 Stack unwinding: <<beginning of stack>> 179 10:37:49: An exception has been thrown! 180 181 ----------------------------------- 182 Details: 183 ----------------------------------- 184 Error #: 7 185 Function: GpuProgramParameters::getParamIndex 186 Description: Cannot find a parameter named lightcol7. 187 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 188 Line: 768 189 Stack unwinding: <<beginning of stack>> 190 10:37:49: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 191 192 ----------------------------------- 193 Details: 194 ----------------------------------- 195 Error #: 7 196 Function: GpuProgramParameters::getParamIndex 197 Description: Cannot find a parameter named lightcol7. 198 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 199 Line: 768 200 Stack unwinding: <<beginning of stack>> 201 10:37:49: An exception has been thrown! 202 203 ----------------------------------- 204 Details: 205 ----------------------------------- 206 Error #: 7 207 Function: GpuProgramParameters::getParamIndex 208 Description: Cannot find a parameter named lightcol8. 209 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 210 Line: 768 211 Stack unwinding: <<beginning of stack>> 212 10:37:49: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 213 214 ----------------------------------- 215 Details: 216 ----------------------------------- 217 Error #: 7 218 Function: GpuProgramParameters::getParamIndex 219 Description: Cannot find a parameter named lightcol8. 220 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 221 Line: 768 222 Stack unwinding: <<beginning of stack>> 223 10:37:49: An exception has been thrown! 224 225 ----------------------------------- 226 Details: 227 ----------------------------------- 228 Error #: 7 229 Function: GpuProgramParameters::getParamIndex 230 Description: Cannot find a parameter named lightpos5. 231 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 232 Line: 768 233 Stack unwinding: <<beginning of stack>> 234 10:37:49: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 235 236 ----------------------------------- 237 Details: 238 ----------------------------------- 239 Error #: 7 240 Function: GpuProgramParameters::getParamIndex 241 Description: Cannot find a parameter named lightpos5. 242 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 243 Line: 768 244 Stack unwinding: <<beginning of stack>> 245 10:37:49: An exception has been thrown! 246 247 ----------------------------------- 248 Details: 249 ----------------------------------- 250 Error #: 7 251 Function: GpuProgramParameters::getParamIndex 252 Description: Cannot find a parameter named lightpos6. 253 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 254 Line: 768 255 Stack unwinding: <<beginning of stack>> 256 10:37:49: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 257 258 ----------------------------------- 259 Details: 260 ----------------------------------- 261 Error #: 7 262 Function: GpuProgramParameters::getParamIndex 263 Description: Cannot find a parameter named lightpos6. 264 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 265 Line: 768 266 Stack unwinding: <<beginning of stack>> 267 10:37:49: An exception has been thrown! 268 269 ----------------------------------- 270 Details: 271 ----------------------------------- 272 Error #: 7 273 Function: GpuProgramParameters::getParamIndex 274 Description: Cannot find a parameter named lightpos7. 275 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 276 Line: 768 277 Stack unwinding: <<beginning of stack>> 278 10:37:49: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 279 280 ----------------------------------- 281 Details: 282 ----------------------------------- 283 Error #: 7 284 Function: GpuProgramParameters::getParamIndex 285 Description: Cannot find a parameter named lightpos7. 286 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 287 Line: 768 288 Stack unwinding: <<beginning of stack>> 289 10:37:49: An exception has been thrown! 290 291 ----------------------------------- 292 Details: 293 ----------------------------------- 294 Error #: 7 295 Function: GpuProgramParameters::getParamIndex 296 Description: Cannot find a parameter named lightpos8. 297 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 298 Line: 768 299 Stack unwinding: <<beginning of stack>> 300 10:37:49: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 301 302 ----------------------------------- 303 Details: 304 ----------------------------------- 305 Error #: 7 306 Function: GpuProgramParameters::getParamIndex 307 Description: Cannot find a parameter named lightpos8. 308 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 309 Line: 768 310 Stack unwinding: <<beginning of stack>> 311 10:37:49: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 312 10:37:49: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 313 10:37:49: Error in material pult at line 88 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 314 10:37:49: Error in material pult at line 89 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 315 10:37:49: Error in material pult at line 90 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.53846 316 10:37:49: Error in material butorlap at line 122 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 317 10:37:49: Error in material butorlap at line 123 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 318 10:37:49: Parsing script Diffuse.material 319 10:37:50: An exception has been thrown! 137 320 138 321 ----------------------------------- … … 145 328 Line: 768 146 329 Stack unwinding: <<beginning of stack>> 147 1 7:19:42: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!330 10:37:50: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 148 331 149 332 ----------------------------------- … … 156 339 Line: 768 157 340 Stack unwinding: <<beginning of stack>> 158 1 7:19:44: An exception has been thrown!341 10:37:51: An exception has been thrown! 159 342 160 343 ----------------------------------- … … 167 350 Line: 768 168 351 Stack unwinding: <<beginning of stack>> 169 1 7:19:44: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!352 10:37:51: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 170 353 171 354 ----------------------------------- … … 178 361 Line: 768 179 362 Stack unwinding: <<beginning of stack>> 180 1 7:19:53: An exception has been thrown!363 10:37:59: An exception has been thrown! 181 364 182 365 ----------------------------------- … … 189 372 Line: 768 190 373 Stack unwinding: <<beginning of stack>> 191 1 7:19:53: Error in material GameTools/Diffuse/use1 at line 215 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!374 10:37:59: Error in material GameTools/Diffuse/use1 at line 215 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 192 375 193 376 ----------------------------------- … … 200 383 Line: 768 201 384 Stack unwinding: <<beginning of stack>> 202 1 7:19:53: Parsing script EnvMetals.material203 1 7:19:53: An exception has been thrown!385 10:37:59: Parsing script EnvMetals.material 386 10:37:59: An exception has been thrown! 204 387 205 388 ----------------------------------- … … 212 395 Line: 768 213 396 Stack unwinding: <<beginning of stack>> 214 1 7:19:53: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!397 10:37:59: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 215 398 216 399 ----------------------------------- … … 223 406 Line: 768 224 407 Stack unwinding: <<beginning of stack>> 225 1 7:19:53: An exception has been thrown!408 10:37:59: An exception has been thrown! 226 409 227 410 ----------------------------------- … … 234 417 Line: 768 235 418 Stack unwinding: <<beginning of stack>> 236 1 7:19:53: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!419 10:37:59: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 237 420 238 421 ----------------------------------- … … 245 428 Line: 768 246 429 Stack unwinding: <<beginning of stack>> 247 1 7:19:53: An exception has been thrown!430 10:37:59: An exception has been thrown! 248 431 249 432 ----------------------------------- … … 256 439 Line: 768 257 440 Stack unwinding: <<beginning of stack>> 258 1 7:19:53: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!441 10:37:59: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 259 442 260 443 ----------------------------------- … … 267 450 Line: 768 268 451 Stack unwinding: <<beginning of stack>> 269 1 7:19:53: An exception has been thrown!452 10:37:59: An exception has been thrown! 270 453 271 454 ----------------------------------- … … 278 461 Line: 768 279 462 Stack unwinding: <<beginning of stack>> 280 1 7:19:53: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!463 10:37:59: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 281 464 282 465 ----------------------------------- … … 289 472 Line: 768 290 473 Stack unwinding: <<beginning of stack>> 291 1 7:19:53: Parsing script GameTools.material292 1 7:19:53: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend293 1 7:19:53: An exception has been thrown!474 10:37:59: Parsing script GameTools.material 475 10:37:59: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 476 10:37:59: An exception has been thrown! 294 477 295 478 ----------------------------------- … … 302 485 Line: 768 303 486 Stack unwinding: <<beginning of stack>> 304 1 7:19:53: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!487 10:37:59: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 305 488 306 489 ----------------------------------- … … 313 496 Line: 768 314 497 Stack unwinding: <<beginning of stack>> 315 1 7:19:53: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend316 1 7:19:53: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.317 1 7:19:53: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend318 1 7:19:54: Parsing script GameTools_HPS.material319 1 7:19:54: An exception has been thrown!498 10:37:59: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 499 10:37:59: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 500 10:37:59: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 501 10:37:59: Parsing script GameTools_HPS.material 502 10:37:59: An exception has been thrown! 320 503 321 504 ----------------------------------- … … 328 511 Line: 768 329 512 Stack unwinding: <<beginning of stack>> 330 1 7:19:54: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!513 10:37:59: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 331 514 332 515 ----------------------------------- … … 339 522 Line: 768 340 523 Stack unwinding: <<beginning of stack>> 341 1 7:19:54: An exception has been thrown!524 10:37:59: An exception has been thrown! 342 525 343 526 ----------------------------------- … … 350 533 Line: 768 351 534 Stack unwinding: <<beginning of stack>> 352 1 7:19:54: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!535 10:37:59: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 353 536 354 537 ----------------------------------- … … 361 544 Line: 768 362 545 Stack unwinding: <<beginning of stack>> 363 1 7:19:54: An exception has been thrown!546 10:37:59: An exception has been thrown! 364 547 365 548 ----------------------------------- … … 372 555 Line: 768 373 556 Stack unwinding: <<beginning of stack>> 374 1 7:19:54: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!557 10:37:59: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 375 558 376 559 ----------------------------------- … … 383 566 Line: 768 384 567 Stack unwinding: <<beginning of stack>> 385 1 7:19:54: An exception has been thrown!568 10:37:59: An exception has been thrown! 386 569 387 570 ----------------------------------- … … 394 577 Line: 768 395 578 Stack unwinding: <<beginning of stack>> 396 1 7:19:54: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!579 10:37:59: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 397 580 398 581 ----------------------------------- … … 405 588 Line: 768 406 589 Stack unwinding: <<beginning of stack>> 407 1 7:19:54: An exception has been thrown!590 10:37:59: An exception has been thrown! 408 591 409 592 ----------------------------------- … … 416 599 Line: 768 417 600 Stack unwinding: <<beginning of stack>> 418 1 7:19:54: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!601 10:37:59: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 419 602 420 603 ----------------------------------- … … 427 610 Line: 768 428 611 Stack unwinding: <<beginning of stack>> 429 1 7:19:54: An exception has been thrown!612 10:37:59: An exception has been thrown! 430 613 431 614 ----------------------------------- … … 438 621 Line: 768 439 622 Stack unwinding: <<beginning of stack>> 440 1 7:19:54: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!623 10:37:59: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 441 624 442 625 ----------------------------------- … … 449 632 Line: 768 450 633 Stack unwinding: <<beginning of stack>> 451 1 7:19:54: An exception has been thrown!634 10:37:59: An exception has been thrown! 452 635 453 636 ----------------------------------- … … 460 643 Line: 768 461 644 Stack unwinding: <<beginning of stack>> 462 1 7:19:54: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!645 10:37:59: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 463 646 464 647 ----------------------------------- … … 471 654 Line: 768 472 655 Stack unwinding: <<beginning of stack>> 473 1 7:19:54: Parsing script GlassHead.material474 1 7:19:54: An exception has been thrown!656 10:37:59: Parsing script GlassHead.material 657 10:37:59: An exception has been thrown! 475 658 476 659 ----------------------------------- … … 483 666 Line: 768 484 667 Stack unwinding: <<beginning of stack>> 485 1 7:19:54: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!668 10:37:59: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 486 669 487 670 ----------------------------------- … … 494 677 Line: 768 495 678 Stack unwinding: <<beginning of stack>> 496 1 7:19:54: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.497 1 7:19:54: An exception has been thrown!679 10:37:59: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 680 10:37:59: An exception has been thrown! 498 681 499 682 ----------------------------------- … … 506 689 Line: 768 507 690 Stack unwinding: <<beginning of stack>> 508 1 7:19:54: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!691 10:37:59: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 509 692 510 693 ----------------------------------- … … 517 700 Line: 768 518 701 Stack unwinding: <<beginning of stack>> 519 1 7:19:54: An exception has been thrown!702 10:37:59: An exception has been thrown! 520 703 521 704 ----------------------------------- … … 528 711 Line: 768 529 712 Stack unwinding: <<beginning of stack>> 530 1 7:19:54: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!713 10:37:59: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 531 714 532 715 ----------------------------------- … … 539 722 Line: 768 540 723 Stack unwinding: <<beginning of stack>> 541 1 7:19:54: An exception has been thrown!724 10:37:59: An exception has been thrown! 542 725 543 726 ----------------------------------- … … 550 733 Line: 768 551 734 Stack unwinding: <<beginning of stack>> 552 1 7:19:54: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!735 10:37:59: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 553 736 554 737 ----------------------------------- … … 561 744 Line: 768 562 745 Stack unwinding: <<beginning of stack>> 563 1 7:19:55: Parsing script Glow.material564 1 7:19:55: An exception has been thrown!746 10:38:00: Parsing script Glow.material 747 10:38:00: An exception has been thrown! 565 748 566 749 ----------------------------------- … … 573 756 Line: 768 574 757 Stack unwinding: <<beginning of stack>> 575 1 7:19:55: Error in material GameTools/ToneMap at line 211 of Glow.material: Invalid param_named attribute - An exception has been thrown!758 10:38:00: Error in material GameTools/ToneMap at line 211 of Glow.material: Invalid param_named attribute - An exception has been thrown! 576 759 577 760 ----------------------------------- … … 584 767 Line: 768 585 768 Stack unwinding: <<beginning of stack>> 586 1 7:19:55: Parsing script hangar.material587 1 7:19:55: Parsing script kupola.material588 1 7:19:55: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'589 1 7:19:55: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'590 1 7:19:55: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'591 1 7:19:55: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'592 1 7:19:55: Parsing script Ogre.material593 1 7:19:55: Parsing script Particles.material594 1 7:19:55: An exception has been thrown!769 10:38:00: Parsing script hangar.material 770 10:38:00: Parsing script kupola.material 771 10:38:00: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 772 10:38:00: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 773 10:38:00: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 774 10:38:00: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 775 10:38:00: Parsing script Ogre.material 776 10:38:00: Parsing script Particles.material 777 10:38:00: An exception has been thrown! 595 778 596 779 ----------------------------------- … … 603 786 Line: 768 604 787 Stack unwinding: <<beginning of stack>> 605 1 7:19:55: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!788 10:38:00: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 606 789 607 790 ----------------------------------- … … 614 797 Line: 768 615 798 Stack unwinding: <<beginning of stack>> 616 1 7:19:55: An exception has been thrown!799 10:38:00: An exception has been thrown! 617 800 618 801 ----------------------------------- … … 625 808 Line: 768 626 809 Stack unwinding: <<beginning of stack>> 627 1 7:19:55: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!810 10:38:00: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 628 811 629 812 ----------------------------------- … … 636 819 Line: 768 637 820 Stack unwinding: <<beginning of stack>> 638 17:19:55: Parsing script RaytraceDemo.material 639 17:19:55: Parsing script stairs.material 640 17:19:55: Parsing script X3D.material 641 17:19:55: Parsing script GameTools_Glow.compositor 642 17:19:55: Parsing script GameTools_ToneMap.compositor 643 17:19:55: Parsing script sample.fontdef 644 17:19:55: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 645 17:19:55: Parsing script GameTools.particle 646 17:19:55: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 647 17:19:55: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 648 17:19:55: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 649 17:19:55: Parsing script Compositor.overlay 650 17:19:56: Parsing script DP3.overlay 651 17:19:56: Parsing script Example-CubeMapping.overlay 652 17:19:56: Parsing script Example-DynTex.overlay 653 17:19:56: Parsing script Example-Water.overlay 654 17:19:56: Parsing script FullScreen.overlay 655 17:19:56: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 656 17:19:56: Parsing script Shadows.overlay 657 17:19:56: Finished parsing scripts for resource group General 658 17:19:56: Parsing scripts for resource group Internal 659 17:19:56: Finished parsing scripts for resource group Internal 660 17:19:56: Creating viewport on target 'rtt/27726976', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 661 17:19:56: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 662 17:19:56: Creating viewport on target 'rtt/27727616', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 663 17:19:56: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 664 17:19:56: Creating viewport on target 'rtt/27728160', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 665 17:19:56: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 666 17:19:56: Creating viewport on target 'rtt/27728704', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 667 17:19:56: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 668 17:19:56: Creating viewport on target 'rtt/27729248', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 669 17:19:56: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 670 17:19:56: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 671 17:19:56: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 672 17:19:56: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 673 17:19:56: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 674 17:19:56: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 675 17:19:56: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 676 17:19:56: Mesh: Loading kupola.mesh. 677 17:19:57: Texture: falt2.tga: Loading 1 faces(PF_R8G8B8,2048x2048x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x2048x1. 678 17:19:59: D3D9 : Loading 2D Texture, image name : 'falnormal.dds' with 2147483647 mip map levels 679 17:19:59: Texture: talaj2.tga: Loading 1 faces(PF_R8G8B8,1024x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 680 17:20:00: D3D9 : Loading 2D Texture, image name : 'talajnormal.dds' with 2147483647 mip map levels 681 17:20:00: Mesh: Loading ogrehead.mesh. 682 17:20:00: Texture: WeirdEye.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 683 17:20:00: Texture: GreenSkin.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 684 17:20:00: Texture: spheremap.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 685 17:20:00: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 686 17:20:00: Creating viewport on target 'rtt/2290848', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 687 17:20:00: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 688 17:20:00: Creating viewport on target 'rtt/2291392', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 689 17:20:00: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 690 17:20:00: Creating viewport on target 'rtt/44175808', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 691 17:20:00: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 692 17:20:00: Win32Input8: DirectInput Activation Starts 693 17:20:00: Win32Input8: Establishing keyboard input. 694 17:20:00: Win32Input8: Keyboard input established. 695 17:20:00: Win32Input8: Initializing mouse input in immediate mode. 696 17:20:00: Win32Input8: Mouse input in immediate mode initialized. 697 17:20:00: Win32Input8: DirectInput OK. 821 10:38:00: Parsing script RaytraceDemo.material 822 10:38:00: Parsing script stairs.material 823 10:38:00: Parsing script uvegfolyoso2.material 824 10:38:00: An exception has been thrown! 825 826 ----------------------------------- 827 Details: 828 ----------------------------------- 829 Error #: 7 830 Function: GpuProgramParameters::getParamIndex 831 Description: Cannot find a parameter named lightcol5. 832 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 833 Line: 768 834 Stack unwinding: <<beginning of stack>> 835 10:38:00: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 836 837 ----------------------------------- 838 Details: 839 ----------------------------------- 840 Error #: 7 841 Function: GpuProgramParameters::getParamIndex 842 Description: Cannot find a parameter named lightcol5. 843 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 844 Line: 768 845 Stack unwinding: <<beginning of stack>> 846 10:38:00: An exception has been thrown! 847 848 ----------------------------------- 849 Details: 850 ----------------------------------- 851 Error #: 7 852 Function: GpuProgramParameters::getParamIndex 853 Description: Cannot find a parameter named lightcol6. 854 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 855 Line: 768 856 Stack unwinding: <<beginning of stack>> 857 10:38:00: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 858 859 ----------------------------------- 860 Details: 861 ----------------------------------- 862 Error #: 7 863 Function: GpuProgramParameters::getParamIndex 864 Description: Cannot find a parameter named lightcol6. 865 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 866 Line: 768 867 Stack unwinding: <<beginning of stack>> 868 10:38:00: An exception has been thrown! 869 870 ----------------------------------- 871 Details: 872 ----------------------------------- 873 Error #: 7 874 Function: GpuProgramParameters::getParamIndex 875 Description: Cannot find a parameter named lightcol7. 876 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 877 Line: 768 878 Stack unwinding: <<beginning of stack>> 879 10:38:00: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 880 881 ----------------------------------- 882 Details: 883 ----------------------------------- 884 Error #: 7 885 Function: GpuProgramParameters::getParamIndex 886 Description: Cannot find a parameter named lightcol7. 887 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 888 Line: 768 889 Stack unwinding: <<beginning of stack>> 890 10:38:00: An exception has been thrown! 891 892 ----------------------------------- 893 Details: 894 ----------------------------------- 895 Error #: 7 896 Function: GpuProgramParameters::getParamIndex 897 Description: Cannot find a parameter named lightcol8. 898 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 899 Line: 768 900 Stack unwinding: <<beginning of stack>> 901 10:38:00: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 902 903 ----------------------------------- 904 Details: 905 ----------------------------------- 906 Error #: 7 907 Function: GpuProgramParameters::getParamIndex 908 Description: Cannot find a parameter named lightcol8. 909 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 910 Line: 768 911 Stack unwinding: <<beginning of stack>> 912 10:38:00: An exception has been thrown! 913 914 ----------------------------------- 915 Details: 916 ----------------------------------- 917 Error #: 7 918 Function: GpuProgramParameters::getParamIndex 919 Description: Cannot find a parameter named lightpos5. 920 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 921 Line: 768 922 Stack unwinding: <<beginning of stack>> 923 10:38:00: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 924 925 ----------------------------------- 926 Details: 927 ----------------------------------- 928 Error #: 7 929 Function: GpuProgramParameters::getParamIndex 930 Description: Cannot find a parameter named lightpos5. 931 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 932 Line: 768 933 Stack unwinding: <<beginning of stack>> 934 10:38:00: An exception has been thrown! 935 936 ----------------------------------- 937 Details: 938 ----------------------------------- 939 Error #: 7 940 Function: GpuProgramParameters::getParamIndex 941 Description: Cannot find a parameter named lightpos6. 942 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 943 Line: 768 944 Stack unwinding: <<beginning of stack>> 945 10:38:00: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 946 947 ----------------------------------- 948 Details: 949 ----------------------------------- 950 Error #: 7 951 Function: GpuProgramParameters::getParamIndex 952 Description: Cannot find a parameter named lightpos6. 953 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 954 Line: 768 955 Stack unwinding: <<beginning of stack>> 956 10:38:00: An exception has been thrown! 957 958 ----------------------------------- 959 Details: 960 ----------------------------------- 961 Error #: 7 962 Function: GpuProgramParameters::getParamIndex 963 Description: Cannot find a parameter named lightpos7. 964 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 965 Line: 768 966 Stack unwinding: <<beginning of stack>> 967 10:38:00: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 968 969 ----------------------------------- 970 Details: 971 ----------------------------------- 972 Error #: 7 973 Function: GpuProgramParameters::getParamIndex 974 Description: Cannot find a parameter named lightpos7. 975 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 976 Line: 768 977 Stack unwinding: <<beginning of stack>> 978 10:38:00: An exception has been thrown! 979 980 ----------------------------------- 981 Details: 982 ----------------------------------- 983 Error #: 7 984 Function: GpuProgramParameters::getParamIndex 985 Description: Cannot find a parameter named lightpos8. 986 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 987 Line: 768 988 Stack unwinding: <<beginning of stack>> 989 10:38:00: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 990 991 ----------------------------------- 992 Details: 993 ----------------------------------- 994 Error #: 7 995 Function: GpuProgramParameters::getParamIndex 996 Description: Cannot find a parameter named lightpos8. 997 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 998 Line: 768 999 Stack unwinding: <<beginning of stack>> 1000 10:38:00: An exception has been thrown! 1001 1002 ----------------------------------- 1003 Details: 1004 ----------------------------------- 1005 Error #: 7 1006 Function: GpuProgramParameters::getParamIndex 1007 Description: Cannot find a parameter named cameraPos. 1008 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1009 Line: 768 1010 Stack unwinding: <<beginning of stack>> 1011 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 70 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1012 1013 ----------------------------------- 1014 Details: 1015 ----------------------------------- 1016 Error #: 7 1017 Function: GpuProgramParameters::getParamIndex 1018 Description: Cannot find a parameter named cameraPos. 1019 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1020 Line: 768 1021 Stack unwinding: <<beginning of stack>> 1022 10:38:00: An exception has been thrown! 1023 1024 ----------------------------------- 1025 Details: 1026 ----------------------------------- 1027 Error #: 7 1028 Function: GpuProgramParameters::getParamIndex 1029 Description: Cannot find a parameter named lightcol1. 1030 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1031 Line: 768 1032 Stack unwinding: <<beginning of stack>> 1033 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 72 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1034 1035 ----------------------------------- 1036 Details: 1037 ----------------------------------- 1038 Error #: 7 1039 Function: GpuProgramParameters::getParamIndex 1040 Description: Cannot find a parameter named lightcol1. 1041 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1042 Line: 768 1043 Stack unwinding: <<beginning of stack>> 1044 10:38:00: An exception has been thrown! 1045 1046 ----------------------------------- 1047 Details: 1048 ----------------------------------- 1049 Error #: 7 1050 Function: GpuProgramParameters::getParamIndex 1051 Description: Cannot find a parameter named lightcol2. 1052 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1053 Line: 768 1054 Stack unwinding: <<beginning of stack>> 1055 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 73 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1056 1057 ----------------------------------- 1058 Details: 1059 ----------------------------------- 1060 Error #: 7 1061 Function: GpuProgramParameters::getParamIndex 1062 Description: Cannot find a parameter named lightcol2. 1063 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1064 Line: 768 1065 Stack unwinding: <<beginning of stack>> 1066 10:38:00: An exception has been thrown! 1067 1068 ----------------------------------- 1069 Details: 1070 ----------------------------------- 1071 Error #: 7 1072 Function: GpuProgramParameters::getParamIndex 1073 Description: Cannot find a parameter named lightcol3. 1074 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1075 Line: 768 1076 Stack unwinding: <<beginning of stack>> 1077 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 74 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1078 1079 ----------------------------------- 1080 Details: 1081 ----------------------------------- 1082 Error #: 7 1083 Function: GpuProgramParameters::getParamIndex 1084 Description: Cannot find a parameter named lightcol3. 1085 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1086 Line: 768 1087 Stack unwinding: <<beginning of stack>> 1088 10:38:00: An exception has been thrown! 1089 1090 ----------------------------------- 1091 Details: 1092 ----------------------------------- 1093 Error #: 7 1094 Function: GpuProgramParameters::getParamIndex 1095 Description: Cannot find a parameter named lightcol4. 1096 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1097 Line: 768 1098 Stack unwinding: <<beginning of stack>> 1099 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 75 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1100 1101 ----------------------------------- 1102 Details: 1103 ----------------------------------- 1104 Error #: 7 1105 Function: GpuProgramParameters::getParamIndex 1106 Description: Cannot find a parameter named lightcol4. 1107 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1108 Line: 768 1109 Stack unwinding: <<beginning of stack>> 1110 10:38:00: An exception has been thrown! 1111 1112 ----------------------------------- 1113 Details: 1114 ----------------------------------- 1115 Error #: 7 1116 Function: GpuProgramParameters::getParamIndex 1117 Description: Cannot find a parameter named lightcol5. 1118 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1119 Line: 768 1120 Stack unwinding: <<beginning of stack>> 1121 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1122 1123 ----------------------------------- 1124 Details: 1125 ----------------------------------- 1126 Error #: 7 1127 Function: GpuProgramParameters::getParamIndex 1128 Description: Cannot find a parameter named lightcol5. 1129 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1130 Line: 768 1131 Stack unwinding: <<beginning of stack>> 1132 10:38:00: An exception has been thrown! 1133 1134 ----------------------------------- 1135 Details: 1136 ----------------------------------- 1137 Error #: 7 1138 Function: GpuProgramParameters::getParamIndex 1139 Description: Cannot find a parameter named lightcol6. 1140 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1141 Line: 768 1142 Stack unwinding: <<beginning of stack>> 1143 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1144 1145 ----------------------------------- 1146 Details: 1147 ----------------------------------- 1148 Error #: 7 1149 Function: GpuProgramParameters::getParamIndex 1150 Description: Cannot find a parameter named lightcol6. 1151 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1152 Line: 768 1153 Stack unwinding: <<beginning of stack>> 1154 10:38:00: An exception has been thrown! 1155 1156 ----------------------------------- 1157 Details: 1158 ----------------------------------- 1159 Error #: 7 1160 Function: GpuProgramParameters::getParamIndex 1161 Description: Cannot find a parameter named lightcol7. 1162 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1163 Line: 768 1164 Stack unwinding: <<beginning of stack>> 1165 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1166 1167 ----------------------------------- 1168 Details: 1169 ----------------------------------- 1170 Error #: 7 1171 Function: GpuProgramParameters::getParamIndex 1172 Description: Cannot find a parameter named lightcol7. 1173 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1174 Line: 768 1175 Stack unwinding: <<beginning of stack>> 1176 10:38:00: An exception has been thrown! 1177 1178 ----------------------------------- 1179 Details: 1180 ----------------------------------- 1181 Error #: 7 1182 Function: GpuProgramParameters::getParamIndex 1183 Description: Cannot find a parameter named lightcol8. 1184 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1185 Line: 768 1186 Stack unwinding: <<beginning of stack>> 1187 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1188 1189 ----------------------------------- 1190 Details: 1191 ----------------------------------- 1192 Error #: 7 1193 Function: GpuProgramParameters::getParamIndex 1194 Description: Cannot find a parameter named lightcol8. 1195 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1196 Line: 768 1197 Stack unwinding: <<beginning of stack>> 1198 10:38:00: An exception has been thrown! 1199 1200 ----------------------------------- 1201 Details: 1202 ----------------------------------- 1203 Error #: 7 1204 Function: GpuProgramParameters::getParamIndex 1205 Description: Cannot find a parameter named lightpos1. 1206 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1207 Line: 768 1208 Stack unwinding: <<beginning of stack>> 1209 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 81 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1210 1211 ----------------------------------- 1212 Details: 1213 ----------------------------------- 1214 Error #: 7 1215 Function: GpuProgramParameters::getParamIndex 1216 Description: Cannot find a parameter named lightpos1. 1217 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1218 Line: 768 1219 Stack unwinding: <<beginning of stack>> 1220 10:38:00: An exception has been thrown! 1221 1222 ----------------------------------- 1223 Details: 1224 ----------------------------------- 1225 Error #: 7 1226 Function: GpuProgramParameters::getParamIndex 1227 Description: Cannot find a parameter named lightpos2. 1228 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1229 Line: 768 1230 Stack unwinding: <<beginning of stack>> 1231 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 82 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1232 1233 ----------------------------------- 1234 Details: 1235 ----------------------------------- 1236 Error #: 7 1237 Function: GpuProgramParameters::getParamIndex 1238 Description: Cannot find a parameter named lightpos2. 1239 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1240 Line: 768 1241 Stack unwinding: <<beginning of stack>> 1242 10:38:00: An exception has been thrown! 1243 1244 ----------------------------------- 1245 Details: 1246 ----------------------------------- 1247 Error #: 7 1248 Function: GpuProgramParameters::getParamIndex 1249 Description: Cannot find a parameter named lightpos3. 1250 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1251 Line: 768 1252 Stack unwinding: <<beginning of stack>> 1253 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 83 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1254 1255 ----------------------------------- 1256 Details: 1257 ----------------------------------- 1258 Error #: 7 1259 Function: GpuProgramParameters::getParamIndex 1260 Description: Cannot find a parameter named lightpos3. 1261 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1262 Line: 768 1263 Stack unwinding: <<beginning of stack>> 1264 10:38:00: An exception has been thrown! 1265 1266 ----------------------------------- 1267 Details: 1268 ----------------------------------- 1269 Error #: 7 1270 Function: GpuProgramParameters::getParamIndex 1271 Description: Cannot find a parameter named lightpos4. 1272 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1273 Line: 768 1274 Stack unwinding: <<beginning of stack>> 1275 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 84 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1276 1277 ----------------------------------- 1278 Details: 1279 ----------------------------------- 1280 Error #: 7 1281 Function: GpuProgramParameters::getParamIndex 1282 Description: Cannot find a parameter named lightpos4. 1283 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1284 Line: 768 1285 Stack unwinding: <<beginning of stack>> 1286 10:38:00: An exception has been thrown! 1287 1288 ----------------------------------- 1289 Details: 1290 ----------------------------------- 1291 Error #: 7 1292 Function: GpuProgramParameters::getParamIndex 1293 Description: Cannot find a parameter named lightpos5. 1294 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1295 Line: 768 1296 Stack unwinding: <<beginning of stack>> 1297 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1298 1299 ----------------------------------- 1300 Details: 1301 ----------------------------------- 1302 Error #: 7 1303 Function: GpuProgramParameters::getParamIndex 1304 Description: Cannot find a parameter named lightpos5. 1305 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1306 Line: 768 1307 Stack unwinding: <<beginning of stack>> 1308 10:38:00: An exception has been thrown! 1309 1310 ----------------------------------- 1311 Details: 1312 ----------------------------------- 1313 Error #: 7 1314 Function: GpuProgramParameters::getParamIndex 1315 Description: Cannot find a parameter named lightpos6. 1316 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1317 Line: 768 1318 Stack unwinding: <<beginning of stack>> 1319 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1320 1321 ----------------------------------- 1322 Details: 1323 ----------------------------------- 1324 Error #: 7 1325 Function: GpuProgramParameters::getParamIndex 1326 Description: Cannot find a parameter named lightpos6. 1327 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1328 Line: 768 1329 Stack unwinding: <<beginning of stack>> 1330 10:38:00: An exception has been thrown! 1331 1332 ----------------------------------- 1333 Details: 1334 ----------------------------------- 1335 Error #: 7 1336 Function: GpuProgramParameters::getParamIndex 1337 Description: Cannot find a parameter named lightpos7. 1338 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1339 Line: 768 1340 Stack unwinding: <<beginning of stack>> 1341 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1342 1343 ----------------------------------- 1344 Details: 1345 ----------------------------------- 1346 Error #: 7 1347 Function: GpuProgramParameters::getParamIndex 1348 Description: Cannot find a parameter named lightpos7. 1349 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1350 Line: 768 1351 Stack unwinding: <<beginning of stack>> 1352 10:38:00: An exception has been thrown! 1353 1354 ----------------------------------- 1355 Details: 1356 ----------------------------------- 1357 Error #: 7 1358 Function: GpuProgramParameters::getParamIndex 1359 Description: Cannot find a parameter named lightpos8. 1360 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1361 Line: 768 1362 Stack unwinding: <<beginning of stack>> 1363 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1364 1365 ----------------------------------- 1366 Details: 1367 ----------------------------------- 1368 Error #: 7 1369 Function: GpuProgramParameters::getParamIndex 1370 Description: Cannot find a parameter named lightpos8. 1371 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1372 Line: 768 1373 Stack unwinding: <<beginning of stack>> 1374 10:38:00: An exception has been thrown! 1375 1376 ----------------------------------- 1377 Details: 1378 ----------------------------------- 1379 Error #: 7 1380 Function: GpuProgramParameters::getParamIndex 1381 Description: Cannot find a parameter named ambientLight. 1382 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1383 Line: 768 1384 Stack unwinding: <<beginning of stack>> 1385 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 90 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1386 1387 ----------------------------------- 1388 Details: 1389 ----------------------------------- 1390 Error #: 7 1391 Function: GpuProgramParameters::getParamIndex 1392 Description: Cannot find a parameter named ambientLight. 1393 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1394 Line: 768 1395 Stack unwinding: <<beginning of stack>> 1396 10:38:00: An exception has been thrown! 1397 1398 ----------------------------------- 1399 Details: 1400 ----------------------------------- 1401 Error #: 7 1402 Function: GpuProgramParameters::getParamIndex 1403 Description: Cannot find a parameter named shininess. 1404 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1405 Line: 768 1406 Stack unwinding: <<beginning of stack>> 1407 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 92 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 1408 1409 ----------------------------------- 1410 Details: 1411 ----------------------------------- 1412 Error #: 7 1413 Function: GpuProgramParameters::getParamIndex 1414 Description: Cannot find a parameter named shininess. 1415 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1416 Line: 768 1417 Stack unwinding: <<beginning of stack>> 1418 10:38:00: An exception has been thrown! 1419 1420 ----------------------------------- 1421 Details: 1422 ----------------------------------- 1423 Error #: 7 1424 Function: GpuProgramParameters::getParamIndex 1425 Description: Cannot find a parameter named ambient. 1426 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1427 Line: 768 1428 Stack unwinding: <<beginning of stack>> 1429 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 93 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 1430 1431 ----------------------------------- 1432 Details: 1433 ----------------------------------- 1434 Error #: 7 1435 Function: GpuProgramParameters::getParamIndex 1436 Description: Cannot find a parameter named ambient. 1437 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1438 Line: 768 1439 Stack unwinding: <<beginning of stack>> 1440 10:38:00: An exception has been thrown! 1441 1442 ----------------------------------- 1443 Details: 1444 ----------------------------------- 1445 Error #: 7 1446 Function: GpuProgramParameters::getParamIndex 1447 Description: Cannot find a parameter named diffuse. 1448 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1449 Line: 768 1450 Stack unwinding: <<beginning of stack>> 1451 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 94 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 1452 1453 ----------------------------------- 1454 Details: 1455 ----------------------------------- 1456 Error #: 7 1457 Function: GpuProgramParameters::getParamIndex 1458 Description: Cannot find a parameter named diffuse. 1459 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1460 Line: 768 1461 Stack unwinding: <<beginning of stack>> 1462 10:38:00: An exception has been thrown! 1463 1464 ----------------------------------- 1465 Details: 1466 ----------------------------------- 1467 Error #: 7 1468 Function: GpuProgramParameters::getParamIndex 1469 Description: Cannot find a parameter named specular. 1470 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1471 Line: 768 1472 Stack unwinding: <<beginning of stack>> 1473 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 95 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 1474 1475 ----------------------------------- 1476 Details: 1477 ----------------------------------- 1478 Error #: 7 1479 Function: GpuProgramParameters::getParamIndex 1480 Description: Cannot find a parameter named specular. 1481 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1482 Line: 768 1483 Stack unwinding: <<beginning of stack>> 1484 10:38:00: Error in material Folyoso/PhongPlaneReflect at line 97 of uvegfolyoso2.material: Invalid param_named attribute - expected at least 3 parameters. 1485 10:38:00: An exception has been thrown! 1486 1487 ----------------------------------- 1488 Details: 1489 ----------------------------------- 1490 Error #: 7 1491 Function: GpuProgramParameters::getParamIndex 1492 Description: Cannot find a parameter named shininess. 1493 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1494 Line: 768 1495 Stack unwinding: <<beginning of stack>> 1496 10:38:00: Error in material uvegfolyoso_talaj at line 117 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 1497 1498 ----------------------------------- 1499 Details: 1500 ----------------------------------- 1501 Error #: 7 1502 Function: GpuProgramParameters::getParamIndex 1503 Description: Cannot find a parameter named shininess. 1504 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1505 Line: 768 1506 Stack unwinding: <<beginning of stack>> 1507 10:38:00: An exception has been thrown! 1508 1509 ----------------------------------- 1510 Details: 1511 ----------------------------------- 1512 Error #: 7 1513 Function: GpuProgramParameters::getParamIndex 1514 Description: Cannot find a parameter named ambient. 1515 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1516 Line: 768 1517 Stack unwinding: <<beginning of stack>> 1518 10:38:00: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 1519 1520 ----------------------------------- 1521 Details: 1522 ----------------------------------- 1523 Error #: 7 1524 Function: GpuProgramParameters::getParamIndex 1525 Description: Cannot find a parameter named ambient. 1526 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1527 Line: 768 1528 Stack unwinding: <<beginning of stack>> 1529 10:38:00: An exception has been thrown! 1530 1531 ----------------------------------- 1532 Details: 1533 ----------------------------------- 1534 Error #: 7 1535 Function: GpuProgramParameters::getParamIndex 1536 Description: Cannot find a parameter named diffuse. 1537 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1538 Line: 768 1539 Stack unwinding: <<beginning of stack>> 1540 10:38:00: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 1541 1542 ----------------------------------- 1543 Details: 1544 ----------------------------------- 1545 Error #: 7 1546 Function: GpuProgramParameters::getParamIndex 1547 Description: Cannot find a parameter named diffuse. 1548 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1549 Line: 768 1550 Stack unwinding: <<beginning of stack>> 1551 10:38:00: An exception has been thrown! 1552 1553 ----------------------------------- 1554 Details: 1555 ----------------------------------- 1556 Error #: 7 1557 Function: GpuProgramParameters::getParamIndex 1558 Description: Cannot find a parameter named specular. 1559 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1560 Line: 768 1561 Stack unwinding: <<beginning of stack>> 1562 10:38:00: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 1563 1564 ----------------------------------- 1565 Details: 1566 ----------------------------------- 1567 Error #: 7 1568 Function: GpuProgramParameters::getParamIndex 1569 Description: Cannot find a parameter named specular. 1570 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 1571 Line: 768 1572 Stack unwinding: <<beginning of stack>> 1573 10:38:00: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1574 10:38:00: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1575 10:38:00: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1576 10:38:00: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1577 10:38:00: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1578 10:38:00: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1579 10:38:00: Parsing script X3D.material 1580 10:38:00: Parsing script GameTools_Glow.compositor 1581 10:38:00: Parsing script GameTools_ToneMap.compositor 1582 10:38:00: Parsing script sample.fontdef 1583 10:38:00: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1584 10:38:00: Parsing script GameTools.particle 1585 10:38:00: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1586 10:38:00: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1587 10:38:00: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1588 10:38:00: Parsing script Compositor.overlay 1589 10:38:00: Parsing script DP3.overlay 1590 10:38:00: Parsing script Example-CubeMapping.overlay 1591 10:38:00: Parsing script Example-DynTex.overlay 1592 10:38:00: Parsing script Example-Water.overlay 1593 10:38:00: Parsing script FullScreen.overlay 1594 10:38:00: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1595 10:38:00: Parsing script Shadows.overlay 1596 10:38:00: Finished parsing scripts for resource group General 1597 10:38:00: Parsing scripts for resource group Internal 1598 10:38:00: Finished parsing scripts for resource group Internal 1599 10:38:00: WARNING: Texture instance 'FloorReflection' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1600 10:38:00: Creating viewport on target 'rtt/2261600', rendering from camera 'ReflectCamFloor', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1601 10:38:00: Viewport for camera 'ReflectCamFloor', actual dimensions L: 0 T: 0 W: 512 H: 512 1602 10:38:00: Mesh: Loading uvegfolyoso2.mesh. 1603 10:38:01: Texture: background.jpg: Loading 1 faces(PF_B8G8R8,2048x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x512x1. 1604 10:38:01: Win32Input8: DirectInput Activation Starts 1605 10:38:01: Win32Input8: Establishing keyboard input. 1606 10:38:01: Win32Input8: Keyboard input established. 1607 10:38:01: Win32Input8: Initializing mouse input in immediate mode. 1608 10:38:01: Win32Input8: Mouse input in immediate mode initialized. 1609 10:38:01: Win32Input8: DirectInput OK. 1610 10:38:19: Unregistering ResourceManager for type BspLevel 1611 10:38:19: Render Target 'rtt/2261600' Average FPS: 21.436 Best FPS: 31.4961 Worst FPS: 20.8748 1612 10:38:19: *-*-* OGRE Shutdown 1613 10:38:19: Unregistering ResourceManager for type Compositor 1614 10:38:19: Unregistering ResourceManager for type Font 1615 10:38:19: Unregistering ResourceManager for type Skeleton 1616 10:38:19: Unregistering ResourceManager for type Mesh 1617 10:38:19: Unregistering ResourceManager for type HighLevelGpuProgram 1618 10:38:19: Unloading library .\Plugin_CgProgramManager 1619 10:38:19: Unloading library .\Plugin_OctreeSceneManager 1620 10:38:19: Unloading library .\Plugin_BSPSceneManager 1621 10:38:19: Unloading library .\Plugin_ParticleFX 1622 10:38:19: Render Target 'OGRE Render Window' Average FPS: 21.4837 Best FPS: 31.8091 Worst FPS: 20.8955 1623 10:38:19: D3D9 : Shutting down cleanly. 1624 10:38:19: Unregistering ResourceManager for type Texture 1625 10:38:19: Unregistering ResourceManager for type GpuProgram 1626 10:38:19: D3D9 : Direct3D9 Rendering Subsystem destroyed. 1627 10:38:19: Unloading library .\RenderSystem_Direct3D9 1628 10:38:19: Unregistering ResourceManager for type Material 1629 10:38:19: Unloading library OgrePlatform_d.dll -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log
r1590 r1598 1 1 ---------------------------------------------------------------------------------------------------------------------------------- 2 | Memory leak report for: 10/ 09/2006 11:32:47|2 | Memory leak report for: 10/10/2006 10:38:19 | 3 3 ---------------------------------------------------------------------------------------------------------------------------------- 4 4 5 5 6 2 56memory leaks found:6 238 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 020961 0x00CE0418 0x00000140 0x00CE0408 0x00000160 0x00000000 new N N ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 12 020962 0x00CE05B8 0x0000000C 0x00CE05A8 0x0000002C 0x00000000 new N N ??(0) ?? 13 007197 0x00D3CDB8 0x00000048 0x00D3CDA8 0x00000068 0x00000000 new N N ??(0) ?? 14 007797 0x00D3D220 0x00000028 0x00D3D210 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 15 007188 0x00D3DB78 0x00000048 0x00D3DB68 0x00000068 0x00000000 new N N ??(0) ?? 16 007201 0x00D3DC20 0x00000048 0x00D3DC10 0x00000068 0x00000000 new N N ??(0) ?? 17 007205 0x00D3DDD8 0x00000048 0x00D3DDC8 0x00000068 0x00000000 new N N ??(0) ?? 18 007209 0x00D3DE80 0x00000048 0x00D3DE70 0x00000068 0x00000000 new N N ??(0) ?? 19 007213 0x00D3DF28 0x00000048 0x00D3DF18 0x00000068 0x00000000 new N N ??(0) ?? 20 007173 0x00D40510 0x00000028 0x00D40500 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 21 007174 0x00D40C58 0x00000048 0x00D40C48 0x00000068 0x00000000 new N N ??(0) ?? 22 007179 0x00D40D00 0x00000048 0x00D40CF0 0x00000068 0x00000000 new N N ??(0) ?? 23 007183 0x00D40DA8 0x00000048 0x00D40D98 0x00000068 0x00000000 new N N ??(0) ?? 24 007193 0x00D40E50 0x00000048 0x00D40E40 0x00000068 0x00000000 new N N ??(0) ?? 25 007187 0x00D40F10 0x00000028 0x00D40F00 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 26 007444 0x00D41000 0x00000048 0x00D40FF0 0x00000068 0x00000000 new N N ??(0) ?? 27 007448 0x00D410A8 0x00000048 0x00D41098 0x00000068 0x00000000 new N N ??(0) ?? 28 007452 0x00D41150 0x00000048 0x00D41140 0x00000068 0x00000000 new N N ??(0) ?? 29 008155 0x00D41B40 0x00000048 0x00D41B30 0x00000068 0x00000000 new N N ??(0) ?? 30 008149 0x00D42030 0x00000028 0x00D42020 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 31 008150 0x00D42700 0x00000048 0x00D426F0 0x00000068 0x00000000 new N N ??(0) ?? 32 008159 0x00D427A8 0x00000048 0x00D42798 0x00000068 0x00000000 new N N ??(0) ?? 33 008163 0x00D42850 0x00000048 0x00D42840 0x00000068 0x00000000 new N N ??(0) ?? 34 008167 0x00D428F8 0x00000028 0x00D428E8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 35 008173 0x00D42980 0x00000048 0x00D42970 0x00000068 0x00000000 new N N ??(0) ?? 36 008168 0x00D42AA0 0x00000048 0x00D42A90 0x00000068 0x00000000 new N N ??(0) ?? 37 008177 0x00D42C78 0x00000048 0x00D42C68 0x00000068 0x00000000 new N N ??(0) ?? 38 008181 0x00D42D20 0x00000048 0x00D42D10 0x00000068 0x00000000 new N N ??(0) ?? 39 008321 0x00D44830 0x00000028 0x00D44820 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 40 008322 0x00D448B8 0x00000048 0x00D448A8 0x00000068 0x00000000 new N N ??(0) ?? 41 008327 0x00D449C0 0x00000048 0x00D449B0 0x00000068 0x00000000 new N N ??(0) ?? 42 007412 0x00D4B170 0x00000028 0x00D4B160 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 43 007413 0x00D4B950 0x00000048 0x00D4B940 0x00000068 0x00000000 new N N ??(0) ?? 44 007426 0x00D4B9F8 0x00000028 0x00D4B9E8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 45 007418 0x00D4BA90 0x00000048 0x00D4BA80 0x00000068 0x00000000 new N N ??(0) ?? 46 007422 0x00D4BB38 0x00000048 0x00D4BB28 0x00000068 0x00000000 new N N ??(0) ?? 47 007427 0x00D4BBE0 0x00000048 0x00D4BBD0 0x00000068 0x00000000 new N N ??(0) ?? 48 007432 0x00D4BD88 0x00000048 0x00D4BD78 0x00000068 0x00000000 new N N ??(0) ?? 49 007436 0x00D4BE30 0x00000048 0x00D4BE20 0x00000068 0x00000000 new N N ??(0) ?? 50 007440 0x00D4BF70 0x00000048 0x00D4BF60 0x00000068 0x00000000 new N N ??(0) ?? 51 007613 0x00D500C8 0x00000028 0x00D500B8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 52 007623 0x00D50660 0x00000048 0x00D50650 0x00000068 0x00000000 new N N ??(0) ?? 53 007614 0x00D50730 0x00000048 0x00D50720 0x00000068 0x00000000 new N N ??(0) ?? 54 007619 0x00D507D8 0x00000048 0x00D507C8 0x00000068 0x00000000 new N N ??(0) ?? 55 007649 0x00D53158 0x00000048 0x00D53148 0x00000068 0x00000000 new N N ??(0) ?? 56 007627 0x00D53288 0x00000048 0x00D53278 0x00000068 0x00000000 new N N ??(0) ?? 57 007631 0x00D53330 0x00000048 0x00D53320 0x00000068 0x00000000 new N N ??(0) ?? 58 007635 0x00D533D8 0x00000028 0x00D533C8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 59 007636 0x00D53460 0x00000048 0x00D53450 0x00000068 0x00000000 new N N ??(0) ?? 60 007641 0x00D53570 0x00000048 0x00D53560 0x00000068 0x00000000 new N N ??(0) ?? 61 007645 0x00D53678 0x00000048 0x00D53668 0x00000068 0x00000000 new N N ??(0) ?? 62 007653 0x00D53850 0x00000048 0x00D53840 0x00000068 0x00000000 new N N ??(0) ?? 63 007657 0x00D538F8 0x00000048 0x00D538E8 0x00000068 0x00000000 new N N ??(0) ?? 64 007661 0x00D539A0 0x00000048 0x00D53990 0x00000068 0x00000000 new N N ??(0) ?? 65 007798 0x00D541C0 0x00000048 0x00D541B0 0x00000068 0x00000000 new N N ??(0) ?? 66 007803 0x00D54908 0x00000048 0x00D548F8 0x00000068 0x00000000 new N N ??(0) ?? 67 007807 0x00D549B0 0x00000048 0x00D549A0 0x00000068 0x00000000 new N N ??(0) ?? 68 007811 0x00D54A58 0x00000048 0x00D54A48 0x00000068 0x00000000 new N N ??(0) ?? 69 007815 0x00D54B00 0x00000028 0x00D54AF0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 70 007816 0x00D54B88 0x00000048 0x00D54B78 0x00000068 0x00000000 new N N ??(0) ?? 71 007821 0x00D54C98 0x00000048 0x00D54C88 0x00000068 0x00000000 new N N ??(0) ?? 72 007825 0x00D54D40 0x00000048 0x00D54D30 0x00000068 0x00000000 new N N ??(0) ?? 73 007829 0x00D54DE8 0x00000048 0x00D54DD8 0x00000068 0x00000000 new N N ??(0) ?? 74 007987 0x00D65A90 0x00000048 0x00D65A80 0x00000068 0x00000000 new N N ??(0) ?? 75 007991 0x00D65B38 0x00000048 0x00D65B28 0x00000068 0x00000000 new N N ??(0) ?? 76 007995 0x00D65BE0 0x00000028 0x00D65BD0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 77 007996 0x00D65C68 0x00000048 0x00D65C58 0x00000068 0x00000000 new N N ??(0) ?? 78 008001 0x00D65D78 0x00000048 0x00D65D68 0x00000068 0x00000000 new N N ??(0) ?? 79 008005 0x00D65E20 0x00000048 0x00D65E10 0x00000068 0x00000000 new N N ??(0) ?? 80 008009 0x00D65EC8 0x00000048 0x00D65EB8 0x00000068 0x00000000 new N N ??(0) ?? 81 007977 0x00D69DA0 0x00000028 0x00D69D90 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 82 007978 0x00D69E28 0x00000048 0x00D69E18 0x00000068 0x00000000 new N N ??(0) ?? 83 007983 0x00D69F30 0x00000048 0x00D69F20 0x00000068 0x00000000 new N N ??(0) ?? 84 008331 0x00D6A038 0x00000048 0x00D6A028 0x00000068 0x00000000 new N N ??(0) ?? 85 008335 0x00D6A0E0 0x00000048 0x00D6A0D0 0x00000068 0x00000000 new N N ??(0) ?? 86 008339 0x00D6A188 0x00000028 0x00D6A178 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 87 008340 0x00D6A210 0x00000048 0x00D6A200 0x00000068 0x00000000 new N N ??(0) ?? 88 008345 0x00D6A320 0x00000048 0x00D6A310 0x00000068 0x00000000 new N N ??(0) ?? 89 008349 0x00D6A3C8 0x00000048 0x00D6A3B8 0x00000068 0x00000000 new N N ??(0) ?? 90 008353 0x00D6A470 0x00000048 0x00D6A460 0x00000068 0x00000000 new N N ??(0) ?? 91 008748 0x00D6DE60 0x00000048 0x00D6DE50 0x00000068 0x00000000 new N N ??(0) ?? 92 008742 0x00D6F110 0x00000028 0x00D6F100 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 93 008743 0x00D6F198 0x00000048 0x00D6F188 0x00000068 0x00000000 new N N ??(0) ?? 94 009584 0x01BFEE20 0x00000028 0x01BFEE10 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 95 009585 0x01BFEF50 0x00000048 0x01BFEF40 0x00000068 0x00000000 new N N ??(0) ?? 96 009590 0x01C00098 0x00000048 0x01C00088 0x00000068 0x00000000 new N N ??(0) ?? 97 009594 0x01C00140 0x00000048 0x01C00130 0x00000068 0x00000000 new N N ??(0) ?? 98 009598 0x01C001E8 0x00000048 0x01C001D8 0x00000068 0x00000000 new N N ??(0) ?? 99 009765 0x01C01410 0x00000048 0x01C01400 0x00000068 0x00000000 new N N ??(0) ?? 100 009764 0x01C028E8 0x00000028 0x01C028D8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 101 009770 0x01C03050 0x00000048 0x01C03040 0x00000068 0x00000000 new N N ??(0) ?? 102 009774 0x01C03158 0x00000048 0x01C03148 0x00000068 0x00000000 new N N ??(0) ?? 103 009778 0x01C03200 0x00000048 0x01C031F0 0x00000068 0x00000000 new N N ??(0) ?? 104 009782 0x01C032A8 0x00000048 0x01C03298 0x00000068 0x00000000 new N N ??(0) ?? 105 009786 0x01C033B0 0x00000028 0x01C033A0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 106 009787 0x01C03438 0x00000048 0x01C03428 0x00000068 0x00000000 new N N ??(0) ?? 107 009792 0x01C03548 0x00000048 0x01C03538 0x00000068 0x00000000 new N N ??(0) ?? 108 009796 0x01C035F0 0x00000028 0x01C035E0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 109 009797 0x01C03678 0x00000048 0x01C03668 0x00000068 0x00000000 new N N ??(0) ?? 110 009802 0x01C03788 0x00000048 0x01C03778 0x00000068 0x00000000 new N N ??(0) ?? 111 009806 0x01C03830 0x00000048 0x01C03820 0x00000068 0x00000000 new N N ??(0) ?? 112 010590 0x01C102B8 0x00000048 0x01C102A8 0x00000068 0x00000000 new N N ??(0) ?? 113 010595 0x01C10360 0x00000048 0x01C10350 0x00000068 0x00000000 new N N ??(0) ?? 114 010599 0x01C10408 0x00000048 0x01C103F8 0x00000068 0x00000000 new N N ??(0) ?? 115 010603 0x01C104B0 0x00000028 0x01C104A0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 116 010604 0x01C10538 0x00000048 0x01C10528 0x00000068 0x00000000 new N N ??(0) ?? 117 010609 0x01C105E0 0x00000048 0x01C105D0 0x00000068 0x00000000 new N N ??(0) ?? 118 010613 0x01C10688 0x00000048 0x01C10678 0x00000068 0x00000000 new N N ??(0) ?? 119 010617 0x01C10730 0x00000028 0x01C10720 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 120 010618 0x01C107B8 0x00000048 0x01C107A8 0x00000068 0x00000000 new N N ??(0) ?? 121 010623 0x01C10960 0x00000048 0x01C10950 0x00000068 0x00000000 new N N ??(0) ?? 122 010627 0x01C1C038 0x00000048 0x01C1C028 0x00000068 0x00000000 new N N ??(0) ?? 123 010631 0x01C1C140 0x00000048 0x01C1C130 0x00000068 0x00000000 new N N ??(0) ?? 124 010589 0x01C1D948 0x00000028 0x01C1D938 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 125 011750 0x01C1FBC8 0x00000048 0x01C1FBB8 0x00000068 0x00000000 new N N ??(0) ?? 126 011744 0x01C20240 0x00000028 0x01C20230 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 127 011745 0x01C202C8 0x00000048 0x01C202B8 0x00000068 0x00000000 new N N ??(0) ?? 128 011519 0x01C436F0 0x00000028 0x01C436E0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 129 011520 0x01C43778 0x00000048 0x01C43768 0x00000068 0x00000000 new N N ??(0) ?? 130 011588 0x01C44108 0x00000028 0x01C440F8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 131 011589 0x01C44190 0x00000048 0x01C44180 0x00000068 0x00000000 new N N ??(0) ?? 132 011594 0x01C443F0 0x00000048 0x01C443E0 0x00000068 0x00000000 new N N ??(0) ?? 133 012613 0x01C67FC0 0x00000028 0x01C67FB0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 134 012614 0x01C68048 0x00000048 0x01C68038 0x00000068 0x00000000 new N N ??(0) ?? 135 012619 0x01C681B0 0x00000048 0x01C681A0 0x00000068 0x00000000 new N N ??(0) ?? 136 012623 0x01C682B8 0x00000048 0x01C682A8 0x00000068 0x00000000 new N N ??(0) ?? 137 022549 0x01CB9900 0x00000004 0x01CB98F0 0x00000024 0x00000000 new N N ??(0) ?? 138 020963 0x01CBD038 0x00000018 0x01CBD028 0x00000038 0x00000000 new N N ??(0) ?? 139 020964 0x01CBD0B0 0x0000000C 0x01CBD0A0 0x0000002C 0x00000000 new N N ??(0) ?? 140 020965 0x01CBD118 0x00000018 0x01CBD108 0x00000038 0x00000000 new N N ??(0) ?? 141 020966 0x01CBD190 0x00000018 0x01CBD180 0x00000038 0x00000000 new N N ??(0) ?? 142 020967 0x01CBD208 0x00000030 0x01CBD1F8 0x00000050 0x00000000 new N N ??(0) ?? 143 020968 0x01CBD298 0x00000018 0x01CBD288 0x00000038 0x00000000 new N N ??(0) ?? 144 020969 0x01CBD310 0x00000008 0x01CBD300 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 145 020970 0x01CBD378 0x00000018 0x01CBD368 0x00000038 0x00000000 new N N ??(0) ?? 146 020971 0x01CBD3F0 0x00000018 0x01CBD3E0 0x00000038 0x00000000 new N N ??(0) ?? 147 020972 0x01CBD468 0x00000018 0x01CBD458 0x00000038 0x00000000 new N N ??(0) ?? 148 020973 0x01CBD4E0 0x00000018 0x01CBD4D0 0x00000038 0x00000000 new N N ??(0) ?? 149 020974 0x01CBD558 0x00000018 0x01CBD548 0x00000038 0x00000000 new N N ??(0) ?? 150 020975 0x01CBD5D0 0x00000018 0x01CBD5C0 0x00000038 0x00000000 new N N ??(0) ?? 151 020976 0x01CBD648 0x00000018 0x01CBD638 0x00000038 0x00000000 new N N ??(0) ?? 152 020977 0x01CBD6C0 0x00000018 0x01CBD6B0 0x00000038 0x00000000 new N N ??(0) ?? 153 020978 0x01CBD738 0x00000018 0x01CBD728 0x00000038 0x00000000 new N N ??(0) ?? 154 020979 0x01CBD7B0 0x00000018 0x01CBD7A0 0x00000038 0x00000000 new N N ??(0) ?? 155 020980 0x01CBD828 0x00000018 0x01CBD818 0x00000038 0x00000000 new N N ??(0) ?? 156 020981 0x01CBD8A0 0x00000048 0x01CBD890 0x00000068 0x00000000 new N N ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 157 020982 0x01CBD948 0x00000030 0x01CBD938 0x00000050 0x00000000 new N N ??(0) ?? 158 020983 0x01CBD9D8 0x00000030 0x01CBD9C8 0x00000050 0x00000000 new N N ??(0) ?? 159 020984 0x01CBDA68 0x00000030 0x01CBDA58 0x00000050 0x00000000 new N N ??(0) ?? 160 020985 0x01CBDAF8 0x00000030 0x01CBDAE8 0x00000050 0x00000000 new N N ??(0) ?? 161 020986 0x01CBDB88 0x00000030 0x01CBDB78 0x00000050 0x00000000 new N N ??(0) ?? 162 020987 0x01CBDC18 0x00000030 0x01CBDC08 0x00000050 0x00000000 new N N ??(0) ?? 163 020988 0x01CBDCA8 0x00000030 0x01CBDC98 0x00000050 0x00000000 new N N ??(0) ?? 164 020989 0x01CBDD38 0x00000030 0x01CBDD28 0x00000050 0x00000000 new N N ??(0) ?? 165 020990 0x01CBDDC8 0x0000000C 0x01CBDDB8 0x0000002C 0x00000000 new N N ??(0) ?? 166 020991 0x01CBDE30 0x00000048 0x01CBDE20 0x00000068 0x00000000 new N N ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 167 020992 0x01CBDED8 0x00000030 0x01CBDEC8 0x00000050 0x00000000 new N N ??(0) ?? 168 020993 0x01CBDF68 0x00000030 0x01CBDF58 0x00000050 0x00000000 new N N ??(0) ?? 169 020994 0x01CBDFF8 0x00000030 0x01CBDFE8 0x00000050 0x00000000 new N N ??(0) ?? 170 020995 0x01CBE088 0x00000030 0x01CBE078 0x00000050 0x00000000 new N N ??(0) ?? 171 020996 0x01CBE118 0x00000030 0x01CBE108 0x00000050 0x00000000 new N N ??(0) ?? 172 020997 0x01CBE1A8 0x00000030 0x01CBE198 0x00000050 0x00000000 new N N ??(0) ?? 173 020998 0x01CBE238 0x00000030 0x01CBE228 0x00000050 0x00000000 new N N ??(0) ?? 174 020999 0x01CBE2C8 0x00000030 0x01CBE2B8 0x00000050 0x00000000 new N N ??(0) ?? 175 021000 0x01CBE358 0x0000000C 0x01CBE348 0x0000002C 0x00000000 new N N ??(0) ?? 176 021001 0x01CBE3C0 0x0000004C 0x01CBE3B0 0x0000006C 0x00000000 new N N ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 177 021002 0x01CBE468 0x00000030 0x01CBE458 0x00000050 0x00000000 new N N ??(0) ?? 178 021003 0x01CBE4F8 0x00000030 0x01CBE4E8 0x00000050 0x00000000 new N N ??(0) ?? 179 021004 0x01CBE588 0x00000030 0x01CBE578 0x00000050 0x00000000 new N N ??(0) ?? 180 021005 0x01CBE618 0x00000030 0x01CBE608 0x00000050 0x00000000 new N N ??(0) ?? 181 021007 0x01CBE6A8 0x00000030 0x01CBE698 0x00000050 0x00000000 new N N ??(0) ?? 182 021006 0x01CBE768 0x00000030 0x01CBE758 0x00000050 0x00000000 new N N ??(0) ?? 183 021008 0x01CBE858 0x00000030 0x01CBE848 0x00000050 0x00000000 new N N ??(0) ?? 184 021009 0x01CBE8E8 0x00000030 0x01CBE8D8 0x00000050 0x00000000 new N N ??(0) ?? 185 021010 0x01CBE978 0x00000030 0x01CBE968 0x00000050 0x00000000 new N N ??(0) ?? 186 021011 0x01CBEA08 0x0000000C 0x01CBE9F8 0x0000002C 0x00000000 new N N ??(0) ?? 187 021012 0x01CBEA70 0x0000007C 0x01CBEA60 0x0000009C 0x00000000 new N N ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 188 021013 0x01CBEB48 0x00000030 0x01CBEB38 0x00000050 0x00000000 new N N ??(0) ?? 189 021014 0x01CBEBD8 0x00000030 0x01CBEBC8 0x00000050 0x00000000 new N N ??(0) ?? 190 021015 0x01CBEC68 0x00000030 0x01CBEC58 0x00000050 0x00000000 new N N ??(0) ?? 191 021016 0x01CBEDB8 0x00000030 0x01CBEDA8 0x00000050 0x00000000 new N N ??(0) ?? 192 021017 0x01CBEEA8 0x00000030 0x01CBEE98 0x00000050 0x00000000 new N N ??(0) ?? 193 021018 0x01CBEFF8 0x00000030 0x01CBEFE8 0x00000050 0x00000000 new N N ??(0) ?? 194 021019 0x01CBF088 0x00000030 0x01CBF078 0x00000050 0x00000000 new N N ??(0) ?? 195 021020 0x01CBF178 0x00000030 0x01CBF168 0x00000050 0x00000000 new N N ??(0) ?? 196 021021 0x01CBF268 0x00000030 0x01CBF258 0x00000050 0x00000000 new N N ??(0) ?? 197 021022 0x01CBF358 0x00000030 0x01CBF348 0x00000050 0x00000000 new N N ??(0) ?? 198 021023 0x01CBF3E8 0x00000030 0x01CBF3D8 0x00000050 0x00000000 new N N ??(0) ?? 199 021024 0x01CBF478 0x00000030 0x01CBF468 0x00000050 0x00000000 new N N ??(0) ?? 200 021025 0x01CBF508 0x0000000C 0x01CBF4F8 0x0000002C 0x00000000 new N N ??(0) ?? 201 021026 0x01CBF570 0x00000068 0x01CBF560 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 202 021027 0x01CBF638 0x00000030 0x01CBF628 0x00000050 0x00000000 new N N ??(0) ?? 203 021028 0x01CBF6C8 0x00000030 0x01CBF6B8 0x00000050 0x00000000 new N N ??(0) ?? 204 021029 0x01CBF7B8 0x00000030 0x01CBF7A8 0x00000050 0x00000000 new N N ??(0) ?? 205 021030 0x01CBF8A8 0x00000030 0x01CBF898 0x00000050 0x00000000 new N N ??(0) ?? 206 021031 0x01CBF998 0x0000000C 0x01CBF988 0x0000002C 0x00000000 new N N ??(0) ?? 207 021032 0x01CBFA00 0x00000068 0x01CBF9F0 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 208 021033 0x01CBFAC8 0x00000030 0x01CBFAB8 0x00000050 0x00000000 new N N ??(0) ?? 209 021034 0x01CBFB58 0x00000030 0x01CBFB48 0x00000050 0x00000000 new N N ??(0) ?? 210 021035 0x01CBFC48 0x00000030 0x01CBFC38 0x00000050 0x00000000 new N N ??(0) ?? 211 021036 0x01CBFD38 0x00000030 0x01CBFD28 0x00000050 0x00000000 new N N ??(0) ?? 212 021037 0x01CBFE28 0x0000000C 0x01CBFE18 0x0000002C 0x00000000 new N N ??(0) ?? 213 021038 0x01CBFE90 0x00000030 0x01CBFE80 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 214 021039 0x01CBFF20 0x00000030 0x01CBFF10 0x00000050 0x00000000 new N N ??(0) ?? 215 021040 0x01CBFFB0 0x00000030 0x01CBFFA0 0x00000050 0x00000000 new N N ??(0) ?? 216 021041 0x01CC0040 0x0000000C 0x01CC0030 0x0000002C 0x00000000 new N N ??(0) ?? 217 021042 0x01CC00A8 0x00000030 0x01CC0098 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 218 021043 0x01CC0138 0x00000030 0x01CC0128 0x00000050 0x00000000 new N N ??(0) ?? 219 021044 0x01CC01C8 0x00000030 0x01CC01B8 0x00000050 0x00000000 new N N ??(0) ?? 220 021045 0x01CC0258 0x0000000C 0x01CC0248 0x0000002C 0x00000000 new N N ??(0) ?? 221 021046 0x01CC02C0 0x000000B4 0x01CC02B0 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 222 021047 0x01CC03D0 0x00000030 0x01CC03C0 0x00000050 0x00000000 new N N ??(0) ?? 223 021048 0x01CC0460 0x00000030 0x01CC0450 0x00000050 0x00000000 new N N ??(0) ?? 224 021049 0x01CC04F0 0x00000030 0x01CC04E0 0x00000050 0x00000000 new N N ??(0) ?? 225 021050 0x01CC0580 0x00000030 0x01CC0570 0x00000050 0x00000000 new N N ??(0) ?? 226 021051 0x01CC0610 0x00000030 0x01CC0600 0x00000050 0x00000000 new N N ??(0) ?? 227 021052 0x01CC06A0 0x00000030 0x01CC0690 0x00000050 0x00000000 new N N ??(0) ?? 228 021053 0x01CC0730 0x00000030 0x01CC0720 0x00000050 0x00000000 new N N ??(0) ?? 229 021054 0x01CC07C0 0x00000030 0x01CC07B0 0x00000050 0x00000000 new N N ??(0) ?? 230 021055 0x01CC0850 0x00000030 0x01CC0840 0x00000050 0x00000000 new N N ??(0) ?? 231 021056 0x01CC08E0 0x00000030 0x01CC08D0 0x00000050 0x00000000 new N N ??(0) ?? 232 021057 0x01CC0970 0x00000030 0x01CC0960 0x00000050 0x00000000 new N N ??(0) ?? 233 021058 0x01CC0A00 0x0000000C 0x01CC09F0 0x0000002C 0x00000000 new N N ??(0) ?? 234 021059 0x01CC0A68 0x00000080 0x01CC0A58 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 235 021060 0x01CC0B48 0x00000030 0x01CC0B38 0x00000050 0x00000000 new N N ??(0) ?? 236 021061 0x01CC0BD8 0x00000030 0x01CC0BC8 0x00000050 0x00000000 new N N ??(0) ?? 237 021062 0x01CC0C68 0x00000030 0x01CC0C58 0x00000050 0x00000000 new N N ??(0) ?? 238 021063 0x01CC0CF8 0x00000030 0x01CC0CE8 0x00000050 0x00000000 new N N ??(0) ?? 239 021064 0x01CC0D88 0x00000030 0x01CC0D78 0x00000050 0x00000000 new N N ??(0) ?? 240 021065 0x01CC0E18 0x00000030 0x01CC0E08 0x00000050 0x00000000 new N N ??(0) ?? 241 021066 0x01CC0F08 0x00000030 0x01CC0EF8 0x00000050 0x00000000 new N N ??(0) ?? 242 021067 0x01CC0FF8 0x00000030 0x01CC0FE8 0x00000050 0x00000000 new N N ??(0) ?? 243 021068 0x01CC1088 0x00000030 0x01CC1078 0x00000050 0x00000000 new N N ??(0) ?? 244 021069 0x01CC1118 0x00000030 0x01CC1108 0x00000050 0x00000000 new N N ??(0) ?? 245 021070 0x01CC11A8 0x00000030 0x01CC1198 0x00000050 0x00000000 new N N ??(0) ?? 246 021071 0x01CC1298 0x0000000C 0x01CC1288 0x0000002C 0x00000000 new N N ??(0) ?? 247 022449 0x02672060 0x000000C4 0x02672050 0x000000E4 0x00000000 new N N gametoolsparticledemo.h(175) ParticleDemoApplication::createScene 248 022450 0x02672180 0x00000018 0x02672170 0x00000038 0x00000000 new N N ??(0) ?? 249 022451 0x026721F8 0x00000018 0x026721E8 0x00000038 0x00000000 new N N ??(0) ?? 250 022452 0x02672270 0x0000000C 0x02672260 0x0000002C 0x00000000 new N N ??(0) ?? 251 022453 0x026722D8 0x0000001C 0x026722C8 0x0000003C 0x00000000 new N N gametoolsparticledemo.h(177) ParticleDemoApplication::createScene 252 022454 0x02672350 0x00000004 0x02672340 0x00000024 0x00000000 new N N ??(0) ?? 253 022455 0x026723B0 0x000000C0 0x026723A0 0x000000E0 0x00000000 new N N gametoolsparticledemo.h(180) ParticleDemoApplication::createScene 254 022473 0x02673178 0x00000018 0x02673168 0x00000038 0x00000000 new N N ??(0) ?? 255 022475 0x026731F0 0x00000038 0x026731E0 0x00000058 0x00000000 new N N gametoolsparticledemo.h(186) ParticleDemoApplication::createScene 256 022476 0x02673288 0x00000080 0x02673278 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(514) OgreIlluminationManager::createGlobalRu 257 022477 0x026733C8 0x00000030 0x026733B8 0x00000050 0x00000000 new N N ??(0) ?? 258 022492 0x02674028 0x00000018 0x02674018 0x00000038 0x00000000 new N N ??(0) ?? 259 022518 0x026755B0 0x00000018 0x026755A0 0x00000038 0x00000000 new N N ??(0) ?? 260 022519 0x02675628 0x0000009C 0x02675618 0x000000BC 0x00000000 new N N ogreilluminationmanager.cpp(532) OgreIlluminationManager::createGlobalRu 261 022520 0x02675720 0x00000030 0x02675710 0x00000050 0x00000000 new N N ??(0) ?? 262 022547 0x02676AA0 0x00000004 0x02676A90 0x00000024 0x00000000 new N N ??(0) ?? 263 022544 0x02676D50 0x00000018 0x02676D40 0x00000038 0x00000000 new N N ??(0) ?? 264 022493 0x02687C78 0x000000B4 0x02687C68 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(521) OgreIlluminationManager::createGlobalRu 265 022494 0x02687D88 0x00000030 0x02687D78 0x00000050 0x00000000 new N N ??(0) ?? 266 098307 0x026ACA58 0x00000004 0x026ACA48 0x00000024 0x00000000 new N N ??(0) ?? 11 022323 0x00CD7AB0 0x00000030 0x00CD7AA0 0x00000050 0x00000000 new N N ??(0) ?? 12 022324 0x00CD7B30 0x00000030 0x00CD7B20 0x00000050 0x00000000 new N N ??(0) ?? 13 022325 0x00CD7BB0 0x00000030 0x00CD7BA0 0x00000050 0x00000000 new N N ??(0) ?? 14 022327 0x00CD7C30 0x0000004C 0x00CD7C20 0x0000006C 0x00000000 new N N ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 15 022328 0x00CD7CC8 0x00000030 0x00CD7CB8 0x00000050 0x00000000 new N N ??(0) ?? 16 022329 0x00CD7D48 0x00000030 0x00CD7D38 0x00000050 0x00000000 new N N ??(0) ?? 17 022330 0x00CD7DC8 0x00000030 0x00CD7DB8 0x00000050 0x00000000 new N N ??(0) ?? 18 022331 0x00CD7E48 0x00000030 0x00CD7E38 0x00000050 0x00000000 new N N ??(0) ?? 19 022332 0x00CD7EC8 0x00000030 0x00CD7EB8 0x00000050 0x00000000 new N N ??(0) ?? 20 022333 0x00CD7F48 0x00000030 0x00CD7F38 0x00000050 0x00000000 new N N ??(0) ?? 21 022334 0x00CD7FC8 0x00000030 0x00CD7FB8 0x00000050 0x00000000 new N N ??(0) ?? 22 022335 0x00CD8048 0x00000030 0x00CD8038 0x00000050 0x00000000 new N N ??(0) ?? 23 022336 0x00CD80C8 0x00000030 0x00CD80B8 0x00000050 0x00000000 new N N ??(0) ?? 24 022337 0x00CD8148 0x0000000C 0x00CD8138 0x0000002C 0x00000000 new N N ??(0) ?? 25 022338 0x00CD81A0 0x0000007C 0x00CD8190 0x0000009C 0x00000000 new N N ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 26 022339 0x00CD8268 0x00000030 0x00CD8258 0x00000050 0x00000000 new N N ??(0) ?? 27 022340 0x00CD82E8 0x00000030 0x00CD82D8 0x00000050 0x00000000 new N N ??(0) ?? 28 022341 0x00CD8368 0x00000030 0x00CD8358 0x00000050 0x00000000 new N N ??(0) ?? 29 022342 0x00CD83E8 0x00000030 0x00CD83D8 0x00000050 0x00000000 new N N ??(0) ?? 30 022343 0x00CD8468 0x00000030 0x00CD8458 0x00000050 0x00000000 new N N ??(0) ?? 31 022344 0x00CD84E8 0x00000030 0x00CD84D8 0x00000050 0x00000000 new N N ??(0) ?? 32 022345 0x00CD8568 0x00000030 0x00CD8558 0x00000050 0x00000000 new N N ??(0) ?? 33 022346 0x00CD85E8 0x00000030 0x00CD85D8 0x00000050 0x00000000 new N N ??(0) ?? 34 022347 0x00CD8668 0x00000030 0x00CD8658 0x00000050 0x00000000 new N N ??(0) ?? 35 022310 0x00CD8A30 0x00000030 0x00CD8A20 0x00000050 0x00000000 new N N ??(0) ?? 36 022311 0x00CD8AB0 0x00000030 0x00CD8AA0 0x00000050 0x00000000 new N N ??(0) ?? 37 022312 0x00CD8B30 0x00000030 0x00CD8B20 0x00000050 0x00000000 new N N ??(0) ?? 38 022313 0x00CD8BB0 0x00000030 0x00CD8BA0 0x00000050 0x00000000 new N N ??(0) ?? 39 022314 0x00CD8C30 0x00000030 0x00CD8C20 0x00000050 0x00000000 new N N ??(0) ?? 40 022315 0x00CD8CB0 0x00000030 0x00CD8CA0 0x00000050 0x00000000 new N N ??(0) ?? 41 022287 0x00CD8DB8 0x00000144 0x00CD8DA8 0x00000164 0x00000000 new N N ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 42 022298 0x00CD8F48 0x00000018 0x00CD8F38 0x00000038 0x00000000 new N N ??(0) ?? 43 022299 0x00CD8FB0 0x00000018 0x00CD8FA0 0x00000038 0x00000000 new N N ??(0) ?? 44 022292 0x00CD91E0 0x00000018 0x00CD91D0 0x00000038 0x00000000 new N N ??(0) ?? 45 022306 0x00CD9618 0x00000018 0x00CD9608 0x00000038 0x00000000 new N N ??(0) ?? 46 022307 0x00CD9680 0x00000048 0x00CD9670 0x00000068 0x00000000 new N N ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 47 022294 0x00CD9788 0x00000018 0x00CD9778 0x00000038 0x00000000 new N N ??(0) ?? 48 022295 0x00CD97F0 0x00000008 0x00CD97E0 0x00000028 0x00000000 new N N ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 49 022289 0x00CD9E80 0x00000018 0x00CD9E70 0x00000038 0x00000000 new N N ??(0) ?? 50 022308 0x00CE1038 0x00000030 0x00CE1028 0x00000050 0x00000000 new N N ??(0) ?? 51 022309 0x00CE10B8 0x00000030 0x00CE10A8 0x00000050 0x00000000 new N N ??(0) ?? 52 022316 0x00CE1138 0x0000000C 0x00CE1128 0x0000002C 0x00000000 new N N ??(0) ?? 53 022290 0x00CF2D98 0x0000000C 0x00CF2D88 0x0000002C 0x00000000 new N N ??(0) ?? 54 022317 0x00D0D260 0x00000048 0x00D0D250 0x00000068 0x00000000 new N N ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 55 022318 0x00D0D2F8 0x00000030 0x00D0D2E8 0x00000050 0x00000000 new N N ??(0) ?? 56 022319 0x00D0D378 0x00000030 0x00D0D368 0x00000050 0x00000000 new N N ??(0) ?? 57 022320 0x00D0D3F8 0x00000030 0x00D0D3E8 0x00000050 0x00000000 new N N ??(0) ?? 58 022321 0x00D0D478 0x00000030 0x00D0D468 0x00000050 0x00000000 new N N ??(0) ?? 59 022322 0x00D0D4F8 0x00000030 0x00D0D4E8 0x00000050 0x00000000 new N N ??(0) ?? 60 022326 0x00D0D578 0x0000000C 0x00D0D568 0x0000002C 0x00000000 new N N ??(0) ?? 61 022348 0x00D29B58 0x00000030 0x00D29B48 0x00000050 0x00000000 new N N ??(0) ?? 62 022349 0x00D29BD8 0x00000030 0x00D29BC8 0x00000050 0x00000000 new N N ??(0) ?? 63 022350 0x00D29C58 0x00000030 0x00D29C48 0x00000050 0x00000000 new N N ??(0) ?? 64 022351 0x00D29CD8 0x0000000C 0x00D29CC8 0x0000002C 0x00000000 new N N ??(0) ?? 65 022352 0x00D29D30 0x00000068 0x00D29D20 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 66 022353 0x00D29DE8 0x00000030 0x00D29DD8 0x00000050 0x00000000 new N N ??(0) ?? 67 022354 0x00D29E68 0x00000030 0x00D29E58 0x00000050 0x00000000 new N N ??(0) ?? 68 022355 0x00D29F38 0x00000030 0x00D29F28 0x00000050 0x00000000 new N N ??(0) ?? 69 022356 0x00D2A008 0x00000030 0x00D29FF8 0x00000050 0x00000000 new N N ??(0) ?? 70 022357 0x00D2A0D8 0x0000000C 0x00D2A0C8 0x0000002C 0x00000000 new N N ??(0) ?? 71 022358 0x00D2A130 0x00000068 0x00D2A120 0x00000088 0x00000000 new N N ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 72 022359 0x00D2A1E8 0x00000030 0x00D2A1D8 0x00000050 0x00000000 new N N ??(0) ?? 73 022360 0x00D2A268 0x00000030 0x00D2A258 0x00000050 0x00000000 new N N ??(0) ?? 74 022361 0x00D2A338 0x00000030 0x00D2A328 0x00000050 0x00000000 new N N ??(0) ?? 75 022362 0x00D2A408 0x00000030 0x00D2A3F8 0x00000050 0x00000000 new N N ??(0) ?? 76 022363 0x00D2A4D8 0x0000000C 0x00D2A4C8 0x0000002C 0x00000000 new N N ??(0) ?? 77 022364 0x00D2A530 0x00000030 0x00D2A520 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 78 022365 0x00D2A5B0 0x00000030 0x00D2A5A0 0x00000050 0x00000000 new N N ??(0) ?? 79 022366 0x00D2A630 0x00000030 0x00D2A620 0x00000050 0x00000000 new N N ??(0) ?? 80 022367 0x00D2A6B0 0x0000000C 0x00D2A6A0 0x0000002C 0x00000000 new N N ??(0) ?? 81 022368 0x00D2A708 0x00000030 0x00D2A6F8 0x00000050 0x00000000 new N N ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 82 022369 0x00D2A788 0x00000030 0x00D2A778 0x00000050 0x00000000 new N N ??(0) ?? 83 022370 0x00D2A808 0x00000030 0x00D2A7F8 0x00000050 0x00000000 new N N ??(0) ?? 84 022371 0x00D2A888 0x0000000C 0x00D2A878 0x0000002C 0x00000000 new N N ??(0) ?? 85 022372 0x00D2A8E0 0x000000B4 0x00D2A8D0 0x000000D4 0x00000000 new N N ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 86 022373 0x00D2A9E0 0x00000030 0x00D2A9D0 0x00000050 0x00000000 new N N ??(0) ?? 87 022374 0x00D2AA60 0x00000030 0x00D2AA50 0x00000050 0x00000000 new N N ??(0) ?? 88 007634 0x00D43C78 0x00000028 0x00D43C68 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 89 007635 0x00D44310 0x00000048 0x00D44300 0x00000068 0x00000000 new N N ??(0) ?? 90 007640 0x00D44430 0x00000048 0x00D44420 0x00000068 0x00000000 new N N ??(0) ?? 91 007644 0x00D444C8 0x00000048 0x00D444B8 0x00000068 0x00000000 new N N ??(0) ?? 92 007648 0x00D44560 0x00000028 0x00D44550 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 93 007649 0x00D445D8 0x00000048 0x00D445C8 0x00000068 0x00000000 new N N ??(0) ?? 94 007654 0x00D446C8 0x00000048 0x00D446B8 0x00000068 0x00000000 new N N ??(0) ?? 95 007662 0x00D44760 0x00000048 0x00D44750 0x00000068 0x00000000 new N N ??(0) ?? 96 007658 0x00D45BC0 0x00000048 0x00D45BB0 0x00000068 0x00000000 new N N ??(0) ?? 97 007666 0x00D45C58 0x00000048 0x00D45C48 0x00000068 0x00000000 new N N ??(0) ?? 98 007670 0x00D45CF0 0x00000048 0x00D45CE0 0x00000068 0x00000000 new N N ??(0) ?? 99 007674 0x00D45D88 0x00000048 0x00D45D78 0x00000068 0x00000000 new N N ??(0) ?? 100 007873 0x00D46E58 0x00000028 0x00D46E48 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 101 007874 0x00D47488 0x00000048 0x00D47478 0x00000068 0x00000000 new N N ??(0) ?? 102 007879 0x00D47520 0x00000048 0x00D47510 0x00000068 0x00000000 new N N ??(0) ?? 103 007883 0x00D475B8 0x00000048 0x00D475A8 0x00000068 0x00000000 new N N ??(0) ?? 104 007887 0x00D476A0 0x00000028 0x00D47690 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 105 007888 0x00D47718 0x00000048 0x00D47708 0x00000068 0x00000000 new N N ??(0) ?? 106 007893 0x00D47808 0x00000048 0x00D477F8 0x00000068 0x00000000 new N N ??(0) ?? 107 007897 0x00D478F0 0x00000048 0x00D478E0 0x00000068 0x00000000 new N N ??(0) ?? 108 007901 0x00D47988 0x00000048 0x00D47978 0x00000068 0x00000000 new N N ??(0) ?? 109 007905 0x00D47A20 0x00000048 0x00D47A10 0x00000068 0x00000000 new N N ??(0) ?? 110 007909 0x00D47AB8 0x00000048 0x00D47AA8 0x00000068 0x00000000 new N N ??(0) ?? 111 007913 0x00D47B50 0x00000048 0x00D47B40 0x00000068 0x00000000 new N N ??(0) ?? 112 008074 0x00D48C58 0x00000028 0x00D48C48 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 113 008075 0x00D49378 0x00000048 0x00D49368 0x00000068 0x00000000 new N N ??(0) ?? 114 008096 0x00D49410 0x00000028 0x00D49400 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 115 008080 0x00D49498 0x00000048 0x00D49488 0x00000068 0x00000000 new N N ??(0) ?? 116 008084 0x00D49530 0x00000048 0x00D49520 0x00000068 0x00000000 new N N ??(0) ?? 117 008088 0x00D495C8 0x00000048 0x00D495B8 0x00000068 0x00000000 new N N ??(0) ?? 118 008092 0x00D49660 0x00000048 0x00D49650 0x00000068 0x00000000 new N N ??(0) ?? 119 008097 0x00D496F8 0x00000048 0x00D496E8 0x00000068 0x00000000 new N N ??(0) ?? 120 008102 0x00D49870 0x00000048 0x00D49860 0x00000068 0x00000000 new N N ??(0) ?? 121 008106 0x00D49908 0x00000048 0x00D498F8 0x00000068 0x00000000 new N N ??(0) ?? 122 008110 0x00D49A28 0x00000048 0x00D49A18 0x00000068 0x00000000 new N N ??(0) ?? 123 008114 0x00D49AC0 0x00000048 0x00D49AB0 0x00000068 0x00000000 new N N ??(0) ?? 124 008118 0x00D49B58 0x00000048 0x00D49B48 0x00000068 0x00000000 new N N ??(0) ?? 125 008122 0x00D49BF0 0x00000048 0x00D49BE0 0x00000068 0x00000000 new N N ??(0) ?? 126 008277 0x00D4A038 0x00000048 0x00D4A028 0x00000068 0x00000000 new N N ??(0) ?? 127 008282 0x00D4A1B0 0x00000048 0x00D4A1A0 0x00000068 0x00000000 new N N ??(0) ?? 128 008286 0x00D4A248 0x00000048 0x00D4A238 0x00000068 0x00000000 new N N ??(0) ?? 129 008290 0x00D4A2E0 0x00000048 0x00D4A2D0 0x00000068 0x00000000 new N N ??(0) ?? 130 008444 0x00D4ADC8 0x00000048 0x00D4ADB8 0x00000068 0x00000000 new N N ??(0) ?? 131 008448 0x00D4AE60 0x00000048 0x00D4AE50 0x00000068 0x00000000 new N N ??(0) ?? 132 008452 0x00D4AEF8 0x00000048 0x00D4AEE8 0x00000068 0x00000000 new N N ??(0) ?? 133 008456 0x00D4AF90 0x00000028 0x00D4AF80 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 134 008457 0x00D4B008 0x00000048 0x00D4AFF8 0x00000068 0x00000000 new N N ??(0) ?? 135 008462 0x00D4B0F8 0x00000048 0x00D4B0E8 0x00000068 0x00000000 new N N ??(0) ?? 136 008466 0x00D4B190 0x00000048 0x00D4B180 0x00000068 0x00000000 new N N ??(0) ?? 137 008470 0x00D4B228 0x00000048 0x00D4B218 0x00000068 0x00000000 new N N ??(0) ?? 138 022293 0x00D4CF78 0x00000030 0x00D4CF68 0x00000050 0x00000000 new N N ??(0) ?? 139 008258 0x00D5E678 0x00000028 0x00D5E668 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 140 008259 0x00D5ED10 0x00000048 0x00D5ED00 0x00000068 0x00000000 new N N ??(0) ?? 141 008264 0x00D5EDA8 0x00000048 0x00D5ED98 0x00000068 0x00000000 new N N ??(0) ?? 142 008268 0x00D5EE40 0x00000048 0x00D5EE30 0x00000068 0x00000000 new N N ??(0) ?? 143 008272 0x00D5EED8 0x00000048 0x00D5EEC8 0x00000068 0x00000000 new N N ??(0) ?? 144 008276 0x00D5EF70 0x00000028 0x00D5EF60 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 145 008610 0x00D5F748 0x00000028 0x00D5F738 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 146 008611 0x00D5FDE0 0x00000048 0x00D5FDD0 0x00000068 0x00000000 new N N ??(0) ?? 147 008616 0x00D5FE78 0x00000048 0x00D5FE68 0x00000068 0x00000000 new N N ??(0) ?? 148 008620 0x00D5FF10 0x00000048 0x00D5FF00 0x00000068 0x00000000 new N N ??(0) ?? 149 008624 0x00D5FFA8 0x00000048 0x00D5FF98 0x00000068 0x00000000 new N N ??(0) ?? 150 008628 0x00D60040 0x00000028 0x00D60030 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 151 008629 0x00D600B8 0x00000048 0x00D600A8 0x00000068 0x00000000 new N N ??(0) ?? 152 008634 0x00D60230 0x00000048 0x00D60220 0x00000068 0x00000000 new N N ??(0) ?? 153 008638 0x00D602C8 0x00000048 0x00D602B8 0x00000068 0x00000000 new N N ??(0) ?? 154 008642 0x00D60360 0x00000048 0x00D60350 0x00000068 0x00000000 new N N ??(0) ?? 155 008439 0x00D64D40 0x00000048 0x00D64D30 0x00000068 0x00000000 new N N ??(0) ?? 156 008438 0x00D6CFC0 0x00000028 0x00D6CFB0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 157 008783 0x00D6D290 0x00000028 0x00D6D280 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 158 008784 0x00D6D308 0x00000048 0x00D6D2F8 0x00000068 0x00000000 new N N ??(0) ?? 159 008789 0x00D6D3F0 0x00000048 0x00D6D3E0 0x00000068 0x00000000 new N N ??(0) ?? 160 008793 0x00D6D488 0x00000048 0x00D6D478 0x00000068 0x00000000 new N N ??(0) ?? 161 008797 0x00D6D520 0x00000048 0x00D6D510 0x00000068 0x00000000 new N N ??(0) ?? 162 008801 0x00D6D5B8 0x00000028 0x00D6D5A8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 163 008802 0x00D6D630 0x00000048 0x00D6D620 0x00000068 0x00000000 new N N ??(0) ?? 164 008807 0x00D6D720 0x00000048 0x00D6D710 0x00000068 0x00000000 new N N ??(0) ?? 165 008811 0x00D6D7B8 0x00000048 0x00D6D7A8 0x00000068 0x00000000 new N N ??(0) ?? 166 008815 0x00D6D850 0x00000048 0x00D6D840 0x00000068 0x00000000 new N N ??(0) ?? 167 009203 0x01BE3060 0x00000028 0x01BE3050 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 168 009204 0x01BE30D8 0x00000048 0x01BE30C8 0x00000068 0x00000000 new N N ??(0) ?? 169 009209 0x01BE32E8 0x00000048 0x01BE32D8 0x00000068 0x00000000 new N N ??(0) ?? 170 010045 0x01BF88F8 0x00000028 0x01BF88E8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 171 010046 0x01BF8A08 0x00000048 0x01BF89F8 0x00000068 0x00000000 new N N ??(0) ?? 172 010051 0x01BF8AF0 0x00000048 0x01BF8AE0 0x00000068 0x00000000 new N N ??(0) ?? 173 010055 0x01BF8BD8 0x00000048 0x01BF8BC8 0x00000068 0x00000000 new N N ??(0) ?? 174 010059 0x01BF8C70 0x00000048 0x01BF8C60 0x00000068 0x00000000 new N N ??(0) ?? 175 010226 0x01C02478 0x00000048 0x01C02468 0x00000068 0x00000000 new N N ??(0) ?? 176 010231 0x01C02560 0x00000048 0x01C02550 0x00000068 0x00000000 new N N ??(0) ?? 177 010235 0x01C025F8 0x00000048 0x01C025E8 0x00000068 0x00000000 new N N ??(0) ?? 178 010239 0x01C02690 0x00000048 0x01C02680 0x00000068 0x00000000 new N N ??(0) ?? 179 010243 0x01C02728 0x00000048 0x01C02718 0x00000068 0x00000000 new N N ??(0) ?? 180 010247 0x01C02810 0x00000028 0x01C02800 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 181 010248 0x01C02888 0x00000048 0x01C02878 0x00000068 0x00000000 new N N ??(0) ?? 182 010253 0x01C02978 0x00000048 0x01C02968 0x00000068 0x00000000 new N N ??(0) ?? 183 010257 0x01C02A10 0x00000028 0x01C02A00 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 184 010258 0x01C02A88 0x00000048 0x01C02A78 0x00000068 0x00000000 new N N ??(0) ?? 185 010263 0x01C02B78 0x00000048 0x01C02B68 0x00000068 0x00000000 new N N ??(0) ?? 186 010267 0x01C02C10 0x00000048 0x01C02C00 0x00000068 0x00000000 new N N ??(0) ?? 187 010225 0x01C03B80 0x00000028 0x01C03B70 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 188 011051 0x01C0F308 0x00000028 0x01C0F2F8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 189 011065 0x01C1BE30 0x00000028 0x01C1BE20 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 190 011052 0x01C1BEB8 0x00000048 0x01C1BEA8 0x00000068 0x00000000 new N N ??(0) ?? 191 011079 0x01C1BF50 0x00000028 0x01C1BF40 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 192 011057 0x01C1BFD8 0x00000048 0x01C1BFC8 0x00000068 0x00000000 new N N ??(0) ?? 193 011061 0x01C1C070 0x00000048 0x01C1C060 0x00000068 0x00000000 new N N ??(0) ?? 194 011066 0x01C1C108 0x00000048 0x01C1C0F8 0x00000068 0x00000000 new N N ??(0) ?? 195 011071 0x01C1C228 0x00000048 0x01C1C218 0x00000068 0x00000000 new N N ??(0) ?? 196 011075 0x01C1C2C0 0x00000048 0x01C1C2B0 0x00000068 0x00000000 new N N ??(0) ?? 197 011080 0x01C1C358 0x00000048 0x01C1C348 0x00000068 0x00000000 new N N ??(0) ?? 198 011085 0x01C1C478 0x00000048 0x01C1C468 0x00000068 0x00000000 new N N ??(0) ?? 199 011089 0x01C1C510 0x00000048 0x01C1C500 0x00000068 0x00000000 new N N ??(0) ?? 200 011093 0x01C1C5F8 0x00000048 0x01C1C5E8 0x00000068 0x00000000 new N N ??(0) ?? 201 012206 0x01C1FF98 0x00000028 0x01C1FF88 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 202 012207 0x01C20010 0x00000048 0x01C20000 0x00000068 0x00000000 new N N ??(0) ?? 203 012212 0x01C20220 0x00000048 0x01C20210 0x00000068 0x00000000 new N N ??(0) ?? 204 011981 0x01C40008 0x00000028 0x01C3FFF8 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 205 011982 0x01C40080 0x00000048 0x01C40070 0x00000068 0x00000000 new N N ??(0) ?? 206 012057 0x01C40118 0x00000048 0x01C40108 0x00000068 0x00000000 new N N ??(0) ?? 207 012051 0x01C40A90 0x00000028 0x01C40A80 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 208 012052 0x01C40B08 0x00000048 0x01C40AF8 0x00000068 0x00000000 new N N ??(0) ?? 209 013075 0x01C5D1E0 0x00000028 0x01C5D1D0 0x00000048 0x00000000 new N N ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 210 013076 0x01C5D258 0x00000048 0x01C5D248 0x00000068 0x00000000 new N N ??(0) ?? 211 013081 0x01C5D390 0x00000048 0x01C5D380 0x00000068 0x00000000 new N N ??(0) ?? 212 013085 0x01C5D478 0x00000048 0x01C5D468 0x00000068 0x00000000 new N N ??(0) ?? 213 022375 0x01C72688 0x00000030 0x01C72678 0x00000050 0x00000000 new N N ??(0) ?? 214 022376 0x01C72708 0x00000030 0x01C726F8 0x00000050 0x00000000 new N N ??(0) ?? 215 022377 0x01C72788 0x00000030 0x01C72778 0x00000050 0x00000000 new N N ??(0) ?? 216 022378 0x01C72808 0x00000030 0x01C727F8 0x00000050 0x00000000 new N N ??(0) ?? 217 022379 0x01C72888 0x00000030 0x01C72878 0x00000050 0x00000000 new N N ??(0) ?? 218 022380 0x01C72908 0x00000030 0x01C728F8 0x00000050 0x00000000 new N N ??(0) ?? 219 022381 0x01C72988 0x00000030 0x01C72978 0x00000050 0x00000000 new N N ??(0) ?? 220 022382 0x01C72A08 0x00000030 0x01C729F8 0x00000050 0x00000000 new N N ??(0) ?? 221 022383 0x01C72A88 0x00000030 0x01C72A78 0x00000050 0x00000000 new N N ??(0) ?? 222 022384 0x01C72B08 0x0000000C 0x01C72AF8 0x0000002C 0x00000000 new N N ??(0) ?? 223 022385 0x01C72B60 0x00000080 0x01C72B50 0x000000A0 0x00000000 new N N ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 224 022386 0x01C72C30 0x00000030 0x01C72C20 0x00000050 0x00000000 new N N ??(0) ?? 225 022387 0x01C72CB0 0x00000030 0x01C72CA0 0x00000050 0x00000000 new N N ??(0) ?? 226 022388 0x01C72D30 0x00000030 0x01C72D20 0x00000050 0x00000000 new N N ??(0) ?? 227 022389 0x01C72DB0 0x00000030 0x01C72DA0 0x00000050 0x00000000 new N N ??(0) ?? 228 022390 0x01C72E30 0x00000030 0x01C72E20 0x00000050 0x00000000 new N N ??(0) ?? 229 022391 0x01C72EB0 0x00000030 0x01C72EA0 0x00000050 0x00000000 new N N ??(0) ?? 230 022392 0x01C72F80 0x00000030 0x01C72F70 0x00000050 0x00000000 new N N ??(0) ?? 231 022393 0x01C73050 0x00000030 0x01C73040 0x00000050 0x00000000 new N N ??(0) ?? 232 022394 0x01C730D0 0x00000030 0x01C730C0 0x00000050 0x00000000 new N N ??(0) ?? 233 022395 0x01C73150 0x00000030 0x01C73140 0x00000050 0x00000000 new N N ??(0) ?? 234 022396 0x01C731D0 0x00000030 0x01C731C0 0x00000050 0x00000000 new N N ??(0) ?? 235 022397 0x01C732A0 0x0000000C 0x01C73290 0x0000002C 0x00000000 new N N ??(0) ?? 236 022398 0x01C732F8 0x0000021C 0x01C732E8 0x0000023C 0x00000000 new N N diffusetest.h(449) RaytraceDemoApplication::createScene2 237 022304 0x01CA21B0 0x00000018 0x01CA21A0 0x00000038 0x00000000 new N N ??(0) ?? 238 022305 0x01CA2218 0x00000018 0x01CA2208 0x00000038 0x00000000 new N N ??(0) ?? 239 022291 0x01CBE298 0x00000018 0x01CBE288 0x00000038 0x00000000 new N N ??(0) ?? 240 022302 0x01CBF088 0x00000018 0x01CBF078 0x00000038 0x00000000 new N N ??(0) ?? 241 022303 0x01CBF0F0 0x00000018 0x01CBF0E0 0x00000038 0x00000000 new N N ??(0) ?? 242 022423 0x01CC7F78 0x00000014 0x01CC7F68 0x00000034 0x00000000 new N N diffusetest.h(495) RaytraceDemoApplication::createScene2 243 022288 0x01CCF910 0x0000000C 0x01CCF900 0x0000002C 0x00000000 new N N ??(0) ?? 244 022300 0x01CCF9C0 0x00000018 0x01CCF9B0 0x00000038 0x00000000 new N N ??(0) ?? 245 022301 0x01CCFA28 0x00000018 0x01CCFA18 0x00000038 0x00000000 new N N ??(0) ?? 246 022296 0x01CCFB20 0x00000018 0x01CCFB10 0x00000038 0x00000000 new N N ??(0) ?? 247 022297 0x01CCFB88 0x00000018 0x01CCFB78 0x00000038 0x00000000 new N N ??(0) ?? 248 023254 0x01D3B888 0x00000008 0x01D3B878 0x00000028 0x00000000 new N N diffusetest.h(517) RaytraceDemoApplication::createScene2 -
GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log
r1590 r1598 1 1 -------------------------------------------------------------------------------- 2 2 3 OgreMemory.log - Memory logging file created on Mon Oct 09 17:19:3620063 OgreMemory.log - Memory logging file created on Tue Oct 10 10:37:48 2006 4 4 5 5 -------------------------------------------------------------------------------- -
GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log
r1590 r1598 1 19:21:47: Creating resource group General 2 19:21:47: Creating resource group Internal 3 19:21:47: Creating resource group Autodetect 4 19:21:47: Registering ResourceManager for type Material 5 19:21:47: Registering ResourceManager for type Mesh 6 19:21:47: Registering ResourceManager for type Skeleton 7 19:21:47: MovableObjectFactory for type 'ParticleSystem' registered. 8 19:21:47: Loading library OgrePlatform.dll 9 19:21:47: OverlayElementFactory for type Panel registered. 10 19:21:47: OverlayElementFactory for type BorderPanel registered. 11 19:21:47: OverlayElementFactory for type TextArea registered. 12 19:21:47: Registering ResourceManager for type Font 13 19:21:47: ArchiveFactory for archive type FileSystem registered. 14 19:21:47: ArchiveFactory for archive type Zip registered. 15 19:21:47: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 19:21:47: 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 19:21:47: Registering ResourceManager for type HighLevelGpuProgram 18 19:21:47: Registering ResourceManager for type Compositor 19 19:21:47: MovableObjectFactory for type 'Entity' registered. 20 19:21:47: MovableObjectFactory for type 'Light' registered. 21 19:21:47: MovableObjectFactory for type 'BillboardSet' registered. 22 19:21:47: MovableObjectFactory for type 'ManualObject' registered. 23 19:21:47: MovableObjectFactory for type 'BillboardChain' registered. 24 19:21:47: MovableObjectFactory for type 'RibbonTrail' registered. 25 19:21:47: Loading library .\RenderSystem_Direct3D9 26 19:21:47: D3D9 : Direct3D9 Rendering Subsystem created. 27 19:21:47: D3D9: Driver Detection Starts 28 19:21:47: D3D9: Driver Detection Ends 29 19:21:47: Loading library .\Plugin_ParticleFX 30 19:21:47: Particle Emitter Type 'Point' registered 31 19:21:47: Particle Emitter Type 'Box' registered 32 19:21:47: Particle Emitter Type 'Ellipsoid' registered 33 19:21:47: Particle Emitter Type 'Cylinder' registered 34 19:21:47: Particle Emitter Type 'Ring' registered 35 19:21:47: Particle Emitter Type 'HollowEllipsoid' registered 36 19:21:47: Particle Affector Type 'LinearForce' registered 37 19:21:47: Particle Affector Type 'ColourFader' registered 38 19:21:47: Particle Affector Type 'ColourFader2' registered 39 19:21:47: Particle Affector Type 'ColourImage' registered 40 19:21:47: Particle Affector Type 'ColourInterpolator' registered 41 19:21:47: Particle Affector Type 'Scaler' registered 42 19:21:47: Particle Affector Type 'Rotator' registered 43 19:21:47: Particle Affector Type 'DirectionRandomiser' registered 44 19:21:47: Particle Affector Type 'DeflectorPlane' registered 45 19:21:47: Loading library .\Plugin_BSPSceneManager 46 19:21:47: Registering ResourceManager for type BspLevel 47 19:21:47: Loading library .\Plugin_OctreeSceneManager 48 19:21:47: Loading library .\Plugin_CgProgramManager 49 19:21:47: *-*-* OGRE Initialising 50 19:21:47: *-*-* Version 1.2.0 (Dagon) 51 19:21:47: Creating resource group Bootstrap 52 19:21:47: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 19:21:47: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 19:21:47: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 19:21:47: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 19:21:47: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 19:21:47: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 19:21:47: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 19:21:47: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 19:21:47: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 19:21:47: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 19:21:47: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 19:21:47: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 19:21:47: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 19:21:47: D3D9 : RenderSystem Option: Anti aliasing = None 66 19:21:47: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 19:21:47: D3D9 : RenderSystem Option: Full Screen = No 68 19:21:47: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 69 19:21:47: D3D9 : RenderSystem Option: VSync = No 70 19:21:47: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 20:39:45: D3D9 : Subsystem Initialising 72 20:39:45: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 20:39:45: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 20:39:45: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 20:39:45: Registering ResourceManager for type Texture 76 20:39:45: Registering ResourceManager for type GpuProgram 77 20:39:45: RenderSystem capabilities 78 20:39:45: ------------------------- 79 20:39:45: * Hardware generation of mipmaps: yes 80 20:39:45: * Texture blending: yes 81 20:39:45: * Anisotropic texture filtering: yes 82 20:39:45: * Dot product texture operation: yes 83 20:39:45: * Cube mapping: yes 84 20:39:45: * Hardware stencil buffer: yes 85 20:39:45: - Stencil depth: 8 86 20:39:45: - Two sided stencil support: yes 87 20:39:45: - Wrap stencil values: yes 88 20:39:45: * Hardware vertex / index buffers: yes 89 20:39:45: * Vertex programs: yes 90 20:39:45: - Max vertex program version: vs_3_0 91 20:39:45: * Fragment programs: yes 92 20:39:45: - Max fragment program version: ps_3_0 93 20:39:45: * Texture Compression: yes 94 20:39:45: - DXT: yes 95 20:39:45: - VTC: no 96 20:39:45: * Scissor Rectangle: yes 97 20:39:45: * Hardware Occlusion Query: yes 98 20:39:45: * User clip planes: yes 99 20:39:45: * VET_UBYTE4 vertex element type: yes 100 20:39:45: * Infinite far plane projection: yes 101 20:39:45: * Hardware render-to-texture: yes 102 20:39:45: * Floating point textures: yes 103 20:39:45: * Non-power-of-two textures: yes 104 20:39:45: * Volume textures: yes 105 20:39:45: * Multiple Render Targets: 4 106 20:39:45: * Max Point Size: 8192 107 20:39:45: *************************************** 108 20:39:45: *** D3D9 : Subsystem Initialised OK *** 109 20:39:45: *************************************** 110 20:39:45: ResourceBackgroundQueue - threading disabled 111 20:39:45: Particle Renderer Type 'billboard' registered 112 20:39:45: Particle Renderer Type 'sprite' registered 113 20:39:45: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 114 20:39:45: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 20:39:45: Parsing scripts for resource group Autodetect 116 20:39:45: Finished parsing scripts for resource group Autodetect 117 20:39:45: Parsing scripts for resource group Bootstrap 118 20:39:45: Parsing script OgreCore.material 119 20:39:45: Parsing script OgreProfiler.material 120 20:39:45: Parsing script Ogre.fontdef 121 20:39:45: Parsing script OgreDebugPanel.overlay 122 20:39:45: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 123 20:39:45: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 124 20:39:45: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 125 20:39:45: Font TrebuchetMSBoldusing texture size 512x512 126 20:39:45: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 20:39:45: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 128 20:39:45: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 20:39:45: Parsing script OgreLoadingPanel.overlay 130 20:39:45: Finished parsing scripts for resource group Bootstrap 131 20:39:45: Parsing scripts for resource group General 132 20:39:45: Parsing script GameTools.program 133 20:39:45: Parsing script atlascube.material 134 20:39:45: Parsing script diffscene.material 135 20:39:45: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 136 20:39:45: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 137 20:39:45: Error in material pult at line 88 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 138 20:39:45: Error in material pult at line 89 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 139 20:39:45: Error in material pult at line 90 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.53846 140 20:39:45: Error in material butorlap at line 122 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 141 20:39:45: Error in material butorlap at line 123 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 142 20:39:45: Parsing script Diffuse.material 143 20:39:45: An exception has been thrown! 1 10:45:35: Creating resource group General 2 10:45:35: Creating resource group Internal 3 10:45:35: Creating resource group Autodetect 4 10:45:35: Registering ResourceManager for type Material 5 10:45:35: Registering ResourceManager for type Mesh 6 10:45:35: Registering ResourceManager for type Skeleton 7 10:45:35: MovableObjectFactory for type 'ParticleSystem' registered. 8 10:45:35: Loading library OgrePlatform.dll 9 10:45:35: OverlayElementFactory for type Panel registered. 10 10:45:35: OverlayElementFactory for type BorderPanel registered. 11 10:45:35: OverlayElementFactory for type TextArea registered. 12 10:45:35: Registering ResourceManager for type Font 13 10:45:35: ArchiveFactory for archive type FileSystem registered. 14 10:45:35: ArchiveFactory for archive type Zip registered. 15 10:45:35: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 16 10:45:35: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw 17 10:45:35: Registering ResourceManager for type HighLevelGpuProgram 18 10:45:35: Registering ResourceManager for type Compositor 19 10:45:35: MovableObjectFactory for type 'Entity' registered. 20 10:45:35: MovableObjectFactory for type 'Light' registered. 21 10:45:35: MovableObjectFactory for type 'BillboardSet' registered. 22 10:45:35: MovableObjectFactory for type 'ManualObject' registered. 23 10:45:35: MovableObjectFactory for type 'BillboardChain' registered. 24 10:45:35: MovableObjectFactory for type 'RibbonTrail' registered. 25 10:45:35: Loading library .\RenderSystem_Direct3D9 26 10:45:35: D3D9 : Direct3D9 Rendering Subsystem created. 27 10:45:35: D3D9: Driver Detection Starts 28 10:45:35: D3D9: Driver Detection Ends 29 10:45:35: Loading library .\Plugin_ParticleFX 30 10:45:35: Particle Emitter Type 'Point' registered 31 10:45:35: Particle Emitter Type 'Box' registered 32 10:45:35: Particle Emitter Type 'Ellipsoid' registered 33 10:45:35: Particle Emitter Type 'Cylinder' registered 34 10:45:35: Particle Emitter Type 'Ring' registered 35 10:45:35: Particle Emitter Type 'HollowEllipsoid' registered 36 10:45:35: Particle Affector Type 'LinearForce' registered 37 10:45:35: Particle Affector Type 'ColourFader' registered 38 10:45:35: Particle Affector Type 'ColourFader2' registered 39 10:45:35: Particle Affector Type 'ColourImage' registered 40 10:45:35: Particle Affector Type 'ColourInterpolator' registered 41 10:45:35: Particle Affector Type 'Scaler' registered 42 10:45:35: Particle Affector Type 'Rotator' registered 43 10:45:35: Particle Affector Type 'DirectionRandomiser' registered 44 10:45:35: Particle Affector Type 'DeflectorPlane' registered 45 10:45:35: Loading library .\Plugin_BSPSceneManager 46 10:45:35: Registering ResourceManager for type BspLevel 47 10:45:35: Loading library .\Plugin_OctreeSceneManager 48 10:45:35: Loading library .\Plugin_CgProgramManager 49 10:45:35: *-*-* OGRE Initialising 50 10:45:35: *-*-* Version 1.2.0 (Dagon) 51 10:45:35: Creating resource group Bootstrap 52 10:45:35: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 53 10:45:35: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 54 10:45:35: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 55 10:45:35: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 56 10:45:35: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 57 10:45:35: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 58 10:45:35: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 59 10:45:35: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 60 10:45:35: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 61 10:45:35: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 62 10:45:35: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 63 10:45:35: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 64 10:45:35: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 65 10:45:35: D3D9 : RenderSystem Option: Anti aliasing = None 66 10:45:35: D3D9 : RenderSystem Option: Floating-point mode = Fastest 67 10:45:35: D3D9 : RenderSystem Option: Full Screen = No 68 10:45:35: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 69 10:45:35: D3D9 : RenderSystem Option: VSync = No 70 10:45:35: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 71 10:45:37: D3D9 : Subsystem Initialising 72 10:45:37: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false 73 10:45:37: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 74 10:45:37: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 75 10:45:37: Registering ResourceManager for type Texture 76 10:45:37: Registering ResourceManager for type GpuProgram 77 10:45:37: RenderSystem capabilities 78 10:45:37: ------------------------- 79 10:45:37: * Hardware generation of mipmaps: yes 80 10:45:37: * Texture blending: yes 81 10:45:37: * Anisotropic texture filtering: yes 82 10:45:37: * Dot product texture operation: yes 83 10:45:37: * Cube mapping: yes 84 10:45:37: * Hardware stencil buffer: yes 85 10:45:37: - Stencil depth: 8 86 10:45:37: - Two sided stencil support: yes 87 10:45:37: - Wrap stencil values: yes 88 10:45:37: * Hardware vertex / index buffers: yes 89 10:45:37: * Vertex programs: yes 90 10:45:37: - Max vertex program version: vs_3_0 91 10:45:37: * Fragment programs: yes 92 10:45:37: - Max fragment program version: ps_3_0 93 10:45:37: * Texture Compression: yes 94 10:45:37: - DXT: yes 95 10:45:37: - VTC: no 96 10:45:37: * Scissor Rectangle: yes 97 10:45:37: * Hardware Occlusion Query: yes 98 10:45:37: * User clip planes: yes 99 10:45:37: * VET_UBYTE4 vertex element type: yes 100 10:45:37: * Infinite far plane projection: yes 101 10:45:37: * Hardware render-to-texture: yes 102 10:45:37: * Floating point textures: yes 103 10:45:37: * Non-power-of-two textures: yes 104 10:45:37: * Volume textures: yes 105 10:45:37: * Multiple Render Targets: 4 106 10:45:37: * Max Point Size: 8192 107 10:45:37: *************************************** 108 10:45:37: *** D3D9 : Subsystem Initialised OK *** 109 10:45:37: *************************************** 110 10:45:37: ResourceBackgroundQueue - threading disabled 111 10:45:37: Particle Renderer Type 'billboard' registered 112 10:45:37: Particle Renderer Type 'sprite' registered 113 10:45:37: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 114 10:45:37: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 115 10:45:37: Parsing scripts for resource group Autodetect 116 10:45:37: Finished parsing scripts for resource group Autodetect 117 10:45:37: Parsing scripts for resource group Bootstrap 118 10:45:37: Parsing script OgreCore.material 119 10:45:37: Parsing script OgreProfiler.material 120 10:45:37: Parsing script Ogre.fontdef 121 10:45:37: Parsing script OgreDebugPanel.overlay 122 10:45:37: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 123 10:45:37: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 124 10:45:37: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 125 10:45:37: Font TrebuchetMSBoldusing texture size 512x512 126 10:45:37: Info: Freetype returned null for character 160 in font TrebuchetMSBold 127 10:45:37: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 128 10:45:37: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 129 10:45:37: Parsing script OgreLoadingPanel.overlay 130 10:45:37: Finished parsing scripts for resource group Bootstrap 131 10:45:37: Parsing scripts for resource group General 132 10:45:37: Parsing script GameTools.program 133 10:45:37: Parsing script atlascube.material 134 10:45:37: Parsing script diffscene.material 135 10:45:37: An exception has been thrown! 136 137 ----------------------------------- 138 Details: 139 ----------------------------------- 140 Error #: 7 141 Function: GpuProgramParameters::getParamIndex 142 Description: Cannot find a parameter named lightcol5. 143 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 144 Line: 768 145 Stack unwinding: <<beginning of stack>> 146 10:45:37: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 147 148 ----------------------------------- 149 Details: 150 ----------------------------------- 151 Error #: 7 152 Function: GpuProgramParameters::getParamIndex 153 Description: Cannot find a parameter named lightcol5. 154 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 155 Line: 768 156 Stack unwinding: <<beginning of stack>> 157 10:45:37: An exception has been thrown! 158 159 ----------------------------------- 160 Details: 161 ----------------------------------- 162 Error #: 7 163 Function: GpuProgramParameters::getParamIndex 164 Description: Cannot find a parameter named lightcol6. 165 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 166 Line: 768 167 Stack unwinding: <<beginning of stack>> 168 10:45:37: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 169 170 ----------------------------------- 171 Details: 172 ----------------------------------- 173 Error #: 7 174 Function: GpuProgramParameters::getParamIndex 175 Description: Cannot find a parameter named lightcol6. 176 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 177 Line: 768 178 Stack unwinding: <<beginning of stack>> 179 10:45:37: An exception has been thrown! 180 181 ----------------------------------- 182 Details: 183 ----------------------------------- 184 Error #: 7 185 Function: GpuProgramParameters::getParamIndex 186 Description: Cannot find a parameter named lightcol7. 187 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 188 Line: 768 189 Stack unwinding: <<beginning of stack>> 190 10:45:37: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 191 192 ----------------------------------- 193 Details: 194 ----------------------------------- 195 Error #: 7 196 Function: GpuProgramParameters::getParamIndex 197 Description: Cannot find a parameter named lightcol7. 198 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 199 Line: 768 200 Stack unwinding: <<beginning of stack>> 201 10:45:37: An exception has been thrown! 202 203 ----------------------------------- 204 Details: 205 ----------------------------------- 206 Error #: 7 207 Function: GpuProgramParameters::getParamIndex 208 Description: Cannot find a parameter named lightcol8. 209 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 210 Line: 768 211 Stack unwinding: <<beginning of stack>> 212 10:45:37: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 213 214 ----------------------------------- 215 Details: 216 ----------------------------------- 217 Error #: 7 218 Function: GpuProgramParameters::getParamIndex 219 Description: Cannot find a parameter named lightcol8. 220 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 221 Line: 768 222 Stack unwinding: <<beginning of stack>> 223 10:45:37: An exception has been thrown! 224 225 ----------------------------------- 226 Details: 227 ----------------------------------- 228 Error #: 7 229 Function: GpuProgramParameters::getParamIndex 230 Description: Cannot find a parameter named lightpos5. 231 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 232 Line: 768 233 Stack unwinding: <<beginning of stack>> 234 10:45:37: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 235 236 ----------------------------------- 237 Details: 238 ----------------------------------- 239 Error #: 7 240 Function: GpuProgramParameters::getParamIndex 241 Description: Cannot find a parameter named lightpos5. 242 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 243 Line: 768 244 Stack unwinding: <<beginning of stack>> 245 10:45:37: An exception has been thrown! 246 247 ----------------------------------- 248 Details: 249 ----------------------------------- 250 Error #: 7 251 Function: GpuProgramParameters::getParamIndex 252 Description: Cannot find a parameter named lightpos6. 253 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 254 Line: 768 255 Stack unwinding: <<beginning of stack>> 256 10:45:37: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 257 258 ----------------------------------- 259 Details: 260 ----------------------------------- 261 Error #: 7 262 Function: GpuProgramParameters::getParamIndex 263 Description: Cannot find a parameter named lightpos6. 264 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 265 Line: 768 266 Stack unwinding: <<beginning of stack>> 267 10:45:37: An exception has been thrown! 268 269 ----------------------------------- 270 Details: 271 ----------------------------------- 272 Error #: 7 273 Function: GpuProgramParameters::getParamIndex 274 Description: Cannot find a parameter named lightpos7. 275 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 276 Line: 768 277 Stack unwinding: <<beginning of stack>> 278 10:45:37: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 279 280 ----------------------------------- 281 Details: 282 ----------------------------------- 283 Error #: 7 284 Function: GpuProgramParameters::getParamIndex 285 Description: Cannot find a parameter named lightpos7. 286 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 287 Line: 768 288 Stack unwinding: <<beginning of stack>> 289 10:45:37: An exception has been thrown! 290 291 ----------------------------------- 292 Details: 293 ----------------------------------- 294 Error #: 7 295 Function: GpuProgramParameters::getParamIndex 296 Description: Cannot find a parameter named lightpos8. 297 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 298 Line: 768 299 Stack unwinding: <<beginning of stack>> 300 10:45:37: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 301 302 ----------------------------------- 303 Details: 304 ----------------------------------- 305 Error #: 7 306 Function: GpuProgramParameters::getParamIndex 307 Description: Cannot find a parameter named lightpos8. 308 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 309 Line: 768 310 Stack unwinding: <<beginning of stack>> 311 10:45:37: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 312 10:45:37: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 313 10:45:37: Error in material pult at line 88 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 314 10:45:37: Error in material pult at line 89 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 315 10:45:37: Error in material pult at line 90 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.53846 316 10:45:37: Error in material butorlap at line 122 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 317 10:45:37: Error in material butorlap at line 123 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 318 10:45:37: Parsing script Diffuse.material 319 10:45:38: An exception has been thrown! 144 320 145 321 ----------------------------------- … … 152 328 Line: 768 153 329 Stack unwinding: <<beginning of stack>> 154 20:39:45: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!330 10:45:38: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 155 331 156 332 ----------------------------------- … … 163 339 Line: 768 164 340 Stack unwinding: <<beginning of stack>> 165 20:39:47: An exception has been thrown!341 10:45:39: An exception has been thrown! 166 342 167 343 ----------------------------------- … … 174 350 Line: 768 175 351 Stack unwinding: <<beginning of stack>> 176 20:39:47: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!352 10:45:39: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 177 353 178 354 ----------------------------------- … … 185 361 Line: 768 186 362 Stack unwinding: <<beginning of stack>> 187 20:39:57: An exception has been thrown!363 10:45:46: An exception has been thrown! 188 364 189 365 ----------------------------------- … … 196 372 Line: 768 197 373 Stack unwinding: <<beginning of stack>> 198 20:39:57: Error in material GameTools/Diffuse/use1 at line 215 of Diffuse.material: Invalid param_named attribute - An exception has been thrown!374 10:45:46: Error in material GameTools/Diffuse/use1 at line 215 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 199 375 200 376 ----------------------------------- … … 207 383 Line: 768 208 384 Stack unwinding: <<beginning of stack>> 209 20:39:57: Parsing script EnvMetals.material210 20:39:57: An exception has been thrown!385 10:45:46: Parsing script EnvMetals.material 386 10:45:46: An exception has been thrown! 211 387 212 388 ----------------------------------- … … 219 395 Line: 768 220 396 Stack unwinding: <<beginning of stack>> 221 20:39:57: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!397 10:45:46: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 222 398 223 399 ----------------------------------- … … 230 406 Line: 768 231 407 Stack unwinding: <<beginning of stack>> 232 20:39:57: An exception has been thrown!408 10:45:46: An exception has been thrown! 233 409 234 410 ----------------------------------- … … 241 417 Line: 768 242 418 Stack unwinding: <<beginning of stack>> 243 20:39:57: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!419 10:45:46: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 244 420 245 421 ----------------------------------- … … 252 428 Line: 768 253 429 Stack unwinding: <<beginning of stack>> 254 20:39:57: An exception has been thrown!430 10:45:46: An exception has been thrown! 255 431 256 432 ----------------------------------- … … 263 439 Line: 768 264 440 Stack unwinding: <<beginning of stack>> 265 20:39:57: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!441 10:45:46: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 266 442 267 443 ----------------------------------- … … 274 450 Line: 768 275 451 Stack unwinding: <<beginning of stack>> 276 20:39:57: An exception has been thrown!452 10:45:46: An exception has been thrown! 277 453 278 454 ----------------------------------- … … 285 461 Line: 768 286 462 Stack unwinding: <<beginning of stack>> 287 20:39:57: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown!463 10:45:46: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 288 464 289 465 ----------------------------------- … … 296 472 Line: 768 297 473 Stack unwinding: <<beginning of stack>> 298 20:39:57: Parsing script GameTools.material299 20:39:57: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend300 20:39:57: An exception has been thrown!474 10:45:46: Parsing script GameTools.material 475 10:45:46: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 476 10:45:46: An exception has been thrown! 301 477 302 478 ----------------------------------- … … 309 485 Line: 768 310 486 Stack unwinding: <<beginning of stack>> 311 20:39:57: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown!487 10:45:46: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 312 488 313 489 ----------------------------------- … … 320 496 Line: 768 321 497 Stack unwinding: <<beginning of stack>> 322 20:39:57: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend323 20:39:57: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters.324 20:39:57: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend325 20:39:57: Parsing script GameTools_HPS.material326 20:39:57: An exception has been thrown!498 10:45:46: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 499 10:45:46: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 500 10:45:47: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 501 10:45:47: Parsing script GameTools_HPS.material 502 10:45:47: An exception has been thrown! 327 503 328 504 ----------------------------------- … … 335 511 Line: 768 336 512 Stack unwinding: <<beginning of stack>> 337 20:39:57: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!513 10:45:47: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 338 514 339 515 ----------------------------------- … … 346 522 Line: 768 347 523 Stack unwinding: <<beginning of stack>> 348 20:39:57: An exception has been thrown!524 10:45:47: An exception has been thrown! 349 525 350 526 ----------------------------------- … … 357 533 Line: 768 358 534 Stack unwinding: <<beginning of stack>> 359 20:39:57: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!535 10:45:47: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 360 536 361 537 ----------------------------------- … … 368 544 Line: 768 369 545 Stack unwinding: <<beginning of stack>> 370 20:39:57: An exception has been thrown!546 10:45:47: An exception has been thrown! 371 547 372 548 ----------------------------------- … … 379 555 Line: 768 380 556 Stack unwinding: <<beginning of stack>> 381 20:39:57: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!557 10:45:47: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 382 558 383 559 ----------------------------------- … … 390 566 Line: 768 391 567 Stack unwinding: <<beginning of stack>> 392 20:39:57: An exception has been thrown!568 10:45:47: An exception has been thrown! 393 569 394 570 ----------------------------------- … … 401 577 Line: 768 402 578 Stack unwinding: <<beginning of stack>> 403 20:39:57: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!579 10:45:47: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 404 580 405 581 ----------------------------------- … … 412 588 Line: 768 413 589 Stack unwinding: <<beginning of stack>> 414 20:39:57: An exception has been thrown!590 10:45:47: An exception has been thrown! 415 591 416 592 ----------------------------------- … … 423 599 Line: 768 424 600 Stack unwinding: <<beginning of stack>> 425 20:39:57: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!601 10:45:47: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 426 602 427 603 ----------------------------------- … … 434 610 Line: 768 435 611 Stack unwinding: <<beginning of stack>> 436 20:39:57: An exception has been thrown!612 10:45:47: An exception has been thrown! 437 613 438 614 ----------------------------------- … … 445 621 Line: 768 446 622 Stack unwinding: <<beginning of stack>> 447 20:39:57: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!623 10:45:47: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 448 624 449 625 ----------------------------------- … … 456 632 Line: 768 457 633 Stack unwinding: <<beginning of stack>> 458 20:39:57: An exception has been thrown!634 10:45:47: An exception has been thrown! 459 635 460 636 ----------------------------------- … … 467 643 Line: 768 468 644 Stack unwinding: <<beginning of stack>> 469 20:39:57: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown!645 10:45:47: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 470 646 471 647 ----------------------------------- … … 478 654 Line: 768 479 655 Stack unwinding: <<beginning of stack>> 480 20:39:57: Parsing script GlassHead.material481 20:39:57: An exception has been thrown!656 10:45:47: Parsing script GlassHead.material 657 10:45:47: An exception has been thrown! 482 658 483 659 ----------------------------------- … … 490 666 Line: 768 491 667 Stack unwinding: <<beginning of stack>> 492 20:39:57: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!668 10:45:47: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 493 669 494 670 ----------------------------------- … … 501 677 Line: 768 502 678 Stack unwinding: <<beginning of stack>> 503 20:39:57: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'.504 20:39:57: An exception has been thrown!679 10:45:47: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 680 10:45:47: An exception has been thrown! 505 681 506 682 ----------------------------------- … … 513 689 Line: 768 514 690 Stack unwinding: <<beginning of stack>> 515 20:39:57: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!691 10:45:47: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 516 692 517 693 ----------------------------------- … … 524 700 Line: 768 525 701 Stack unwinding: <<beginning of stack>> 526 20:39:57: An exception has been thrown!702 10:45:47: An exception has been thrown! 527 703 528 704 ----------------------------------- … … 535 711 Line: 768 536 712 Stack unwinding: <<beginning of stack>> 537 20:39:57: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!713 10:45:47: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 538 714 539 715 ----------------------------------- … … 546 722 Line: 768 547 723 Stack unwinding: <<beginning of stack>> 548 20:39:57: An exception has been thrown!724 10:45:47: An exception has been thrown! 549 725 550 726 ----------------------------------- … … 557 733 Line: 768 558 734 Stack unwinding: <<beginning of stack>> 559 20:39:57: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown!735 10:45:47: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 560 736 561 737 ----------------------------------- … … 568 744 Line: 768 569 745 Stack unwinding: <<beginning of stack>> 570 20:39:58: Parsing script Glow.material571 20:39:58: An exception has been thrown!746 10:45:47: Parsing script Glow.material 747 10:45:48: An exception has been thrown! 572 748 573 749 ----------------------------------- … … 580 756 Line: 768 581 757 Stack unwinding: <<beginning of stack>> 582 20:39:58: Error in material GameTools/ToneMap at line 211 of Glow.material: Invalid param_named attribute - An exception has been thrown!758 10:45:48: Error in material GameTools/ToneMap at line 211 of Glow.material: Invalid param_named attribute - An exception has been thrown! 583 759 584 760 ----------------------------------- … … 591 767 Line: 768 592 768 Stack unwinding: <<beginning of stack>> 593 20:39:58: Parsing script hangar.material594 20:39:58: Parsing script kupola.material595 20:39:58: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'596 20:39:58: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'597 20:39:58: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none'598 20:39:58: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none'599 20:39:58: Parsing script Ogre.material600 20:39:58: Parsing script Particles.material601 20:39:58: An exception has been thrown!769 10:45:48: Parsing script hangar.material 770 10:45:48: Parsing script kupola.material 771 10:45:48: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 772 10:45:48: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 773 10:45:48: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 774 10:45:48: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 775 10:45:48: Parsing script Ogre.material 776 10:45:48: Parsing script Particles.material 777 10:45:48: An exception has been thrown! 602 778 603 779 ----------------------------------- … … 610 786 Line: 768 611 787 Stack unwinding: <<beginning of stack>> 612 20:39:58: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!788 10:45:48: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 613 789 614 790 ----------------------------------- … … 621 797 Line: 768 622 798 Stack unwinding: <<beginning of stack>> 623 20:39:58: An exception has been thrown!799 10:45:48: An exception has been thrown! 624 800 625 801 ----------------------------------- … … 632 808 Line: 768 633 809 Stack unwinding: <<beginning of stack>> 634 20:39:58: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown!810 10:45:48: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 635 811 636 812 ----------------------------------- … … 643 819 Line: 768 644 820 Stack unwinding: <<beginning of stack>> 645 20:39:58: Parsing script RaytraceDemo.material 646 20:39:58: Parsing script stairs.material 647 20:39:58: Parsing script X3D.material 648 20:39:58: Parsing script GameTools_Glow.compositor 649 20:39:58: Parsing script GameTools_ToneMap.compositor 650 20:39:58: Parsing script sample.fontdef 651 20:39:58: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 652 20:39:59: Parsing script GameTools.particle 653 20:39:59: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 654 20:39:59: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 655 20:39:59: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 656 20:39:59: Parsing script Compositor.overlay 657 20:39:59: Parsing script DP3.overlay 658 20:39:59: Parsing script Example-CubeMapping.overlay 659 20:39:59: Parsing script Example-DynTex.overlay 660 20:39:59: Parsing script Example-Water.overlay 661 20:39:59: Parsing script FullScreen.overlay 662 20:39:59: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 663 20:39:59: Parsing script Shadows.overlay 664 20:39:59: Finished parsing scripts for resource group General 665 20:39:59: Parsing scripts for resource group Internal 666 20:39:59: Finished parsing scripts for resource group Internal 667 20:39:59: Mesh: Loading athene.mesh. 668 20:39:59: Can't assign material 1 - Default to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 669 20:39:59: An exception has been thrown! 821 10:45:48: Parsing script RaytraceDemo.material 822 10:45:48: Parsing script stairs.material 823 10:45:48: Parsing script uvegfolyoso2.material 824 10:45:48: An exception has been thrown! 825 826 ----------------------------------- 827 Details: 828 ----------------------------------- 829 Error #: 7 830 Function: GpuProgramParameters::getParamIndex 831 Description: Cannot find a parameter named lightcol5. 832 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 833 Line: 768 834 Stack unwinding: <<beginning of stack>> 835 10:45:48: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 836 837 ----------------------------------- 838 Details: 839 ----------------------------------- 840 Error #: 7 841 Function: GpuProgramParameters::getParamIndex 842 Description: Cannot find a parameter named lightcol5. 843 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 844 Line: 768 845 Stack unwinding: <<beginning of stack>> 846 10:45:48: An exception has been thrown! 847 848 ----------------------------------- 849 Details: 850 ----------------------------------- 851 Error #: 7 852 Function: GpuProgramParameters::getParamIndex 853 Description: Cannot find a parameter named lightcol6. 854 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 855 Line: 768 856 Stack unwinding: <<beginning of stack>> 857 10:45:48: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 858 859 ----------------------------------- 860 Details: 861 ----------------------------------- 862 Error #: 7 863 Function: GpuProgramParameters::getParamIndex 864 Description: Cannot find a parameter named lightcol6. 865 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 866 Line: 768 867 Stack unwinding: <<beginning of stack>> 868 10:45:48: An exception has been thrown! 869 870 ----------------------------------- 871 Details: 872 ----------------------------------- 873 Error #: 7 874 Function: GpuProgramParameters::getParamIndex 875 Description: Cannot find a parameter named lightcol7. 876 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 877 Line: 768 878 Stack unwinding: <<beginning of stack>> 879 10:45:48: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 880 881 ----------------------------------- 882 Details: 883 ----------------------------------- 884 Error #: 7 885 Function: GpuProgramParameters::getParamIndex 886 Description: Cannot find a parameter named lightcol7. 887 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 888 Line: 768 889 Stack unwinding: <<beginning of stack>> 890 10:45:48: An exception has been thrown! 891 892 ----------------------------------- 893 Details: 894 ----------------------------------- 895 Error #: 7 896 Function: GpuProgramParameters::getParamIndex 897 Description: Cannot find a parameter named lightcol8. 898 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 899 Line: 768 900 Stack unwinding: <<beginning of stack>> 901 10:45:48: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 902 903 ----------------------------------- 904 Details: 905 ----------------------------------- 906 Error #: 7 907 Function: GpuProgramParameters::getParamIndex 908 Description: Cannot find a parameter named lightcol8. 909 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 910 Line: 768 911 Stack unwinding: <<beginning of stack>> 912 10:45:48: An exception has been thrown! 913 914 ----------------------------------- 915 Details: 916 ----------------------------------- 917 Error #: 7 918 Function: GpuProgramParameters::getParamIndex 919 Description: Cannot find a parameter named lightpos5. 920 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 921 Line: 768 922 Stack unwinding: <<beginning of stack>> 923 10:45:48: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 924 925 ----------------------------------- 926 Details: 927 ----------------------------------- 928 Error #: 7 929 Function: GpuProgramParameters::getParamIndex 930 Description: Cannot find a parameter named lightpos5. 931 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 932 Line: 768 933 Stack unwinding: <<beginning of stack>> 934 10:45:48: An exception has been thrown! 935 936 ----------------------------------- 937 Details: 938 ----------------------------------- 939 Error #: 7 940 Function: GpuProgramParameters::getParamIndex 941 Description: Cannot find a parameter named lightpos6. 942 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 943 Line: 768 944 Stack unwinding: <<beginning of stack>> 945 10:45:48: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 946 947 ----------------------------------- 948 Details: 949 ----------------------------------- 950 Error #: 7 951 Function: GpuProgramParameters::getParamIndex 952 Description: Cannot find a parameter named lightpos6. 953 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 954 Line: 768 955 Stack unwinding: <<beginning of stack>> 956 10:45:48: An exception has been thrown! 957 958 ----------------------------------- 959 Details: 960 ----------------------------------- 961 Error #: 7 962 Function: GpuProgramParameters::getParamIndex 963 Description: Cannot find a parameter named lightpos7. 964 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 965 Line: 768 966 Stack unwinding: <<beginning of stack>> 967 10:45:48: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 968 969 ----------------------------------- 970 Details: 971 ----------------------------------- 972 Error #: 7 973 Function: GpuProgramParameters::getParamIndex 974 Description: Cannot find a parameter named lightpos7. 975 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 976 Line: 768 977 Stack unwinding: <<beginning of stack>> 978 10:45:48: An exception has been thrown! 979 980 ----------------------------------- 981 Details: 982 ----------------------------------- 983 Error #: 7 984 Function: GpuProgramParameters::getParamIndex 985 Description: Cannot find a parameter named lightpos8. 986 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 987 Line: 768 988 Stack unwinding: <<beginning of stack>> 989 10:45:48: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 990 991 ----------------------------------- 992 Details: 993 ----------------------------------- 994 Error #: 7 995 Function: GpuProgramParameters::getParamIndex 996 Description: Cannot find a parameter named lightpos8. 997 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 998 Line: 768 999 Stack unwinding: <<beginning of stack>> 1000 10:45:48: An exception has been thrown! 1001 1002 ----------------------------------- 1003 Details: 1004 ----------------------------------- 1005 Error #: 7 1006 Function: GpuProgramParameters::getParamIndex 1007 Description: Cannot find a parameter named lightcol5. 1008 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1009 Line: 768 1010 Stack unwinding: <<beginning of stack>> 1011 10:45:48: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1012 1013 ----------------------------------- 1014 Details: 1015 ----------------------------------- 1016 Error #: 7 1017 Function: GpuProgramParameters::getParamIndex 1018 Description: Cannot find a parameter named lightcol5. 1019 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1020 Line: 768 1021 Stack unwinding: <<beginning of stack>> 1022 10:45:48: An exception has been thrown! 1023 1024 ----------------------------------- 1025 Details: 1026 ----------------------------------- 1027 Error #: 7 1028 Function: GpuProgramParameters::getParamIndex 1029 Description: Cannot find a parameter named lightcol6. 1030 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1031 Line: 768 1032 Stack unwinding: <<beginning of stack>> 1033 10:45:48: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1034 1035 ----------------------------------- 1036 Details: 1037 ----------------------------------- 1038 Error #: 7 1039 Function: GpuProgramParameters::getParamIndex 1040 Description: Cannot find a parameter named lightcol6. 1041 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1042 Line: 768 1043 Stack unwinding: <<beginning of stack>> 1044 10:45:48: An exception has been thrown! 1045 1046 ----------------------------------- 1047 Details: 1048 ----------------------------------- 1049 Error #: 7 1050 Function: GpuProgramParameters::getParamIndex 1051 Description: Cannot find a parameter named lightcol7. 1052 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1053 Line: 768 1054 Stack unwinding: <<beginning of stack>> 1055 10:45:48: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1056 1057 ----------------------------------- 1058 Details: 1059 ----------------------------------- 1060 Error #: 7 1061 Function: GpuProgramParameters::getParamIndex 1062 Description: Cannot find a parameter named lightcol7. 1063 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1064 Line: 768 1065 Stack unwinding: <<beginning of stack>> 1066 10:45:48: An exception has been thrown! 1067 1068 ----------------------------------- 1069 Details: 1070 ----------------------------------- 1071 Error #: 7 1072 Function: GpuProgramParameters::getParamIndex 1073 Description: Cannot find a parameter named lightcol8. 1074 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1075 Line: 768 1076 Stack unwinding: <<beginning of stack>> 1077 10:45:48: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1078 1079 ----------------------------------- 1080 Details: 1081 ----------------------------------- 1082 Error #: 7 1083 Function: GpuProgramParameters::getParamIndex 1084 Description: Cannot find a parameter named lightcol8. 1085 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1086 Line: 768 1087 Stack unwinding: <<beginning of stack>> 1088 10:45:48: An exception has been thrown! 1089 1090 ----------------------------------- 1091 Details: 1092 ----------------------------------- 1093 Error #: 7 1094 Function: GpuProgramParameters::getParamIndex 1095 Description: Cannot find a parameter named lightpos5. 1096 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1097 Line: 768 1098 Stack unwinding: <<beginning of stack>> 1099 10:45:48: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1100 1101 ----------------------------------- 1102 Details: 1103 ----------------------------------- 1104 Error #: 7 1105 Function: GpuProgramParameters::getParamIndex 1106 Description: Cannot find a parameter named lightpos5. 1107 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1108 Line: 768 1109 Stack unwinding: <<beginning of stack>> 1110 10:45:48: An exception has been thrown! 1111 1112 ----------------------------------- 1113 Details: 1114 ----------------------------------- 1115 Error #: 7 1116 Function: GpuProgramParameters::getParamIndex 1117 Description: Cannot find a parameter named lightpos6. 1118 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1119 Line: 768 1120 Stack unwinding: <<beginning of stack>> 1121 10:45:48: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1122 1123 ----------------------------------- 1124 Details: 1125 ----------------------------------- 1126 Error #: 7 1127 Function: GpuProgramParameters::getParamIndex 1128 Description: Cannot find a parameter named lightpos6. 1129 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1130 Line: 768 1131 Stack unwinding: <<beginning of stack>> 1132 10:45:48: An exception has been thrown! 1133 1134 ----------------------------------- 1135 Details: 1136 ----------------------------------- 1137 Error #: 7 1138 Function: GpuProgramParameters::getParamIndex 1139 Description: Cannot find a parameter named lightpos7. 1140 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1141 Line: 768 1142 Stack unwinding: <<beginning of stack>> 1143 10:45:48: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1144 1145 ----------------------------------- 1146 Details: 1147 ----------------------------------- 1148 Error #: 7 1149 Function: GpuProgramParameters::getParamIndex 1150 Description: Cannot find a parameter named lightpos7. 1151 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1152 Line: 768 1153 Stack unwinding: <<beginning of stack>> 1154 10:45:48: An exception has been thrown! 1155 1156 ----------------------------------- 1157 Details: 1158 ----------------------------------- 1159 Error #: 7 1160 Function: GpuProgramParameters::getParamIndex 1161 Description: Cannot find a parameter named lightpos8. 1162 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1163 Line: 768 1164 Stack unwinding: <<beginning of stack>> 1165 10:45:48: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 1166 1167 ----------------------------------- 1168 Details: 1169 ----------------------------------- 1170 Error #: 7 1171 Function: GpuProgramParameters::getParamIndex 1172 Description: Cannot find a parameter named lightpos8. 1173 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 1174 Line: 768 1175 Stack unwinding: <<beginning of stack>> 1176 10:45:48: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1177 10:45:48: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 1178 10:45:48: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1179 10:45:48: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1180 10:45:48: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 1181 10:45:48: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 1182 10:45:48: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1183 10:45:48: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 1184 10:45:48: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 1185 10:45:48: Parsing script X3D.material 1186 10:45:48: Parsing script GameTools_Glow.compositor 1187 10:45:48: Parsing script GameTools_ToneMap.compositor 1188 10:45:48: Parsing script sample.fontdef 1189 10:45:48: Bad attribute line: glyph 0.152344 0.125 0.160156 0.1875 in font Ogre 1190 10:45:48: Parsing script GameTools.particle 1191 10:45:48: Bad particle system attribute line: 'billboard_type point' in GameTools/DemoParticle1 (tried renderer) 1192 10:45:48: Bad particle system attribute line: 'billboard_type point' in GameTools/Big (tried renderer) 1193 10:45:48: Bad particle system attribute line: 'billboard_type point' in GameTools/Little (tried renderer) 1194 10:45:48: Parsing script Compositor.overlay 1195 10:45:48: Parsing script DP3.overlay 1196 10:45:48: Parsing script Example-CubeMapping.overlay 1197 10:45:48: Parsing script Example-DynTex.overlay 1198 10:45:48: Parsing script Example-Water.overlay 1199 10:45:48: Parsing script FullScreen.overlay 1200 10:45:48: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 1201 10:45:48: Parsing script Shadows.overlay 1202 10:45:48: Finished parsing scripts for resource group General 1203 10:45:48: Parsing scripts for resource group Internal 1204 10:45:48: Finished parsing scripts for resource group Internal 1205 10:45:48: WARNING: Texture instance 'FloorReflection' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1206 10:45:48: Creating viewport on target 'rtt/2260960', rendering from camera 'ReflectCamFloor', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1207 10:45:48: Viewport for camera 'ReflectCamFloor', actual dimensions L: 0 T: 0 W: 512 H: 512 1208 10:45:48: Mesh: Loading athene.mesh. 1209 10:45:48: Can't assign material 1 - Default to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 1210 10:45:48: An exception has been thrown! 670 1211 671 1212 ----------------------------------- … … 678 1219 Line: 583 679 1220 Stack unwinding: <<beginning of stack>> 680 20:39:59: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown!1221 10:45:48: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 681 1222 682 1223 ----------------------------------- … … 689 1230 Line: 583 690 1231 Stack unwinding: <<beginning of stack>> 691 20:39:59: An exception has been thrown!1232 10:45:48: An exception has been thrown! 692 1233 693 1234 ----------------------------------- … … 700 1241 Line: 583 701 1242 Stack unwinding: <<beginning of stack>> 702 20:39:59: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown!1243 10:45:48: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 703 1244 704 1245 ----------------------------------- … … 711 1252 Line: 583 712 1253 Stack unwinding: <<beginning of stack>> 713 20:39:59: An exception has been thrown!1254 10:45:48: An exception has been thrown! 714 1255 715 1256 ----------------------------------- … … 722 1263 Line: 583 723 1264 Stack unwinding: <<beginning of stack>> 724 20:39:59: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown!1265 10:45:48: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 725 1266 726 1267 ----------------------------------- … … 733 1274 Line: 583 734 1275 Stack unwinding: <<beginning of stack>> 735 20:39:59: An exception has been thrown!1276 10:45:48: An exception has been thrown! 736 1277 737 1278 ----------------------------------- … … 744 1285 Line: 583 745 1286 Stack unwinding: <<beginning of stack>> 746 20:39:59: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown!1287 10:45:48: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 747 1288 748 1289 ----------------------------------- … … 755 1296 Line: 583 756 1297 Stack unwinding: <<beginning of stack>> 757 20:39:59: Mesh: Loading diffscene.mesh. 758 20:39:59: Texture: tetolampakek.jpg: Loading 1 faces(PF_B8G8R8,441x444x1) with 8 generated mipmaps from Image. Internal format is PF_X8R8G8B8,441x444x1. 759 20:39:59: Texture: tetolampasarga.jpg: Loading 1 faces(PF_B8G8R8,441x444x1) with 8 generated mipmaps from Image. Internal format is PF_X8R8G8B8,441x444x1. 760 20:39:59: Texture: talaj.jpg: Loading 1 faces(PF_B8G8R8,512x1024x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x1024x1. 761 20:39:59: Creating viewport on target 'rtt/2325600', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 762 20:39:59: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 763 20:39:59: Creating viewport on target 'rtt/2325664', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 764 20:39:59: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 765 20:39:59: Creating viewport on target 'rtt/2325728', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 766 20:39:59: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 767 20:39:59: Creating viewport on target 'rtt/2325792', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 768 20:39:59: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 769 20:39:59: Creating viewport on target 'rtt/2325856', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 770 20:39:59: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 771 20:39:59: Creating viewport on target 'rtt/2325920', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 772 20:39:59: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 773 20:39:59: WARNING: Texture instance 'object_SE_0_DISTANCECUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 774 20:39:59: Creating viewport on target 'rtt/2327200', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 775 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 776 20:39:59: Creating viewport on target 'rtt/2327264', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 777 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 778 20:39:59: Creating viewport on target 'rtt/2327328', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 779 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 780 20:39:59: Creating viewport on target 'rtt/2327392', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 781 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 782 20:39:59: Creating viewport on target 'rtt/2327456', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 783 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 784 20:39:59: Creating viewport on target 'rtt/2327520', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 785 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 786 20:39:59: Creating viewport on target 'rtt/2343680', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 787 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 788 20:39:59: Creating viewport on target 'rtt/2343744', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 789 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 790 20:39:59: Creating viewport on target 'rtt/2343808', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 791 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 792 20:39:59: Creating viewport on target 'rtt/2343872', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 793 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 794 20:39:59: Creating viewport on target 'rtt/2343936', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 795 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 796 20:39:59: Creating viewport on target 'rtt/2344000', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 797 20:39:59: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 798 20:39:59: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_REDUCED' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 799 20:39:59: Win32Input8: DirectInput Activation Starts 800 20:39:59: Win32Input8: Establishing keyboard input. 801 20:39:59: Win32Input8: Keyboard input established. 802 20:39:59: Win32Input8: Initializing mouse input in immediate mode. 803 20:39:59: Win32Input8: Mouse input in immediate mode initialized. 804 20:39:59: Win32Input8: DirectInput OK. 805 20:39:59: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 806 20:48:02: Unregistering ResourceManager for type BspLevel 807 20:48:02: Render Target 'rtt/2343680' Average FPS: 4.93017 Best FPS: 33.6967 Worst FPS: 1.36302 808 20:48:02: Render Target 'rtt/2343744' Average FPS: 4.93017 Best FPS: 33.6967 Worst FPS: 1.36302 809 20:48:02: Render Target 'rtt/2343808' Average FPS: 4.93017 Best FPS: 33.6967 Worst FPS: 1.36364 810 20:48:02: Render Target 'rtt/2343872' Average FPS: 4.93017 Best FPS: 33.6967 Worst FPS: 1.36302 811 20:48:02: Render Target 'rtt/2343936' Average FPS: 4.93017 Best FPS: 33.6967 Worst FPS: 1.36302 812 20:48:02: Render Target 'rtt/2344000' Average FPS: 4.93017 Best FPS: 33.6967 Worst FPS: 1.36302 813 20:48:02: Render Target 'rtt/2327200' Average FPS: 4.72491 Best FPS: 33.1061 Worst FPS: 1.99402 814 20:48:02: Render Target 'rtt/2327264' Average FPS: 4.6631 Best FPS: 33.0739 Worst FPS: 1.99005 815 20:48:02: Render Target 'rtt/2327328' Average FPS: 4.72234 Best FPS: 32.7057 Worst FPS: 1.9861 816 20:48:02: Render Target 'rtt/2327392' Average FPS: 4.72191 Best FPS: 32.7057 Worst FPS: 1.98216 817 20:48:02: Render Target 'rtt/2327456' Average FPS: 4.93011 Best FPS: 32.7057 Worst FPS: 1.36364 818 20:48:02: Render Target 'rtt/2327520' Average FPS: 4.92991 Best FPS: 33.6967 Worst FPS: 1.97433 819 20:48:02: Render Target 'rtt/2325600' Average FPS: 0.802858 Best FPS: 5.40541 Worst FPS: 0.669344 820 20:48:02: Render Target 'rtt/2325664' Average FPS: 0.722514 Best FPS: 5.37634 Worst FPS: 0.619195 821 20:48:02: Render Target 'rtt/2325728' Average FPS: 0.86184 Best FPS: 4.80307 Worst FPS: 0.413223 822 20:48:02: Render Target 'rtt/2325792' Average FPS: 0.862895 Best FPS: 5.22193 Worst FPS: 0.647668 823 20:48:02: Render Target 'rtt/2325856' Average FPS: 0.80273 Best FPS: 5.09338 Worst FPS: 0.641026 824 20:48:02: Render Target 'rtt/2325920' Average FPS: 0.858144 Best FPS: 5.11945 Worst FPS: 0.67659 825 20:48:02: *-*-* OGRE Shutdown 826 20:48:02: Unregistering ResourceManager for type Compositor 827 20:48:02: Unregistering ResourceManager for type Font 828 20:48:02: Unregistering ResourceManager for type Skeleton 829 20:48:02: Unregistering ResourceManager for type Mesh 830 20:48:02: Unregistering ResourceManager for type HighLevelGpuProgram 831 20:48:02: Unloading library .\Plugin_CgProgramManager 832 20:48:02: Unloading library .\Plugin_OctreeSceneManager 833 20:48:02: Unloading library .\Plugin_BSPSceneManager 834 20:48:02: Unloading library .\Plugin_ParticleFX 835 20:48:02: Render Target 'OGRE Render Window' Average FPS: 4.93161 Best FPS: 63.3663 Worst FPS: 1.36302 836 20:48:03: D3D9 : Shutting down cleanly. 837 20:48:03: Unregistering ResourceManager for type Texture 838 20:48:03: Unregistering ResourceManager for type GpuProgram 839 20:48:03: D3D9 : Direct3D9 Rendering Subsystem destroyed. 840 20:48:03: Unloading library .\RenderSystem_Direct3D9 841 20:48:03: Unregistering ResourceManager for type Material 842 20:48:03: Unloading library OgrePlatform.dll 1298 10:45:48: Mesh: Loading uvegfolyoso2.mesh. 1299 10:45:48: Texture: background.jpg: Loading 1 faces(PF_B8G8R8,2048x512x1) with hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x512x1. 1300 10:45:48: Creating viewport on target 'rtt/21851808', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1301 10:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1302 10:45:48: Creating viewport on target 'rtt/21851872', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1303 10:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1304 10:45:48: Creating viewport on target 'rtt/21851936', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1305 10:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1306 10:45:48: Creating viewport on target 'rtt/21852000', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1307 10:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1308 10:45:48: Creating viewport on target 'rtt/21852064', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1309 10:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1310 10:45:48: Creating viewport on target 'rtt/21852128', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1311 10:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 1312 10:45:48: WARNING: Texture instance 'object_SE_0_DISTANCECUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1313 10:45:48: Creating viewport on target 'rtt/21852992', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1314 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 1315 10:45:48: Creating viewport on target 'rtt/21853056', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1316 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 1317 10:45:48: Creating viewport on target 'rtt/21853120', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1318 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 1319 10:45:48: Creating viewport on target 'rtt/21853184', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1320 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 1321 10:45:48: Creating viewport on target 'rtt/21853248', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1322 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 1323 10:45:48: Creating viewport on target 'rtt/21853312', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1324 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 1325 10:45:48: Creating viewport on target 'rtt/21854336', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1326 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 1327 10:45:48: Creating viewport on target 'rtt/21854400', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1328 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 1329 10:45:48: Creating viewport on target 'rtt/21854464', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1330 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 1331 10:45:48: Creating viewport on target 'rtt/21854528', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1332 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 1333 10:45:48: Creating viewport on target 'rtt/21854592', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1334 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 1335 10:45:48: Creating viewport on target 'rtt/21854656', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 1336 10:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 1337 10:45:48: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_REDUCED' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1338 10:45:48: Win32Input8: DirectInput Activation Starts 1339 10:45:48: Win32Input8: Establishing keyboard input. 1340 10:45:48: Win32Input8: Keyboard input established. 1341 10:45:48: Win32Input8: Initializing mouse input in immediate mode. 1342 10:45:48: Win32Input8: Mouse input in immediate mode initialized. 1343 10:45:48: Win32Input8: DirectInput OK. 1344 10:45:48: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 1345 10:48:25: Unregistering ResourceManager for type BspLevel 1346 10:48:25: Render Target 'rtt/21854336' Average FPS: 10.5154 Best FPS: 38.0859 Worst FPS: 1.76005 1347 10:48:25: Render Target 'rtt/21854400' Average FPS: 10.516 Best FPS: 38.0859 Worst FPS: 1.76005 1348 10:48:25: Render Target 'rtt/21854464' Average FPS: 10.5161 Best FPS: 38.0859 Worst FPS: 1.76005 1349 10:48:25: Render Target 'rtt/21854528' Average FPS: 10.5204 Best FPS: 38.0859 Worst FPS: 1.76005 1350 10:48:25: Render Target 'rtt/21854592' Average FPS: 10.5204 Best FPS: 38.0859 Worst FPS: 1.76005 1351 10:48:25: Render Target 'rtt/21854656' Average FPS: 10.5154 Best FPS: 38.0859 Worst FPS: 1.76005 1352 10:48:25: Render Target 'rtt/21852992' Average FPS: 10.511 Best FPS: 38.2728 Worst FPS: 1.75979 1353 10:48:25: Render Target 'rtt/21853056' Average FPS: 10.5111 Best FPS: 38.2353 Worst FPS: 1.75979 1354 10:48:25: Render Target 'rtt/21853120' Average FPS: 10.5143 Best FPS: 38.2353 Worst FPS: 1.76005 1355 10:48:25: Render Target 'rtt/21853184' Average FPS: 10.511 Best FPS: 38.2353 Worst FPS: 1.76005 1356 10:48:25: Render Target 'rtt/21853248' Average FPS: 10.5224 Best FPS: 38.2728 Worst FPS: 1.75979 1357 10:48:25: Render Target 'rtt/21853312' Average FPS: 10.5204 Best FPS: 38.0859 Worst FPS: 1.76005 1358 10:48:25: Render Target 'rtt/21851808' Average FPS: 1.75138 Best FPS: 6.38686 Worst FPS: 0.299715 1359 10:48:25: Render Target 'rtt/21851872' Average FPS: 1.75091 Best FPS: 6.36364 Worst FPS: 0.162285 1360 10:48:25: Render Target 'rtt/21851936' Average FPS: 1.74797 Best FPS: 6.38686 Worst FPS: 0.162232 1361 10:48:25: Render Target 'rtt/21852000' Average FPS: 1.74879 Best FPS: 6.35209 Worst FPS: 0.162364 1362 10:48:25: Render Target 'rtt/21852064' Average FPS: 1.75196 Best FPS: 6.34058 Worst FPS: 0.293341 1363 10:48:25: Render Target 'rtt/21852128' Average FPS: 1.75351 Best FPS: 6.34058 Worst FPS: 0.29994 1364 10:48:25: Render Target 'rtt/2260960' Average FPS: 10.5051 Best FPS: 187.812 Worst FPS: 2.9615 1365 10:48:25: *-*-* OGRE Shutdown 1366 10:48:25: Unregistering ResourceManager for type Compositor 1367 10:48:25: Unregistering ResourceManager for type Font 1368 10:48:25: Unregistering ResourceManager for type Skeleton 1369 10:48:25: Unregistering ResourceManager for type Mesh 1370 10:48:25: Unregistering ResourceManager for type HighLevelGpuProgram 1371 10:48:25: Unloading library .\Plugin_CgProgramManager 1372 10:48:25: Unloading library .\Plugin_OctreeSceneManager 1373 10:48:25: Unloading library .\Plugin_BSPSceneManager 1374 10:48:25: Unloading library .\Plugin_ParticleFX 1375 10:48:25: Render Target 'OGRE Render Window' Average FPS: 10.5006 Best FPS: 187.812 Worst FPS: 2.9383 1376 10:48:26: D3D9 : Shutting down cleanly. 1377 10:48:26: Unregistering ResourceManager for type Texture 1378 10:48:26: Unregistering ResourceManager for type GpuProgram 1379 10:48:26: D3D9 : Direct3D9 Rendering Subsystem destroyed. 1380 10:48:26: Unloading library .\RenderSystem_Direct3D9 1381 10:48:26: Unregistering ResourceManager for type Material 1382 10:48:26: Unloading library OgrePlatform.dll -
GTP/trunk/App/Demos/Illum/Ogre/src/DiffuseTest/include/DiffuseTest.h
r1590 r1598 225 225 }; 226 226 227 228 class FloorRenderTargetListener : public RenderTargetListener 229 { 230 public: 231 Entity* scene; 232 FloorRenderTargetListener(Entity* scene) 233 { 234 this->scene = scene; 235 } 236 void preRenderTargetUpdate(const RenderTargetEvent& evt) 237 { 238 scene->getSubEntity(0)->setVisible(false); 239 scene->getSubEntity(17)->setVisible(false); 240 scene->getSubEntity(35)->setVisible(false); 241 scene->getSubEntity(52)->setVisible(false); 242 } 243 void postRenderTargetUpdate(const RenderTargetEvent& evt) 244 { 245 scene->getSubEntity(0)->setVisible(true); 246 scene->getSubEntity(17)->setVisible(true); 247 scene->getSubEntity(35)->setVisible(true); 248 scene->getSubEntity(52)->setVisible(true); 249 } 250 251 }; 252 253 class CeilRenderTargetListener : public RenderTargetListener 254 { 255 public: 256 Entity* scene; 257 CeilRenderTargetListener(Entity* scene) 258 { 259 this->scene = scene; 260 } 261 void preRenderTargetUpdate(const RenderTargetEvent& evt) 262 { 263 scene->getSubEntity(1)->setVisible(false); 264 scene->getSubEntity(18)->setVisible(false); 265 scene->getSubEntity(36)->setVisible(false); 266 scene->getSubEntity(53)->setVisible(false); 267 } 268 void postRenderTargetUpdate(const RenderTargetEvent& evt) 269 { 270 scene->getSubEntity(1)->setVisible(true); 271 scene->getSubEntity(18)->setVisible(true); 272 scene->getSubEntity(36)->setVisible(true); 273 scene->getSubEntity(53)->setVisible(true); 274 } 275 276 }; 277 278 class ReflectionCameraFrameListener : public FrameListener 279 { 280 public: 281 Camera* floorReflCam; 282 Camera* ceilReflCam; 283 Camera* mainCamera; 284 ReflectionCameraFrameListener(Camera* floorcam, Camera* ceilCam, Camera* mainCam) 285 { 286 floorReflCam = floorcam; 287 ceilReflCam = ceilCam; 288 mainCamera = mainCam; 289 } 290 bool frameStarted(const FrameEvent& evt) 291 { 292 floorReflCam->setOrientation(mainCamera->getOrientation()); 293 floorReflCam->setPosition(mainCamera->getPosition()); 294 295 // ceilReflCam->setOrientation(mainCamera->getOrientation()); 296 // ceilReflCam->setPosition(mainCamera->getPosition()); 297 298 return true; 299 } 300 }; 227 301 /** Application class */ 228 302 class RaytraceDemoApplication : public ExampleApplication … … 258 332 mCamera->setPosition(0,10,10); 259 333 mCamera->setFOVy(Radian(Degree(80))); 260 mCamera->setFarClipDistance( 100);334 mCamera->setFarClipDistance(200); 261 335 mCamera->setNearClipDistance(0.1); 262 // Set ambient light 336 337 //createScene1(); 338 createScene2(); 339 340 OgreIlluminationManager::getSingleton().initTechniques(); 341 342 343 } 344 345 void createScene1() 346 { 347 263 348 mSceneMgr->setAmbientLight(ColourValue(0.1, 0.0537, 0.0)); 264 349 //mSceneMgr->setAmbientLight(ColourValue(0.0, 0.0, 0.0)); … … 355 440 redlight2Node->setPosition(18.689,7.743,-10.838); 356 441 redlight2Node->attachObject(redlight2); 357 358 OgreIlluminationManager::getSingleton().initTechniques();359 360 361 442 } 443 444 Camera* mReflectCamFloor; 445 Camera* mReflectCamCeil; 446 ReflectionCameraFrameListener* reflListener; 447 void createScene2() 448 { 449 mCamera->setPosition(0,5,10); 450 MovablePlane *floorPlane = new MovablePlane("ReflectPlaneFloor"); 451 floorPlane->d = 0; 452 floorPlane->normal = Vector3::UNIT_Y; 453 454 RenderTexture* rttTexFloor = mRoot->getRenderSystem()->createRenderTexture( "FloorReflection", 512, 512, TEX_TYPE_2D, PF_R8G8B8 ); 455 { 456 mReflectCamFloor = mSceneMgr->createCamera("ReflectCamFloor"); 457 mReflectCamFloor->setNearClipDistance(mCamera->getNearClipDistance()); 458 mReflectCamFloor->setFarClipDistance(mCamera->getFarClipDistance()); 459 /* mReflectCamFloor->setAspectRatio( 460 (Real)mWindow->getViewport(0)->getActualWidth() / 461 (Real)mWindow->getViewport(0)->getActualHeight());*/ 462 mReflectCamFloor->setFOVy(mCamera->getFOVy()); 463 mReflectCamFloor->setAspectRatio(mCamera->getAspectRatio()); 464 465 Viewport *v = rttTexFloor->addViewport( mReflectCamFloor ); 466 v->setClearEveryFrame( true ); 467 v->setBackgroundColour( ColourValue::Black ); 468 469 470 // set up linked reflection 471 mReflectCamFloor->enableReflection(floorPlane); 472 // Also clip 473 mReflectCamFloor->enableCustomNearClipPlane(floorPlane); 474 } 475 /* MovablePlane *ceilPlane = new MovablePlane("ReflectPlaneCeil"); 476 ceilPlane->d = -8; 477 ceilPlane->normal = Vector3::NEGATIVE_UNIT_Y; 478 RenderTexture* rttTexCeil = mRoot->getRenderSystem()->createRenderTexture( "CeilReflection", 512, 512, TEX_TYPE_2D, PF_R8G8B8 ); 479 { 480 mReflectCamCeil = mSceneMgr->createCamera("ReflectCamCeil"); 481 mReflectCamCeil->setNearClipDistance(mCamera->getNearClipDistance()); 482 mReflectCamCeil->setFarClipDistance(mCamera->getFarClipDistance()); 483 mReflectCamCeil->setAspectRatio( 484 (Real)mWindow->getViewport(0)->getActualWidth() / 485 (Real)mWindow->getViewport(0)->getActualHeight()); 486 487 Viewport *v = rttTexCeil->addViewport( mReflectCamCeil ); 488 v->setClearEveryFrame( true ); 489 v->setBackgroundColour( ColourValue::Black ); 490 491 492 // set up linked reflection 493 mReflectCamCeil->enableReflection(floorPlane); 494 // Also clip 495 mReflectCamCeil->enableCustomNearClipPlane(floorPlane); 496 } 497 */ 498 reflListener = new ReflectionCameraFrameListener(mReflectCamFloor, mReflectCamCeil, mCamera); 499 reflListener->setPriority(2); 500 501 // mSceneMgr->setAmbientLight(ColourValue(0.1, 0.0537, 0.0)); 502 mSceneMgr->setAmbientLight(ColourValue(0.0, 0.0, 0.0)); 503 504 SceneNode* rootNode = mSceneMgr->getRootSceneNode(); 505 506 Entity* object = mSceneMgr->createEntity("object", "athene.mesh"); 507 object->setMaterialName("GameTools/Diffuse/use"); 508 //object->setMaterialName("GameTools/Diffuse2"); 509 objectNode = rootNode->createChildSceneNode(); 510 objectNode->attachObject(object); 511 objectNode->scale(0.05,0.05,0.05); 512 objectNode->setPosition(0,4,0); 513 objectNode->_updateBounds(); 514 515 Entity* room = mSceneMgr->createEntity("scene", "uvegfolyoso2.mesh"); 516 //room->setMaterialName("GameTools/Phong"); 517 SceneNode* roomNode = rootNode->createChildSceneNode(); 518 roomNode->attachObject(room); 519 roomNode->_updateBounds(); 520 rttTexFloor->addListener(new FloorRenderTargetListener(room)); 521 //rttTexCeil->addListener(new CeilRenderTargetListener(room)); 522 523 Light* light1 = mSceneMgr->createLight("Light1"); 524 light1->setType(Light::LT_POINT); 525 light1->setDiffuseColour(ColourValue(0.526,0.535, 0.974)); 526 light1->setPowerScale(3); 527 SceneNode* lightNode1 = rootNode->createChildSceneNode(); 528 lightNode1->setPosition(-1.266,4.131,-4.438); 529 lightNode1->attachObject(light1); 530 531 Light* light2 = mSceneMgr->createLight("Light2"); 532 light2->setType(Light::LT_POINT); 533 light2->setDiffuseColour(ColourValue(0.391,0.781, 0.974)); 534 light2->setPowerScale(3); 535 SceneNode* lightNode2 = rootNode->createChildSceneNode(); 536 lightNode2->setPosition(-33.537,4.131,-4.438); 537 lightNode2->attachObject(light2); 538 539 Light* light3 = mSceneMgr->createLight("Light3"); 540 light3->setType(Light::LT_POINT); 541 light3->setDiffuseColour(ColourValue(0.391,0.781, 0.974)); 542 light3->setPowerScale(3); 543 SceneNode* lightNode3 = rootNode->createChildSceneNode(); 544 lightNode3->setPosition(-97.446,4.131,-4.438); 545 lightNode3->attachObject(light3); 546 547 Light* light4 = mSceneMgr->createLight("Light4"); 548 light4->setType(Light::LT_POINT); 549 light4->setDiffuseColour(ColourValue(0.304,0.974, 0.770)); 550 light4->setPowerScale(3); 551 SceneNode* lightNode4 = rootNode->createChildSceneNode(); 552 lightNode4->setPosition(-63.277,4.131,-4.438); 553 lightNode4->attachObject(light4); 554 555 556 557 558 559 } 560 362 561 void createPlane(Ogre::String _name, Ogre::String _material, Ogre::Vector3 _pos, Ogre::Vector2 _size, Ogre::Vector2 _subdivisions = Ogre::Vector2(1,1)) { 363 562 … … 389 588 ); 390 589 mFrameListener->setPriority(1); 391 OgreIlluminationManager::getSingleton().setPriority( 2);590 OgreIlluminationManager::getSingleton().setPriority(10); 392 591 mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 393 592 mRoot->addFrameListener(mFrameListener); 593 mRoot->addFrameListener(reflListener); 394 594 395 595 } … … 397 597 }; 398 598 599 -
GTP/trunk/App/Demos/Illum/Ogre/src/DiffuseTest/scripts/DiffuseTest.vcproj
r1590 r1598 181 181 RelativePath="..\..\..\Media\materials\scripts\Glow.material"> 182 182 </File> 183 <File 184 RelativePath="..\..\..\Media\materials\scripts\uvegfolyoso2.material"> 185 </File> 183 186 </Filter> 184 187 </Files>
Note: See TracChangeset
for help on using the changeset viewer.