Changeset 1598


Ignore:
Timestamp:
10/10/06 11:13:58 (18 years ago)
Author:
szirmay
Message:
 
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  
    44{ 
    55        float4 hPos :POSITION; 
     6        float4 hPosition :TEXCOORD4; 
    67        float3 wPos     :TEXCOORD1; 
    78        float2 texCoord :TEXCOORD0; 
     
    1718{ 
    1819  vertOUT OUT; 
    19   OUT.hPos = mul(worldViewProj, position); 
     20  OUT.hPos = OUT.hPosition = mul(worldViewProj, position); 
    2021  OUT.wPos = mul(world, position).xyz;   
    2122  OUT.mNormal = mul(world, normal); 
     
    5960    float3 pos = IN.wPos; 
    6061     
    61     float M = 8; 
     62    float M = 4; 
    6263    
    6364    float3 lightpositions[8]; 
     
    9192        L = normalize(L); 
    9293        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; 
    9597        float range = 4.0; 
    9698        I += 1.0 / d * (spec + diff);    
     
    102104} 
    103105 
     106 
     107float4 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! 
     110:37:48: Creating resource group General 
     210:37:48: Creating resource group Internal 
     310:37:48: Creating resource group Autodetect 
     410:37:48: Registering ResourceManager for type Material 
     510:37:48: Registering ResourceManager for type Mesh 
     610:37:48: Registering ResourceManager for type Skeleton 
     710:37:48: MovableObjectFactory for type 'ParticleSystem' registered. 
     810:37:48: Loading library OgrePlatform_d.dll 
     910:37:48: OverlayElementFactory for type Panel registered. 
     1010:37:48: OverlayElementFactory for type BorderPanel registered. 
     1110:37:48: OverlayElementFactory for type TextArea registered. 
     1210:37:48: Registering ResourceManager for type Font 
     1310:37:48: ArchiveFactory for archive type FileSystem registered. 
     1410:37:48: ArchiveFactory for archive type Zip registered. 
     1510:37:48: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1610: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  
     1710:37:48: Registering ResourceManager for type HighLevelGpuProgram 
     1810:37:48: Registering ResourceManager for type Compositor 
     1910:37:48: MovableObjectFactory for type 'Entity' registered. 
     2010:37:48: MovableObjectFactory for type 'Light' registered. 
     2110:37:48: MovableObjectFactory for type 'BillboardSet' registered. 
     2210:37:48: MovableObjectFactory for type 'ManualObject' registered. 
     2310:37:48: MovableObjectFactory for type 'BillboardChain' registered. 
     2410:37:48: MovableObjectFactory for type 'RibbonTrail' registered. 
     2510:37:48: Loading library .\RenderSystem_Direct3D9 
     2610:37:48: D3D9 : Direct3D9 Rendering Subsystem created. 
     2710:37:48: D3D9: Driver Detection Starts 
     2810:37:48: D3D9: Driver Detection Ends 
     2910:37:48: Loading library .\Plugin_ParticleFX 
     3010:37:48: Particle Emitter Type 'Point' registered 
     3110:37:48: Particle Emitter Type 'Box' registered 
     3210:37:48: Particle Emitter Type 'Ellipsoid' registered 
     3310:37:48: Particle Emitter Type 'Cylinder' registered 
     3410:37:48: Particle Emitter Type 'Ring' registered 
     3510:37:48: Particle Emitter Type 'HollowEllipsoid' registered 
     3610:37:48: Particle Affector Type 'LinearForce' registered 
     3710:37:48: Particle Affector Type 'ColourFader' registered 
     3810:37:48: Particle Affector Type 'ColourFader2' registered 
     3910:37:48: Particle Affector Type 'ColourImage' registered 
     4010:37:48: Particle Affector Type 'ColourInterpolator' registered 
     4110:37:48: Particle Affector Type 'Scaler' registered 
     4210:37:48: Particle Affector Type 'Rotator' registered 
     4310:37:48: Particle Affector Type 'DirectionRandomiser' registered 
     4410:37:48: Particle Affector Type 'DeflectorPlane' registered 
     4510:37:48: Loading library .\Plugin_BSPSceneManager 
     4610:37:48: Registering ResourceManager for type BspLevel 
     4710:37:48: Loading library .\Plugin_OctreeSceneManager 
     4810:37:48: Loading library .\Plugin_CgProgramManager 
     4910:37:48: *-*-* OGRE Initialising 
     5010:37:48: *-*-* Version 1.2.0 (Dagon) 
     5110:37:48: Creating resource group Bootstrap 
     5210:37:48: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5310:37:48: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5410:37:48: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5510:37:48: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5610:37:48: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5710:37:48: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5810:37:48: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5910:37:48: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6010:37:48: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6110:37:48: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6210:37:48: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6310:37:48: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6410:37:48: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6510:37:48: D3D9 : RenderSystem Option: Anti aliasing = None 
     6610:37:48: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6710:37:48: D3D9 : RenderSystem Option: Full Screen = No 
     6810:37:48: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
     6910:37:48: D3D9 : RenderSystem Option: VSync = No 
     7010:37:48: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7110:37:49: D3D9 : Subsystem Initialising 
     7210:37:49: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7310:37:49: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7410: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. 
     7510:37:49: Registering ResourceManager for type Texture 
     7610:37:49: Registering ResourceManager for type GpuProgram 
     7710:37:49: RenderSystem capabilities 
     7810:37:49: ------------------------- 
     7910:37:49:  * Hardware generation of mipmaps: yes 
     8010:37:49:  * Texture blending: yes 
     8110:37:49:  * Anisotropic texture filtering: yes 
     8210:37:49:  * Dot product texture operation: yes 
     8310:37:49:  * Cube mapping: yes 
     8410:37:49:  * Hardware stencil buffer: yes 
     8510:37:49:    - Stencil depth: 8 
     8610:37:49:    - Two sided stencil support: yes 
     8710:37:49:    - Wrap stencil values: yes 
     8810:37:49:  * Hardware vertex / index buffers: yes 
     8910:37:49:  * Vertex programs: yes 
     9010:37:49:    - Max vertex program version: vs_3_0 
     9110:37:49:  * Fragment programs: yes 
     9210:37:49:    - Max fragment program version: ps_3_0 
     9310:37:49:  * Texture Compression: yes 
     9410:37:49:    - DXT: yes 
     9510:37:49:    - VTC: no 
     9610:37:49:  * Scissor Rectangle: yes 
     9710:37:49:  * Hardware Occlusion Query: yes 
     9810:37:49:  * User clip planes: yes 
     9910:37:49:  * VET_UBYTE4 vertex element type: yes 
     10010:37:49:  * Infinite far plane projection: yes 
     10110:37:49:  * Hardware render-to-texture: yes 
     10210:37:49:  * Floating point textures: yes 
     10310:37:49:  * Non-power-of-two textures: yes 
     10410:37:49:  * Volume textures: yes 
     10510:37:49:  * Multiple Render Targets: 4 
     10610:37:49:  * Max Point Size: 8192 
     10710:37:49: *************************************** 
     10810:37:49: *** D3D9 : Subsystem Initialised OK *** 
     10910:37:49: *************************************** 
     11010:37:49: ResourceBackgroundQueue - threading disabled 
     11110:37:49: Particle Renderer Type 'billboard' registered 
     11210:37:49: Particle Renderer Type 'sprite' registered 
     11310: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 
     11410:37:49: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11510:37:49: Parsing scripts for resource group Autodetect 
     11610:37:49: Finished parsing scripts for resource group Autodetect 
     11710:37:49: Parsing scripts for resource group Bootstrap 
     11810:37:49: Parsing script OgreCore.material 
     11910:37:49: Parsing script OgreProfiler.material 
     12010:37:49: Parsing script Ogre.fontdef 
     12110:37:49: Parsing script OgreDebugPanel.overlay 
     12210: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. 
     12310: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. 
     12410: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. 
     12510:37:49: Font TrebuchetMSBoldusing texture size 512x512 
     12610:37:49: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12710:37:49: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12810:37:49: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12910:37:49: Parsing script OgreLoadingPanel.overlay 
     13010:37:49: Finished parsing scripts for resource group Bootstrap 
     13110:37:49: Parsing scripts for resource group General 
     13210:37:49: Parsing script GameTools.program 
     13310:37:49: Parsing script atlascube.material 
     13410:37:49: Parsing script diffscene.material 
     13510:37:49: An exception has been thrown! 
     136 
     137----------------------------------- 
     138Details: 
     139----------------------------------- 
     140Error #: 7 
     141Function: GpuProgramParameters::getParamIndex 
     142Description: Cannot find a parameter named lightcol5.  
     143File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     144Line: 768 
     145Stack unwinding: <<beginning of stack>> 
     14610: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----------------------------------- 
     149Details: 
     150----------------------------------- 
     151Error #: 7 
     152Function: GpuProgramParameters::getParamIndex 
     153Description: Cannot find a parameter named lightcol5.  
     154File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     155Line: 768 
     156Stack unwinding: <<beginning of stack>> 
     15710:37:49: An exception has been thrown! 
     158 
     159----------------------------------- 
     160Details: 
     161----------------------------------- 
     162Error #: 7 
     163Function: GpuProgramParameters::getParamIndex 
     164Description: Cannot find a parameter named lightcol6.  
     165File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     166Line: 768 
     167Stack unwinding: <<beginning of stack>> 
     16810: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----------------------------------- 
     171Details: 
     172----------------------------------- 
     173Error #: 7 
     174Function: GpuProgramParameters::getParamIndex 
     175Description: Cannot find a parameter named lightcol6.  
     176File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     177Line: 768 
     178Stack unwinding: <<beginning of stack>> 
     17910:37:49: An exception has been thrown! 
     180 
     181----------------------------------- 
     182Details: 
     183----------------------------------- 
     184Error #: 7 
     185Function: GpuProgramParameters::getParamIndex 
     186Description: Cannot find a parameter named lightcol7.  
     187File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     188Line: 768 
     189Stack unwinding: <<beginning of stack>> 
     19010: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----------------------------------- 
     193Details: 
     194----------------------------------- 
     195Error #: 7 
     196Function: GpuProgramParameters::getParamIndex 
     197Description: Cannot find a parameter named lightcol7.  
     198File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     199Line: 768 
     200Stack unwinding: <<beginning of stack>> 
     20110:37:49: An exception has been thrown! 
     202 
     203----------------------------------- 
     204Details: 
     205----------------------------------- 
     206Error #: 7 
     207Function: GpuProgramParameters::getParamIndex 
     208Description: Cannot find a parameter named lightcol8.  
     209File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     210Line: 768 
     211Stack unwinding: <<beginning of stack>> 
     21210: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----------------------------------- 
     215Details: 
     216----------------------------------- 
     217Error #: 7 
     218Function: GpuProgramParameters::getParamIndex 
     219Description: Cannot find a parameter named lightcol8.  
     220File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     221Line: 768 
     222Stack unwinding: <<beginning of stack>> 
     22310:37:49: An exception has been thrown! 
     224 
     225----------------------------------- 
     226Details: 
     227----------------------------------- 
     228Error #: 7 
     229Function: GpuProgramParameters::getParamIndex 
     230Description: Cannot find a parameter named lightpos5.  
     231File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     232Line: 768 
     233Stack unwinding: <<beginning of stack>> 
     23410: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----------------------------------- 
     237Details: 
     238----------------------------------- 
     239Error #: 7 
     240Function: GpuProgramParameters::getParamIndex 
     241Description: Cannot find a parameter named lightpos5.  
     242File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     243Line: 768 
     244Stack unwinding: <<beginning of stack>> 
     24510:37:49: An exception has been thrown! 
     246 
     247----------------------------------- 
     248Details: 
     249----------------------------------- 
     250Error #: 7 
     251Function: GpuProgramParameters::getParamIndex 
     252Description: Cannot find a parameter named lightpos6.  
     253File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     254Line: 768 
     255Stack unwinding: <<beginning of stack>> 
     25610: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----------------------------------- 
     259Details: 
     260----------------------------------- 
     261Error #: 7 
     262Function: GpuProgramParameters::getParamIndex 
     263Description: Cannot find a parameter named lightpos6.  
     264File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     265Line: 768 
     266Stack unwinding: <<beginning of stack>> 
     26710:37:49: An exception has been thrown! 
     268 
     269----------------------------------- 
     270Details: 
     271----------------------------------- 
     272Error #: 7 
     273Function: GpuProgramParameters::getParamIndex 
     274Description: Cannot find a parameter named lightpos7.  
     275File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     276Line: 768 
     277Stack unwinding: <<beginning of stack>> 
     27810: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----------------------------------- 
     281Details: 
     282----------------------------------- 
     283Error #: 7 
     284Function: GpuProgramParameters::getParamIndex 
     285Description: Cannot find a parameter named lightpos7.  
     286File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     287Line: 768 
     288Stack unwinding: <<beginning of stack>> 
     28910:37:49: An exception has been thrown! 
     290 
     291----------------------------------- 
     292Details: 
     293----------------------------------- 
     294Error #: 7 
     295Function: GpuProgramParameters::getParamIndex 
     296Description: Cannot find a parameter named lightpos8.  
     297File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     298Line: 768 
     299Stack unwinding: <<beginning of stack>> 
     30010: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----------------------------------- 
     303Details: 
     304----------------------------------- 
     305Error #: 7 
     306Function: GpuProgramParameters::getParamIndex 
     307Description: Cannot find a parameter named lightpos8.  
     308File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     309Line: 768 
     310Stack unwinding: <<beginning of stack>> 
     31110:37:49: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     31210:37:49: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     31310:37:49: Error in material pult at line 88 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 
     31410:37:49: Error in material pult at line 89 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 
     31510:37:49: Error in material pult at line 90 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.53846 
     31610:37:49: Error in material butorlap at line 122 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 
     31710:37:49: Error in material butorlap at line 123 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 
     31810:37:49: Parsing script Diffuse.material 
     31910:37:50: An exception has been thrown! 
    137320 
    138321----------------------------------- 
     
    145328Line: 768 
    146329Stack unwinding: <<beginning of stack>> 
    147 17:19:42: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     33010:37:50: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    148331 
    149332----------------------------------- 
     
    156339Line: 768 
    157340Stack unwinding: <<beginning of stack>> 
    158 17:19:44: An exception has been thrown! 
     34110:37:51: An exception has been thrown! 
    159342 
    160343----------------------------------- 
     
    167350Line: 768 
    168351Stack unwinding: <<beginning of stack>> 
    169 17:19:44: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     35210:37:51: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    170353 
    171354----------------------------------- 
     
    178361Line: 768 
    179362Stack unwinding: <<beginning of stack>> 
    180 17:19:53: An exception has been thrown! 
     36310:37:59: An exception has been thrown! 
    181364 
    182365----------------------------------- 
     
    189372Line: 768 
    190373Stack unwinding: <<beginning of stack>> 
    191 17:19:53: Error in material GameTools/Diffuse/use1 at line 215 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     37410:37:59: Error in material GameTools/Diffuse/use1 at line 215 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    192375 
    193376----------------------------------- 
     
    200383Line: 768 
    201384Stack unwinding: <<beginning of stack>> 
    202 17:19:53: Parsing script EnvMetals.material 
    203 17:19:53: An exception has been thrown! 
     38510:37:59: Parsing script EnvMetals.material 
     38610:37:59: An exception has been thrown! 
    204387 
    205388----------------------------------- 
     
    212395Line: 768 
    213396Stack unwinding: <<beginning of stack>> 
    214 17:19:53: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     39710:37:59: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    215398 
    216399----------------------------------- 
     
    223406Line: 768 
    224407Stack unwinding: <<beginning of stack>> 
    225 17:19:53: An exception has been thrown! 
     40810:37:59: An exception has been thrown! 
    226409 
    227410----------------------------------- 
     
    234417Line: 768 
    235418Stack unwinding: <<beginning of stack>> 
    236 17:19:53: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41910:37:59: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    237420 
    238421----------------------------------- 
     
    245428Line: 768 
    246429Stack unwinding: <<beginning of stack>> 
    247 17:19:53: An exception has been thrown! 
     43010:37:59: An exception has been thrown! 
    248431 
    249432----------------------------------- 
     
    256439Line: 768 
    257440Stack unwinding: <<beginning of stack>> 
    258 17:19:53: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     44110:37:59: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    259442 
    260443----------------------------------- 
     
    267450Line: 768 
    268451Stack unwinding: <<beginning of stack>> 
    269 17:19:53: An exception has been thrown! 
     45210:37:59: An exception has been thrown! 
    270453 
    271454----------------------------------- 
     
    278461Line: 768 
    279462Stack unwinding: <<beginning of stack>> 
    280 17:19:53: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     46310:37:59: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    281464 
    282465----------------------------------- 
     
    289472Line: 768 
    290473Stack unwinding: <<beginning of stack>> 
    291 17:19:53: Parsing script GameTools.material 
    292 17:19:53: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
    293 17:19:53: An exception has been thrown! 
     47410:37:59: Parsing script GameTools.material 
     47510:37:59: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
     47610:37:59: An exception has been thrown! 
    294477 
    295478----------------------------------- 
     
    302485Line: 768 
    303486Stack unwinding: <<beginning of stack>> 
    304 17:19:53: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     48710:37:59: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    305488 
    306489----------------------------------- 
     
    313496Line: 768 
    314497Stack unwinding: <<beginning of stack>> 
    315 17:19:53: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
    316 17:19:53: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    317 17:19:53: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
    318 17:19:54: Parsing script GameTools_HPS.material 
    319 17:19:54: An exception has been thrown! 
     49810:37:59: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
     49910:37:59: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     50010:37:59: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
     50110:37:59: Parsing script GameTools_HPS.material 
     50210:37:59: An exception has been thrown! 
    320503 
    321504----------------------------------- 
     
    328511Line: 768 
    329512Stack unwinding: <<beginning of stack>> 
    330 17: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! 
     51310: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! 
    331514 
    332515----------------------------------- 
     
    339522Line: 768 
    340523Stack unwinding: <<beginning of stack>> 
    341 17:19:54: An exception has been thrown! 
     52410:37:59: An exception has been thrown! 
    342525 
    343526----------------------------------- 
     
    350533Line: 768 
    351534Stack unwinding: <<beginning of stack>> 
    352 17: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! 
     53510: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! 
    353536 
    354537----------------------------------- 
     
    361544Line: 768 
    362545Stack unwinding: <<beginning of stack>> 
    363 17:19:54: An exception has been thrown! 
     54610:37:59: An exception has been thrown! 
    364547 
    365548----------------------------------- 
     
    372555Line: 768 
    373556Stack unwinding: <<beginning of stack>> 
    374 17: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! 
     55710: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! 
    375558 
    376559----------------------------------- 
     
    383566Line: 768 
    384567Stack unwinding: <<beginning of stack>> 
    385 17:19:54: An exception has been thrown! 
     56810:37:59: An exception has been thrown! 
    386569 
    387570----------------------------------- 
     
    394577Line: 768 
    395578Stack unwinding: <<beginning of stack>> 
    396 17: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! 
     57910: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! 
    397580 
    398581----------------------------------- 
     
    405588Line: 768 
    406589Stack unwinding: <<beginning of stack>> 
    407 17:19:54: An exception has been thrown! 
     59010:37:59: An exception has been thrown! 
    408591 
    409592----------------------------------- 
     
    416599Line: 768 
    417600Stack unwinding: <<beginning of stack>> 
    418 17: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! 
     60110: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! 
    419602 
    420603----------------------------------- 
     
    427610Line: 768 
    428611Stack unwinding: <<beginning of stack>> 
    429 17:19:54: An exception has been thrown! 
     61210:37:59: An exception has been thrown! 
    430613 
    431614----------------------------------- 
     
    438621Line: 768 
    439622Stack unwinding: <<beginning of stack>> 
    440 17: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! 
     62310: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! 
    441624 
    442625----------------------------------- 
     
    449632Line: 768 
    450633Stack unwinding: <<beginning of stack>> 
    451 17:19:54: An exception has been thrown! 
     63410:37:59: An exception has been thrown! 
    452635 
    453636----------------------------------- 
     
    460643Line: 768 
    461644Stack unwinding: <<beginning of stack>> 
    462 17:19:54: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     64510:37:59: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    463646 
    464647----------------------------------- 
     
    471654Line: 768 
    472655Stack unwinding: <<beginning of stack>> 
    473 17:19:54: Parsing script GlassHead.material 
    474 17:19:54: An exception has been thrown! 
     65610:37:59: Parsing script GlassHead.material 
     65710:37:59: An exception has been thrown! 
    475658 
    476659----------------------------------- 
     
    483666Line: 768 
    484667Stack unwinding: <<beginning of stack>> 
    485 17:19:54: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     66810:37:59: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    486669 
    487670----------------------------------- 
     
    494677Line: 768 
    495678Stack unwinding: <<beginning of stack>> 
    496 17: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 17:19:54: An exception has been thrown! 
     67910:37:59: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     68010:37:59: An exception has been thrown! 
    498681 
    499682----------------------------------- 
     
    506689Line: 768 
    507690Stack unwinding: <<beginning of stack>> 
    508 17:19:54: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69110:37:59: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    509692 
    510693----------------------------------- 
     
    517700Line: 768 
    518701Stack unwinding: <<beginning of stack>> 
    519 17:19:54: An exception has been thrown! 
     70210:37:59: An exception has been thrown! 
    520703 
    521704----------------------------------- 
     
    528711Line: 768 
    529712Stack unwinding: <<beginning of stack>> 
    530 17:19:54: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     71310:37:59: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    531714 
    532715----------------------------------- 
     
    539722Line: 768 
    540723Stack unwinding: <<beginning of stack>> 
    541 17:19:54: An exception has been thrown! 
     72410:37:59: An exception has been thrown! 
    542725 
    543726----------------------------------- 
     
    550733Line: 768 
    551734Stack unwinding: <<beginning of stack>> 
    552 17:19:54: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     73510:37:59: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    553736 
    554737----------------------------------- 
     
    561744Line: 768 
    562745Stack unwinding: <<beginning of stack>> 
    563 17:19:55: Parsing script Glow.material 
    564 17:19:55: An exception has been thrown! 
     74610:38:00: Parsing script Glow.material 
     74710:38:00: An exception has been thrown! 
    565748 
    566749----------------------------------- 
     
    573756Line: 768 
    574757Stack unwinding: <<beginning of stack>> 
    575 17:19:55: Error in material GameTools/ToneMap at line 211 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     75810:38:00: Error in material GameTools/ToneMap at line 211 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    576759 
    577760----------------------------------- 
     
    584767Line: 768 
    585768Stack unwinding: <<beginning of stack>> 
    586 17:19:55: Parsing script hangar.material 
    587 17:19:55: Parsing script kupola.material 
    588 17:19:55: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    589 17:19:55: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    590 17:19:55: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    591 17:19:55: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    592 17:19:55: Parsing script Ogre.material 
    593 17:19:55: Parsing script Particles.material 
    594 17:19:55: An exception has been thrown! 
     76910:38:00: Parsing script hangar.material 
     77010:38:00: Parsing script kupola.material 
     77110:38:00: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     77210:38:00: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     77310:38:00: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     77410:38:00: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     77510:38:00: Parsing script Ogre.material 
     77610:38:00: Parsing script Particles.material 
     77710:38:00: An exception has been thrown! 
    595778 
    596779----------------------------------- 
     
    603786Line: 768 
    604787Stack unwinding: <<beginning of stack>> 
    605 17:19:55: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     78810:38:00: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    606789 
    607790----------------------------------- 
     
    614797Line: 768 
    615798Stack unwinding: <<beginning of stack>> 
    616 17:19:55: An exception has been thrown! 
     79910:38:00: An exception has been thrown! 
    617800 
    618801----------------------------------- 
     
    625808Line: 768 
    626809Stack unwinding: <<beginning of stack>> 
    627 17:19:55: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     81010:38:00: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    628811 
    629812----------------------------------- 
     
    636819Line: 768 
    637820Stack 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. 
     82110:38:00: Parsing script RaytraceDemo.material 
     82210:38:00: Parsing script stairs.material 
     82310:38:00: Parsing script uvegfolyoso2.material 
     82410:38:00: An exception has been thrown! 
     825 
     826----------------------------------- 
     827Details: 
     828----------------------------------- 
     829Error #: 7 
     830Function: GpuProgramParameters::getParamIndex 
     831Description: Cannot find a parameter named lightcol5.  
     832File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     833Line: 768 
     834Stack unwinding: <<beginning of stack>> 
     83510: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----------------------------------- 
     838Details: 
     839----------------------------------- 
     840Error #: 7 
     841Function: GpuProgramParameters::getParamIndex 
     842Description: Cannot find a parameter named lightcol5.  
     843File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     844Line: 768 
     845Stack unwinding: <<beginning of stack>> 
     84610:38:00: An exception has been thrown! 
     847 
     848----------------------------------- 
     849Details: 
     850----------------------------------- 
     851Error #: 7 
     852Function: GpuProgramParameters::getParamIndex 
     853Description: Cannot find a parameter named lightcol6.  
     854File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     855Line: 768 
     856Stack unwinding: <<beginning of stack>> 
     85710: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----------------------------------- 
     860Details: 
     861----------------------------------- 
     862Error #: 7 
     863Function: GpuProgramParameters::getParamIndex 
     864Description: Cannot find a parameter named lightcol6.  
     865File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     866Line: 768 
     867Stack unwinding: <<beginning of stack>> 
     86810:38:00: An exception has been thrown! 
     869 
     870----------------------------------- 
     871Details: 
     872----------------------------------- 
     873Error #: 7 
     874Function: GpuProgramParameters::getParamIndex 
     875Description: Cannot find a parameter named lightcol7.  
     876File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     877Line: 768 
     878Stack unwinding: <<beginning of stack>> 
     87910: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----------------------------------- 
     882Details: 
     883----------------------------------- 
     884Error #: 7 
     885Function: GpuProgramParameters::getParamIndex 
     886Description: Cannot find a parameter named lightcol7.  
     887File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     888Line: 768 
     889Stack unwinding: <<beginning of stack>> 
     89010:38:00: An exception has been thrown! 
     891 
     892----------------------------------- 
     893Details: 
     894----------------------------------- 
     895Error #: 7 
     896Function: GpuProgramParameters::getParamIndex 
     897Description: Cannot find a parameter named lightcol8.  
     898File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     899Line: 768 
     900Stack unwinding: <<beginning of stack>> 
     90110: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----------------------------------- 
     904Details: 
     905----------------------------------- 
     906Error #: 7 
     907Function: GpuProgramParameters::getParamIndex 
     908Description: Cannot find a parameter named lightcol8.  
     909File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     910Line: 768 
     911Stack unwinding: <<beginning of stack>> 
     91210:38:00: An exception has been thrown! 
     913 
     914----------------------------------- 
     915Details: 
     916----------------------------------- 
     917Error #: 7 
     918Function: GpuProgramParameters::getParamIndex 
     919Description: Cannot find a parameter named lightpos5.  
     920File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     921Line: 768 
     922Stack unwinding: <<beginning of stack>> 
     92310: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----------------------------------- 
     926Details: 
     927----------------------------------- 
     928Error #: 7 
     929Function: GpuProgramParameters::getParamIndex 
     930Description: Cannot find a parameter named lightpos5.  
     931File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     932Line: 768 
     933Stack unwinding: <<beginning of stack>> 
     93410:38:00: An exception has been thrown! 
     935 
     936----------------------------------- 
     937Details: 
     938----------------------------------- 
     939Error #: 7 
     940Function: GpuProgramParameters::getParamIndex 
     941Description: Cannot find a parameter named lightpos6.  
     942File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     943Line: 768 
     944Stack unwinding: <<beginning of stack>> 
     94510: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----------------------------------- 
     948Details: 
     949----------------------------------- 
     950Error #: 7 
     951Function: GpuProgramParameters::getParamIndex 
     952Description: Cannot find a parameter named lightpos6.  
     953File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     954Line: 768 
     955Stack unwinding: <<beginning of stack>> 
     95610:38:00: An exception has been thrown! 
     957 
     958----------------------------------- 
     959Details: 
     960----------------------------------- 
     961Error #: 7 
     962Function: GpuProgramParameters::getParamIndex 
     963Description: Cannot find a parameter named lightpos7.  
     964File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     965Line: 768 
     966Stack unwinding: <<beginning of stack>> 
     96710: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----------------------------------- 
     970Details: 
     971----------------------------------- 
     972Error #: 7 
     973Function: GpuProgramParameters::getParamIndex 
     974Description: Cannot find a parameter named lightpos7.  
     975File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     976Line: 768 
     977Stack unwinding: <<beginning of stack>> 
     97810:38:00: An exception has been thrown! 
     979 
     980----------------------------------- 
     981Details: 
     982----------------------------------- 
     983Error #: 7 
     984Function: GpuProgramParameters::getParamIndex 
     985Description: Cannot find a parameter named lightpos8.  
     986File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     987Line: 768 
     988Stack unwinding: <<beginning of stack>> 
     98910: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----------------------------------- 
     992Details: 
     993----------------------------------- 
     994Error #: 7 
     995Function: GpuProgramParameters::getParamIndex 
     996Description: Cannot find a parameter named lightpos8.  
     997File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     998Line: 768 
     999Stack unwinding: <<beginning of stack>> 
     100010:38:00: An exception has been thrown! 
     1001 
     1002----------------------------------- 
     1003Details: 
     1004----------------------------------- 
     1005Error #: 7 
     1006Function: GpuProgramParameters::getParamIndex 
     1007Description: Cannot find a parameter named cameraPos.  
     1008File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1009Line: 768 
     1010Stack unwinding: <<beginning of stack>> 
     101110: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----------------------------------- 
     1014Details: 
     1015----------------------------------- 
     1016Error #: 7 
     1017Function: GpuProgramParameters::getParamIndex 
     1018Description: Cannot find a parameter named cameraPos.  
     1019File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1020Line: 768 
     1021Stack unwinding: <<beginning of stack>> 
     102210:38:00: An exception has been thrown! 
     1023 
     1024----------------------------------- 
     1025Details: 
     1026----------------------------------- 
     1027Error #: 7 
     1028Function: GpuProgramParameters::getParamIndex 
     1029Description: Cannot find a parameter named lightcol1.  
     1030File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1031Line: 768 
     1032Stack unwinding: <<beginning of stack>> 
     103310: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----------------------------------- 
     1036Details: 
     1037----------------------------------- 
     1038Error #: 7 
     1039Function: GpuProgramParameters::getParamIndex 
     1040Description: Cannot find a parameter named lightcol1.  
     1041File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1042Line: 768 
     1043Stack unwinding: <<beginning of stack>> 
     104410:38:00: An exception has been thrown! 
     1045 
     1046----------------------------------- 
     1047Details: 
     1048----------------------------------- 
     1049Error #: 7 
     1050Function: GpuProgramParameters::getParamIndex 
     1051Description: Cannot find a parameter named lightcol2.  
     1052File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1053Line: 768 
     1054Stack unwinding: <<beginning of stack>> 
     105510: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----------------------------------- 
     1058Details: 
     1059----------------------------------- 
     1060Error #: 7 
     1061Function: GpuProgramParameters::getParamIndex 
     1062Description: Cannot find a parameter named lightcol2.  
     1063File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1064Line: 768 
     1065Stack unwinding: <<beginning of stack>> 
     106610:38:00: An exception has been thrown! 
     1067 
     1068----------------------------------- 
     1069Details: 
     1070----------------------------------- 
     1071Error #: 7 
     1072Function: GpuProgramParameters::getParamIndex 
     1073Description: Cannot find a parameter named lightcol3.  
     1074File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1075Line: 768 
     1076Stack unwinding: <<beginning of stack>> 
     107710: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----------------------------------- 
     1080Details: 
     1081----------------------------------- 
     1082Error #: 7 
     1083Function: GpuProgramParameters::getParamIndex 
     1084Description: Cannot find a parameter named lightcol3.  
     1085File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1086Line: 768 
     1087Stack unwinding: <<beginning of stack>> 
     108810:38:00: An exception has been thrown! 
     1089 
     1090----------------------------------- 
     1091Details: 
     1092----------------------------------- 
     1093Error #: 7 
     1094Function: GpuProgramParameters::getParamIndex 
     1095Description: Cannot find a parameter named lightcol4.  
     1096File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1097Line: 768 
     1098Stack unwinding: <<beginning of stack>> 
     109910: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----------------------------------- 
     1102Details: 
     1103----------------------------------- 
     1104Error #: 7 
     1105Function: GpuProgramParameters::getParamIndex 
     1106Description: Cannot find a parameter named lightcol4.  
     1107File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1108Line: 768 
     1109Stack unwinding: <<beginning of stack>> 
     111010:38:00: An exception has been thrown! 
     1111 
     1112----------------------------------- 
     1113Details: 
     1114----------------------------------- 
     1115Error #: 7 
     1116Function: GpuProgramParameters::getParamIndex 
     1117Description: Cannot find a parameter named lightcol5.  
     1118File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1119Line: 768 
     1120Stack unwinding: <<beginning of stack>> 
     112110: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----------------------------------- 
     1124Details: 
     1125----------------------------------- 
     1126Error #: 7 
     1127Function: GpuProgramParameters::getParamIndex 
     1128Description: Cannot find a parameter named lightcol5.  
     1129File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1130Line: 768 
     1131Stack unwinding: <<beginning of stack>> 
     113210:38:00: An exception has been thrown! 
     1133 
     1134----------------------------------- 
     1135Details: 
     1136----------------------------------- 
     1137Error #: 7 
     1138Function: GpuProgramParameters::getParamIndex 
     1139Description: Cannot find a parameter named lightcol6.  
     1140File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1141Line: 768 
     1142Stack unwinding: <<beginning of stack>> 
     114310: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----------------------------------- 
     1146Details: 
     1147----------------------------------- 
     1148Error #: 7 
     1149Function: GpuProgramParameters::getParamIndex 
     1150Description: Cannot find a parameter named lightcol6.  
     1151File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1152Line: 768 
     1153Stack unwinding: <<beginning of stack>> 
     115410:38:00: An exception has been thrown! 
     1155 
     1156----------------------------------- 
     1157Details: 
     1158----------------------------------- 
     1159Error #: 7 
     1160Function: GpuProgramParameters::getParamIndex 
     1161Description: Cannot find a parameter named lightcol7.  
     1162File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1163Line: 768 
     1164Stack unwinding: <<beginning of stack>> 
     116510: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----------------------------------- 
     1168Details: 
     1169----------------------------------- 
     1170Error #: 7 
     1171Function: GpuProgramParameters::getParamIndex 
     1172Description: Cannot find a parameter named lightcol7.  
     1173File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1174Line: 768 
     1175Stack unwinding: <<beginning of stack>> 
     117610:38:00: An exception has been thrown! 
     1177 
     1178----------------------------------- 
     1179Details: 
     1180----------------------------------- 
     1181Error #: 7 
     1182Function: GpuProgramParameters::getParamIndex 
     1183Description: Cannot find a parameter named lightcol8.  
     1184File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1185Line: 768 
     1186Stack unwinding: <<beginning of stack>> 
     118710: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----------------------------------- 
     1190Details: 
     1191----------------------------------- 
     1192Error #: 7 
     1193Function: GpuProgramParameters::getParamIndex 
     1194Description: Cannot find a parameter named lightcol8.  
     1195File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1196Line: 768 
     1197Stack unwinding: <<beginning of stack>> 
     119810:38:00: An exception has been thrown! 
     1199 
     1200----------------------------------- 
     1201Details: 
     1202----------------------------------- 
     1203Error #: 7 
     1204Function: GpuProgramParameters::getParamIndex 
     1205Description: Cannot find a parameter named lightpos1.  
     1206File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1207Line: 768 
     1208Stack unwinding: <<beginning of stack>> 
     120910: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----------------------------------- 
     1212Details: 
     1213----------------------------------- 
     1214Error #: 7 
     1215Function: GpuProgramParameters::getParamIndex 
     1216Description: Cannot find a parameter named lightpos1.  
     1217File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1218Line: 768 
     1219Stack unwinding: <<beginning of stack>> 
     122010:38:00: An exception has been thrown! 
     1221 
     1222----------------------------------- 
     1223Details: 
     1224----------------------------------- 
     1225Error #: 7 
     1226Function: GpuProgramParameters::getParamIndex 
     1227Description: Cannot find a parameter named lightpos2.  
     1228File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1229Line: 768 
     1230Stack unwinding: <<beginning of stack>> 
     123110: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----------------------------------- 
     1234Details: 
     1235----------------------------------- 
     1236Error #: 7 
     1237Function: GpuProgramParameters::getParamIndex 
     1238Description: Cannot find a parameter named lightpos2.  
     1239File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1240Line: 768 
     1241Stack unwinding: <<beginning of stack>> 
     124210:38:00: An exception has been thrown! 
     1243 
     1244----------------------------------- 
     1245Details: 
     1246----------------------------------- 
     1247Error #: 7 
     1248Function: GpuProgramParameters::getParamIndex 
     1249Description: Cannot find a parameter named lightpos3.  
     1250File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1251Line: 768 
     1252Stack unwinding: <<beginning of stack>> 
     125310: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----------------------------------- 
     1256Details: 
     1257----------------------------------- 
     1258Error #: 7 
     1259Function: GpuProgramParameters::getParamIndex 
     1260Description: Cannot find a parameter named lightpos3.  
     1261File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1262Line: 768 
     1263Stack unwinding: <<beginning of stack>> 
     126410:38:00: An exception has been thrown! 
     1265 
     1266----------------------------------- 
     1267Details: 
     1268----------------------------------- 
     1269Error #: 7 
     1270Function: GpuProgramParameters::getParamIndex 
     1271Description: Cannot find a parameter named lightpos4.  
     1272File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1273Line: 768 
     1274Stack unwinding: <<beginning of stack>> 
     127510: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----------------------------------- 
     1278Details: 
     1279----------------------------------- 
     1280Error #: 7 
     1281Function: GpuProgramParameters::getParamIndex 
     1282Description: Cannot find a parameter named lightpos4.  
     1283File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1284Line: 768 
     1285Stack unwinding: <<beginning of stack>> 
     128610:38:00: An exception has been thrown! 
     1287 
     1288----------------------------------- 
     1289Details: 
     1290----------------------------------- 
     1291Error #: 7 
     1292Function: GpuProgramParameters::getParamIndex 
     1293Description: Cannot find a parameter named lightpos5.  
     1294File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1295Line: 768 
     1296Stack unwinding: <<beginning of stack>> 
     129710: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----------------------------------- 
     1300Details: 
     1301----------------------------------- 
     1302Error #: 7 
     1303Function: GpuProgramParameters::getParamIndex 
     1304Description: Cannot find a parameter named lightpos5.  
     1305File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1306Line: 768 
     1307Stack unwinding: <<beginning of stack>> 
     130810:38:00: An exception has been thrown! 
     1309 
     1310----------------------------------- 
     1311Details: 
     1312----------------------------------- 
     1313Error #: 7 
     1314Function: GpuProgramParameters::getParamIndex 
     1315Description: Cannot find a parameter named lightpos6.  
     1316File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1317Line: 768 
     1318Stack unwinding: <<beginning of stack>> 
     131910: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----------------------------------- 
     1322Details: 
     1323----------------------------------- 
     1324Error #: 7 
     1325Function: GpuProgramParameters::getParamIndex 
     1326Description: Cannot find a parameter named lightpos6.  
     1327File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1328Line: 768 
     1329Stack unwinding: <<beginning of stack>> 
     133010:38:00: An exception has been thrown! 
     1331 
     1332----------------------------------- 
     1333Details: 
     1334----------------------------------- 
     1335Error #: 7 
     1336Function: GpuProgramParameters::getParamIndex 
     1337Description: Cannot find a parameter named lightpos7.  
     1338File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1339Line: 768 
     1340Stack unwinding: <<beginning of stack>> 
     134110: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----------------------------------- 
     1344Details: 
     1345----------------------------------- 
     1346Error #: 7 
     1347Function: GpuProgramParameters::getParamIndex 
     1348Description: Cannot find a parameter named lightpos7.  
     1349File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1350Line: 768 
     1351Stack unwinding: <<beginning of stack>> 
     135210:38:00: An exception has been thrown! 
     1353 
     1354----------------------------------- 
     1355Details: 
     1356----------------------------------- 
     1357Error #: 7 
     1358Function: GpuProgramParameters::getParamIndex 
     1359Description: Cannot find a parameter named lightpos8.  
     1360File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1361Line: 768 
     1362Stack unwinding: <<beginning of stack>> 
     136310: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----------------------------------- 
     1366Details: 
     1367----------------------------------- 
     1368Error #: 7 
     1369Function: GpuProgramParameters::getParamIndex 
     1370Description: Cannot find a parameter named lightpos8.  
     1371File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1372Line: 768 
     1373Stack unwinding: <<beginning of stack>> 
     137410:38:00: An exception has been thrown! 
     1375 
     1376----------------------------------- 
     1377Details: 
     1378----------------------------------- 
     1379Error #: 7 
     1380Function: GpuProgramParameters::getParamIndex 
     1381Description: Cannot find a parameter named ambientLight.  
     1382File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1383Line: 768 
     1384Stack unwinding: <<beginning of stack>> 
     138510: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----------------------------------- 
     1388Details: 
     1389----------------------------------- 
     1390Error #: 7 
     1391Function: GpuProgramParameters::getParamIndex 
     1392Description: Cannot find a parameter named ambientLight.  
     1393File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1394Line: 768 
     1395Stack unwinding: <<beginning of stack>> 
     139610:38:00: An exception has been thrown! 
     1397 
     1398----------------------------------- 
     1399Details: 
     1400----------------------------------- 
     1401Error #: 7 
     1402Function: GpuProgramParameters::getParamIndex 
     1403Description: Cannot find a parameter named shininess.  
     1404File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1405Line: 768 
     1406Stack unwinding: <<beginning of stack>> 
     140710:38:00: Error in material Folyoso/PhongPlaneReflect at line 92 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 
     1408 
     1409----------------------------------- 
     1410Details: 
     1411----------------------------------- 
     1412Error #: 7 
     1413Function: GpuProgramParameters::getParamIndex 
     1414Description: Cannot find a parameter named shininess.  
     1415File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1416Line: 768 
     1417Stack unwinding: <<beginning of stack>> 
     141810:38:00: An exception has been thrown! 
     1419 
     1420----------------------------------- 
     1421Details: 
     1422----------------------------------- 
     1423Error #: 7 
     1424Function: GpuProgramParameters::getParamIndex 
     1425Description: Cannot find a parameter named ambient.  
     1426File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1427Line: 768 
     1428Stack unwinding: <<beginning of stack>> 
     142910:38:00: Error in material Folyoso/PhongPlaneReflect at line 93 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 
     1430 
     1431----------------------------------- 
     1432Details: 
     1433----------------------------------- 
     1434Error #: 7 
     1435Function: GpuProgramParameters::getParamIndex 
     1436Description: Cannot find a parameter named ambient.  
     1437File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1438Line: 768 
     1439Stack unwinding: <<beginning of stack>> 
     144010:38:00: An exception has been thrown! 
     1441 
     1442----------------------------------- 
     1443Details: 
     1444----------------------------------- 
     1445Error #: 7 
     1446Function: GpuProgramParameters::getParamIndex 
     1447Description: Cannot find a parameter named diffuse.  
     1448File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1449Line: 768 
     1450Stack unwinding: <<beginning of stack>> 
     145110:38:00: Error in material Folyoso/PhongPlaneReflect at line 94 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 
     1452 
     1453----------------------------------- 
     1454Details: 
     1455----------------------------------- 
     1456Error #: 7 
     1457Function: GpuProgramParameters::getParamIndex 
     1458Description: Cannot find a parameter named diffuse.  
     1459File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1460Line: 768 
     1461Stack unwinding: <<beginning of stack>> 
     146210:38:00: An exception has been thrown! 
     1463 
     1464----------------------------------- 
     1465Details: 
     1466----------------------------------- 
     1467Error #: 7 
     1468Function: GpuProgramParameters::getParamIndex 
     1469Description: Cannot find a parameter named specular.  
     1470File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1471Line: 768 
     1472Stack unwinding: <<beginning of stack>> 
     147310:38:00: Error in material Folyoso/PhongPlaneReflect at line 95 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 
     1474 
     1475----------------------------------- 
     1476Details: 
     1477----------------------------------- 
     1478Error #: 7 
     1479Function: GpuProgramParameters::getParamIndex 
     1480Description: Cannot find a parameter named specular.  
     1481File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1482Line: 768 
     1483Stack unwinding: <<beginning of stack>> 
     148410:38:00: Error in material Folyoso/PhongPlaneReflect at line 97 of uvegfolyoso2.material: Invalid param_named attribute - expected at least 3 parameters. 
     148510:38:00: An exception has been thrown! 
     1486 
     1487----------------------------------- 
     1488Details: 
     1489----------------------------------- 
     1490Error #: 7 
     1491Function: GpuProgramParameters::getParamIndex 
     1492Description: Cannot find a parameter named shininess.  
     1493File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1494Line: 768 
     1495Stack unwinding: <<beginning of stack>> 
     149610:38:00: Error in material uvegfolyoso_talaj at line 117 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 
     1497 
     1498----------------------------------- 
     1499Details: 
     1500----------------------------------- 
     1501Error #: 7 
     1502Function: GpuProgramParameters::getParamIndex 
     1503Description: Cannot find a parameter named shininess.  
     1504File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1505Line: 768 
     1506Stack unwinding: <<beginning of stack>> 
     150710:38:00: An exception has been thrown! 
     1508 
     1509----------------------------------- 
     1510Details: 
     1511----------------------------------- 
     1512Error #: 7 
     1513Function: GpuProgramParameters::getParamIndex 
     1514Description: Cannot find a parameter named ambient.  
     1515File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1516Line: 768 
     1517Stack unwinding: <<beginning of stack>> 
     151810:38:00: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 
     1519 
     1520----------------------------------- 
     1521Details: 
     1522----------------------------------- 
     1523Error #: 7 
     1524Function: GpuProgramParameters::getParamIndex 
     1525Description: Cannot find a parameter named ambient.  
     1526File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1527Line: 768 
     1528Stack unwinding: <<beginning of stack>> 
     152910:38:00: An exception has been thrown! 
     1530 
     1531----------------------------------- 
     1532Details: 
     1533----------------------------------- 
     1534Error #: 7 
     1535Function: GpuProgramParameters::getParamIndex 
     1536Description: Cannot find a parameter named diffuse.  
     1537File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1538Line: 768 
     1539Stack unwinding: <<beginning of stack>> 
     154010:38:00: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 
     1541 
     1542----------------------------------- 
     1543Details: 
     1544----------------------------------- 
     1545Error #: 7 
     1546Function: GpuProgramParameters::getParamIndex 
     1547Description: Cannot find a parameter named diffuse.  
     1548File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1549Line: 768 
     1550Stack unwinding: <<beginning of stack>> 
     155110:38:00: An exception has been thrown! 
     1552 
     1553----------------------------------- 
     1554Details: 
     1555----------------------------------- 
     1556Error #: 7 
     1557Function: GpuProgramParameters::getParamIndex 
     1558Description: Cannot find a parameter named specular.  
     1559File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1560Line: 768 
     1561Stack unwinding: <<beginning of stack>> 
     156210:38:00: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - An exception has been thrown! 
     1563 
     1564----------------------------------- 
     1565Details: 
     1566----------------------------------- 
     1567Error #: 7 
     1568Function: GpuProgramParameters::getParamIndex 
     1569Description: Cannot find a parameter named specular.  
     1570File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1571Line: 768 
     1572Stack unwinding: <<beginning of stack>> 
     157310:38:00: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     157410:38:00: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     157510:38:00: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     157610:38:00: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     157710:38:00: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     157810:38:00: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     157910:38:00: Parsing script X3D.material 
     158010:38:00: Parsing script GameTools_Glow.compositor 
     158110:38:00: Parsing script GameTools_ToneMap.compositor 
     158210:38:00: Parsing script sample.fontdef 
     158310:38:00: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     158410:38:00: Parsing script GameTools.particle 
     158510:38:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     158610:38:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     158710:38:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     158810:38:00: Parsing script Compositor.overlay 
     158910:38:00: Parsing script DP3.overlay 
     159010:38:00: Parsing script Example-CubeMapping.overlay 
     159110:38:00: Parsing script Example-DynTex.overlay 
     159210:38:00: Parsing script Example-Water.overlay 
     159310:38:00: Parsing script FullScreen.overlay 
     159410:38:00: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     159510:38:00: Parsing script Shadows.overlay 
     159610:38:00: Finished parsing scripts for resource group General 
     159710:38:00: Parsing scripts for resource group Internal 
     159810:38:00: Finished parsing scripts for resource group Internal 
     159910: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. 
     160010: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 
     160110:38:00: Viewport for camera 'ReflectCamFloor', actual dimensions L: 0 T: 0 W: 512 H: 512 
     160210:38:00: Mesh: Loading uvegfolyoso2.mesh. 
     160310:38:01: Texture: background.jpg: Loading 1 faces(PF_B8G8R8,2048x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x512x1. 
     160410:38:01: Win32Input8: DirectInput Activation Starts 
     160510:38:01: Win32Input8: Establishing keyboard input. 
     160610:38:01: Win32Input8: Keyboard input established. 
     160710:38:01: Win32Input8: Initializing mouse input in immediate mode. 
     160810:38:01: Win32Input8: Mouse input in immediate mode initialized. 
     160910:38:01: Win32Input8: DirectInput OK. 
     161010:38:19: Unregistering ResourceManager for type BspLevel 
     161110:38:19: Render Target 'rtt/2261600' Average FPS: 21.436 Best FPS: 31.4961 Worst FPS: 20.8748 
     161210:38:19: *-*-* OGRE Shutdown 
     161310:38:19: Unregistering ResourceManager for type Compositor 
     161410:38:19: Unregistering ResourceManager for type Font 
     161510:38:19: Unregistering ResourceManager for type Skeleton 
     161610:38:19: Unregistering ResourceManager for type Mesh 
     161710:38:19: Unregistering ResourceManager for type HighLevelGpuProgram 
     161810:38:19: Unloading library .\Plugin_CgProgramManager 
     161910:38:19: Unloading library .\Plugin_OctreeSceneManager 
     162010:38:19: Unloading library .\Plugin_BSPSceneManager 
     162110:38:19: Unloading library .\Plugin_ParticleFX 
     162210:38:19: Render Target 'OGRE Render Window' Average FPS: 21.4837 Best FPS: 31.8091 Worst FPS: 20.8955 
     162310:38:19: D3D9 : Shutting down cleanly. 
     162410:38:19: Unregistering ResourceManager for type Texture 
     162510:38:19: Unregistering ResourceManager for type GpuProgram 
     162610:38:19: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     162710:38:19: Unloading library .\RenderSystem_Direct3D9 
     162810:38:19: Unregistering ResourceManager for type Material 
     162910:38:19: Unloading library OgrePlatform_d.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log

    r1590 r1598  
    11 ----------------------------------------------------------------------------------------------------------------------------------  
    2 |                                          Memory leak report for:  10/09/2006 11:32:47                                            | 
     2|                                          Memory leak report for:  10/10/2006 10:38:19                                            | 
    33 ----------------------------------------------------------------------------------------------------------------------------------  
    44 
    55 
    6 256 memory leaks found: 
     6238 memory leaks found: 
    77 
    88Alloc.   Addr       Size       Addr       Size                        BreakOn BreakOn               
    99Number Reported   Reported    Actual     Actual     Unused    Method  Dealloc Realloc Allocated by  
    1010------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------  
    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) ?? 
     11022323 0x00CD7AB0 0x00000030 0x00CD7AA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     12022324 0x00CD7B30 0x00000030 0x00CD7B20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     13022325 0x00CD7BB0 0x00000030 0x00CD7BA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     14022327 0x00CD7C30 0x0000004C 0x00CD7C20 0x0000006C 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
     15022328 0x00CD7CC8 0x00000030 0x00CD7CB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     16022329 0x00CD7D48 0x00000030 0x00CD7D38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     17022330 0x00CD7DC8 0x00000030 0x00CD7DB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     18022331 0x00CD7E48 0x00000030 0x00CD7E38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     19022332 0x00CD7EC8 0x00000030 0x00CD7EB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     20022333 0x00CD7F48 0x00000030 0x00CD7F38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     21022334 0x00CD7FC8 0x00000030 0x00CD7FB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     22022335 0x00CD8048 0x00000030 0x00CD8038 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     23022336 0x00CD80C8 0x00000030 0x00CD80B8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     24022337 0x00CD8148 0x0000000C 0x00CD8138 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     25022338 0x00CD81A0 0x0000007C 0x00CD8190 0x0000009C 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
     26022339 0x00CD8268 0x00000030 0x00CD8258 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     27022340 0x00CD82E8 0x00000030 0x00CD82D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     28022341 0x00CD8368 0x00000030 0x00CD8358 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     29022342 0x00CD83E8 0x00000030 0x00CD83D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     30022343 0x00CD8468 0x00000030 0x00CD8458 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     31022344 0x00CD84E8 0x00000030 0x00CD84D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     32022345 0x00CD8568 0x00000030 0x00CD8558 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     33022346 0x00CD85E8 0x00000030 0x00CD85D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     34022347 0x00CD8668 0x00000030 0x00CD8658 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     35022310 0x00CD8A30 0x00000030 0x00CD8A20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     36022311 0x00CD8AB0 0x00000030 0x00CD8AA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     37022312 0x00CD8B30 0x00000030 0x00CD8B20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     38022313 0x00CD8BB0 0x00000030 0x00CD8BA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     39022314 0x00CD8C30 0x00000030 0x00CD8C20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     40022315 0x00CD8CB0 0x00000030 0x00CD8CA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     41022287 0x00CD8DB8 0x00000144 0x00CD8DA8 0x00000164 0x00000000 new         N       N    ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 
     42022298 0x00CD8F48 0x00000018 0x00CD8F38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     43022299 0x00CD8FB0 0x00000018 0x00CD8FA0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     44022292 0x00CD91E0 0x00000018 0x00CD91D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     45022306 0x00CD9618 0x00000018 0x00CD9608 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     46022307 0x00CD9680 0x00000048 0x00CD9670 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 
     47022294 0x00CD9788 0x00000018 0x00CD9778 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     48022295 0x00CD97F0 0x00000008 0x00CD97E0 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
     49022289 0x00CD9E80 0x00000018 0x00CD9E70 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     50022308 0x00CE1038 0x00000030 0x00CE1028 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     51022309 0x00CE10B8 0x00000030 0x00CE10A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     52022316 0x00CE1138 0x0000000C 0x00CE1128 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     53022290 0x00CF2D98 0x0000000C 0x00CF2D88 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     54022317 0x00D0D260 0x00000048 0x00D0D250 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 
     55022318 0x00D0D2F8 0x00000030 0x00D0D2E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     56022319 0x00D0D378 0x00000030 0x00D0D368 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     57022320 0x00D0D3F8 0x00000030 0x00D0D3E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     58022321 0x00D0D478 0x00000030 0x00D0D468 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     59022322 0x00D0D4F8 0x00000030 0x00D0D4E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     60022326 0x00D0D578 0x0000000C 0x00D0D568 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     61022348 0x00D29B58 0x00000030 0x00D29B48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     62022349 0x00D29BD8 0x00000030 0x00D29BC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     63022350 0x00D29C58 0x00000030 0x00D29C48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     64022351 0x00D29CD8 0x0000000C 0x00D29CC8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     65022352 0x00D29D30 0x00000068 0x00D29D20 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
     66022353 0x00D29DE8 0x00000030 0x00D29DD8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     67022354 0x00D29E68 0x00000030 0x00D29E58 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     68022355 0x00D29F38 0x00000030 0x00D29F28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     69022356 0x00D2A008 0x00000030 0x00D29FF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     70022357 0x00D2A0D8 0x0000000C 0x00D2A0C8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     71022358 0x00D2A130 0x00000068 0x00D2A120 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
     72022359 0x00D2A1E8 0x00000030 0x00D2A1D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     73022360 0x00D2A268 0x00000030 0x00D2A258 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     74022361 0x00D2A338 0x00000030 0x00D2A328 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     75022362 0x00D2A408 0x00000030 0x00D2A3F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     76022363 0x00D2A4D8 0x0000000C 0x00D2A4C8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     77022364 0x00D2A530 0x00000030 0x00D2A520 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
     78022365 0x00D2A5B0 0x00000030 0x00D2A5A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     79022366 0x00D2A630 0x00000030 0x00D2A620 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     80022367 0x00D2A6B0 0x0000000C 0x00D2A6A0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     81022368 0x00D2A708 0x00000030 0x00D2A6F8 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
     82022369 0x00D2A788 0x00000030 0x00D2A778 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     83022370 0x00D2A808 0x00000030 0x00D2A7F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     84022371 0x00D2A888 0x0000000C 0x00D2A878 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     85022372 0x00D2A8E0 0x000000B4 0x00D2A8D0 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
     86022373 0x00D2A9E0 0x00000030 0x00D2A9D0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     87022374 0x00D2AA60 0x00000030 0x00D2AA50 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     88007634 0x00D43C78 0x00000028 0x00D43C68 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     89007635 0x00D44310 0x00000048 0x00D44300 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     90007640 0x00D44430 0x00000048 0x00D44420 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     91007644 0x00D444C8 0x00000048 0x00D444B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     92007648 0x00D44560 0x00000028 0x00D44550 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     93007649 0x00D445D8 0x00000048 0x00D445C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     94007654 0x00D446C8 0x00000048 0x00D446B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     95007662 0x00D44760 0x00000048 0x00D44750 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     96007658 0x00D45BC0 0x00000048 0x00D45BB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     97007666 0x00D45C58 0x00000048 0x00D45C48 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     98007670 0x00D45CF0 0x00000048 0x00D45CE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     99007674 0x00D45D88 0x00000048 0x00D45D78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     100007873 0x00D46E58 0x00000028 0x00D46E48 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     101007874 0x00D47488 0x00000048 0x00D47478 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     102007879 0x00D47520 0x00000048 0x00D47510 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     103007883 0x00D475B8 0x00000048 0x00D475A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     104007887 0x00D476A0 0x00000028 0x00D47690 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     105007888 0x00D47718 0x00000048 0x00D47708 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     106007893 0x00D47808 0x00000048 0x00D477F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     107007897 0x00D478F0 0x00000048 0x00D478E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     108007901 0x00D47988 0x00000048 0x00D47978 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     109007905 0x00D47A20 0x00000048 0x00D47A10 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     110007909 0x00D47AB8 0x00000048 0x00D47AA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     111007913 0x00D47B50 0x00000048 0x00D47B40 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     112008074 0x00D48C58 0x00000028 0x00D48C48 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     113008075 0x00D49378 0x00000048 0x00D49368 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     114008096 0x00D49410 0x00000028 0x00D49400 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     115008080 0x00D49498 0x00000048 0x00D49488 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     116008084 0x00D49530 0x00000048 0x00D49520 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     117008088 0x00D495C8 0x00000048 0x00D495B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     118008092 0x00D49660 0x00000048 0x00D49650 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     119008097 0x00D496F8 0x00000048 0x00D496E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     120008102 0x00D49870 0x00000048 0x00D49860 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     121008106 0x00D49908 0x00000048 0x00D498F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     122008110 0x00D49A28 0x00000048 0x00D49A18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     123008114 0x00D49AC0 0x00000048 0x00D49AB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     124008118 0x00D49B58 0x00000048 0x00D49B48 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     125008122 0x00D49BF0 0x00000048 0x00D49BE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     126008277 0x00D4A038 0x00000048 0x00D4A028 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     127008282 0x00D4A1B0 0x00000048 0x00D4A1A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     128008286 0x00D4A248 0x00000048 0x00D4A238 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     129008290 0x00D4A2E0 0x00000048 0x00D4A2D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     130008444 0x00D4ADC8 0x00000048 0x00D4ADB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     131008448 0x00D4AE60 0x00000048 0x00D4AE50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     132008452 0x00D4AEF8 0x00000048 0x00D4AEE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     133008456 0x00D4AF90 0x00000028 0x00D4AF80 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     134008457 0x00D4B008 0x00000048 0x00D4AFF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     135008462 0x00D4B0F8 0x00000048 0x00D4B0E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     136008466 0x00D4B190 0x00000048 0x00D4B180 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     137008470 0x00D4B228 0x00000048 0x00D4B218 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     138022293 0x00D4CF78 0x00000030 0x00D4CF68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     139008258 0x00D5E678 0x00000028 0x00D5E668 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     140008259 0x00D5ED10 0x00000048 0x00D5ED00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     141008264 0x00D5EDA8 0x00000048 0x00D5ED98 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     142008268 0x00D5EE40 0x00000048 0x00D5EE30 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     143008272 0x00D5EED8 0x00000048 0x00D5EEC8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     144008276 0x00D5EF70 0x00000028 0x00D5EF60 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     145008610 0x00D5F748 0x00000028 0x00D5F738 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     146008611 0x00D5FDE0 0x00000048 0x00D5FDD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     147008616 0x00D5FE78 0x00000048 0x00D5FE68 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     148008620 0x00D5FF10 0x00000048 0x00D5FF00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     149008624 0x00D5FFA8 0x00000048 0x00D5FF98 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     150008628 0x00D60040 0x00000028 0x00D60030 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     151008629 0x00D600B8 0x00000048 0x00D600A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     152008634 0x00D60230 0x00000048 0x00D60220 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     153008638 0x00D602C8 0x00000048 0x00D602B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     154008642 0x00D60360 0x00000048 0x00D60350 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     155008439 0x00D64D40 0x00000048 0x00D64D30 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     156008438 0x00D6CFC0 0x00000028 0x00D6CFB0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     157008783 0x00D6D290 0x00000028 0x00D6D280 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     158008784 0x00D6D308 0x00000048 0x00D6D2F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     159008789 0x00D6D3F0 0x00000048 0x00D6D3E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     160008793 0x00D6D488 0x00000048 0x00D6D478 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     161008797 0x00D6D520 0x00000048 0x00D6D510 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     162008801 0x00D6D5B8 0x00000028 0x00D6D5A8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     163008802 0x00D6D630 0x00000048 0x00D6D620 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     164008807 0x00D6D720 0x00000048 0x00D6D710 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     165008811 0x00D6D7B8 0x00000048 0x00D6D7A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     166008815 0x00D6D850 0x00000048 0x00D6D840 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     167009203 0x01BE3060 0x00000028 0x01BE3050 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     168009204 0x01BE30D8 0x00000048 0x01BE30C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     169009209 0x01BE32E8 0x00000048 0x01BE32D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     170010045 0x01BF88F8 0x00000028 0x01BF88E8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     171010046 0x01BF8A08 0x00000048 0x01BF89F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     172010051 0x01BF8AF0 0x00000048 0x01BF8AE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     173010055 0x01BF8BD8 0x00000048 0x01BF8BC8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     174010059 0x01BF8C70 0x00000048 0x01BF8C60 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     175010226 0x01C02478 0x00000048 0x01C02468 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     176010231 0x01C02560 0x00000048 0x01C02550 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     177010235 0x01C025F8 0x00000048 0x01C025E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     178010239 0x01C02690 0x00000048 0x01C02680 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     179010243 0x01C02728 0x00000048 0x01C02718 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     180010247 0x01C02810 0x00000028 0x01C02800 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     181010248 0x01C02888 0x00000048 0x01C02878 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     182010253 0x01C02978 0x00000048 0x01C02968 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     183010257 0x01C02A10 0x00000028 0x01C02A00 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     184010258 0x01C02A88 0x00000048 0x01C02A78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     185010263 0x01C02B78 0x00000048 0x01C02B68 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     186010267 0x01C02C10 0x00000048 0x01C02C00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     187010225 0x01C03B80 0x00000028 0x01C03B70 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     188011051 0x01C0F308 0x00000028 0x01C0F2F8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     189011065 0x01C1BE30 0x00000028 0x01C1BE20 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     190011052 0x01C1BEB8 0x00000048 0x01C1BEA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     191011079 0x01C1BF50 0x00000028 0x01C1BF40 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     192011057 0x01C1BFD8 0x00000048 0x01C1BFC8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     193011061 0x01C1C070 0x00000048 0x01C1C060 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     194011066 0x01C1C108 0x00000048 0x01C1C0F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     195011071 0x01C1C228 0x00000048 0x01C1C218 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     196011075 0x01C1C2C0 0x00000048 0x01C1C2B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     197011080 0x01C1C358 0x00000048 0x01C1C348 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     198011085 0x01C1C478 0x00000048 0x01C1C468 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     199011089 0x01C1C510 0x00000048 0x01C1C500 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     200011093 0x01C1C5F8 0x00000048 0x01C1C5E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     201012206 0x01C1FF98 0x00000028 0x01C1FF88 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     202012207 0x01C20010 0x00000048 0x01C20000 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     203012212 0x01C20220 0x00000048 0x01C20210 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     204011981 0x01C40008 0x00000028 0x01C3FFF8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     205011982 0x01C40080 0x00000048 0x01C40070 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     206012057 0x01C40118 0x00000048 0x01C40108 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     207012051 0x01C40A90 0x00000028 0x01C40A80 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     208012052 0x01C40B08 0x00000048 0x01C40AF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     209013075 0x01C5D1E0 0x00000028 0x01C5D1D0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     210013076 0x01C5D258 0x00000048 0x01C5D248 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     211013081 0x01C5D390 0x00000048 0x01C5D380 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     212013085 0x01C5D478 0x00000048 0x01C5D468 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     213022375 0x01C72688 0x00000030 0x01C72678 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     214022376 0x01C72708 0x00000030 0x01C726F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     215022377 0x01C72788 0x00000030 0x01C72778 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     216022378 0x01C72808 0x00000030 0x01C727F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     217022379 0x01C72888 0x00000030 0x01C72878 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     218022380 0x01C72908 0x00000030 0x01C728F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     219022381 0x01C72988 0x00000030 0x01C72978 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     220022382 0x01C72A08 0x00000030 0x01C729F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     221022383 0x01C72A88 0x00000030 0x01C72A78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     222022384 0x01C72B08 0x0000000C 0x01C72AF8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     223022385 0x01C72B60 0x00000080 0x01C72B50 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
     224022386 0x01C72C30 0x00000030 0x01C72C20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     225022387 0x01C72CB0 0x00000030 0x01C72CA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     226022388 0x01C72D30 0x00000030 0x01C72D20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     227022389 0x01C72DB0 0x00000030 0x01C72DA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     228022390 0x01C72E30 0x00000030 0x01C72E20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     229022391 0x01C72EB0 0x00000030 0x01C72EA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     230022392 0x01C72F80 0x00000030 0x01C72F70 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     231022393 0x01C73050 0x00000030 0x01C73040 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     232022394 0x01C730D0 0x00000030 0x01C730C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     233022395 0x01C73150 0x00000030 0x01C73140 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     234022396 0x01C731D0 0x00000030 0x01C731C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     235022397 0x01C732A0 0x0000000C 0x01C73290 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     236022398 0x01C732F8 0x0000021C 0x01C732E8 0x0000023C 0x00000000 new         N       N    diffusetest.h(449) RaytraceDemoApplication::createScene2 
     237022304 0x01CA21B0 0x00000018 0x01CA21A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     238022305 0x01CA2218 0x00000018 0x01CA2208 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     239022291 0x01CBE298 0x00000018 0x01CBE288 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     240022302 0x01CBF088 0x00000018 0x01CBF078 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     241022303 0x01CBF0F0 0x00000018 0x01CBF0E0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     242022423 0x01CC7F78 0x00000014 0x01CC7F68 0x00000034 0x00000000 new         N       N    diffusetest.h(495) RaytraceDemoApplication::createScene2 
     243022288 0x01CCF910 0x0000000C 0x01CCF900 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     244022300 0x01CCF9C0 0x00000018 0x01CCF9B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     245022301 0x01CCFA28 0x00000018 0x01CCFA18 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     246022296 0x01CCFB20 0x00000018 0x01CCFB10 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     247022297 0x01CCFB88 0x00000018 0x01CCFB78 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     248023254 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  
    11-------------------------------------------------------------------------------- 
    22 
    3       OgreMemory.log - Memory logging file created on Mon Oct 09 17:19:36 2006 
     3      OgreMemory.log - Memory logging file created on Tue Oct 10 10:37:48 2006 
    44 
    55-------------------------------------------------------------------------------- 
  • 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! 
     110:45:35: Creating resource group General 
     210:45:35: Creating resource group Internal 
     310:45:35: Creating resource group Autodetect 
     410:45:35: Registering ResourceManager for type Material 
     510:45:35: Registering ResourceManager for type Mesh 
     610:45:35: Registering ResourceManager for type Skeleton 
     710:45:35: MovableObjectFactory for type 'ParticleSystem' registered. 
     810:45:35: Loading library OgrePlatform.dll 
     910:45:35: OverlayElementFactory for type Panel registered. 
     1010:45:35: OverlayElementFactory for type BorderPanel registered. 
     1110:45:35: OverlayElementFactory for type TextArea registered. 
     1210:45:35: Registering ResourceManager for type Font 
     1310:45:35: ArchiveFactory for archive type FileSystem registered. 
     1410:45:35: ArchiveFactory for archive type Zip registered. 
     1510:45:35: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1610: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  
     1710:45:35: Registering ResourceManager for type HighLevelGpuProgram 
     1810:45:35: Registering ResourceManager for type Compositor 
     1910:45:35: MovableObjectFactory for type 'Entity' registered. 
     2010:45:35: MovableObjectFactory for type 'Light' registered. 
     2110:45:35: MovableObjectFactory for type 'BillboardSet' registered. 
     2210:45:35: MovableObjectFactory for type 'ManualObject' registered. 
     2310:45:35: MovableObjectFactory for type 'BillboardChain' registered. 
     2410:45:35: MovableObjectFactory for type 'RibbonTrail' registered. 
     2510:45:35: Loading library .\RenderSystem_Direct3D9 
     2610:45:35: D3D9 : Direct3D9 Rendering Subsystem created. 
     2710:45:35: D3D9: Driver Detection Starts 
     2810:45:35: D3D9: Driver Detection Ends 
     2910:45:35: Loading library .\Plugin_ParticleFX 
     3010:45:35: Particle Emitter Type 'Point' registered 
     3110:45:35: Particle Emitter Type 'Box' registered 
     3210:45:35: Particle Emitter Type 'Ellipsoid' registered 
     3310:45:35: Particle Emitter Type 'Cylinder' registered 
     3410:45:35: Particle Emitter Type 'Ring' registered 
     3510:45:35: Particle Emitter Type 'HollowEllipsoid' registered 
     3610:45:35: Particle Affector Type 'LinearForce' registered 
     3710:45:35: Particle Affector Type 'ColourFader' registered 
     3810:45:35: Particle Affector Type 'ColourFader2' registered 
     3910:45:35: Particle Affector Type 'ColourImage' registered 
     4010:45:35: Particle Affector Type 'ColourInterpolator' registered 
     4110:45:35: Particle Affector Type 'Scaler' registered 
     4210:45:35: Particle Affector Type 'Rotator' registered 
     4310:45:35: Particle Affector Type 'DirectionRandomiser' registered 
     4410:45:35: Particle Affector Type 'DeflectorPlane' registered 
     4510:45:35: Loading library .\Plugin_BSPSceneManager 
     4610:45:35: Registering ResourceManager for type BspLevel 
     4710:45:35: Loading library .\Plugin_OctreeSceneManager 
     4810:45:35: Loading library .\Plugin_CgProgramManager 
     4910:45:35: *-*-* OGRE Initialising 
     5010:45:35: *-*-* Version 1.2.0 (Dagon) 
     5110:45:35: Creating resource group Bootstrap 
     5210:45:35: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5310:45:35: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5410:45:35: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5510:45:35: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5610:45:35: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5710:45:35: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5810:45:35: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5910:45:35: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6010:45:35: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6110:45:35: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6210:45:35: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6310:45:35: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6410:45:35: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6510:45:35: D3D9 : RenderSystem Option: Anti aliasing = None 
     6610:45:35: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6710:45:35: D3D9 : RenderSystem Option: Full Screen = No 
     6810:45:35: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
     6910:45:35: D3D9 : RenderSystem Option: VSync = No 
     7010:45:35: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7110:45:37: D3D9 : Subsystem Initialising 
     7210:45:37: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7310:45:37: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7410: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. 
     7510:45:37: Registering ResourceManager for type Texture 
     7610:45:37: Registering ResourceManager for type GpuProgram 
     7710:45:37: RenderSystem capabilities 
     7810:45:37: ------------------------- 
     7910:45:37:  * Hardware generation of mipmaps: yes 
     8010:45:37:  * Texture blending: yes 
     8110:45:37:  * Anisotropic texture filtering: yes 
     8210:45:37:  * Dot product texture operation: yes 
     8310:45:37:  * Cube mapping: yes 
     8410:45:37:  * Hardware stencil buffer: yes 
     8510:45:37:    - Stencil depth: 8 
     8610:45:37:    - Two sided stencil support: yes 
     8710:45:37:    - Wrap stencil values: yes 
     8810:45:37:  * Hardware vertex / index buffers: yes 
     8910:45:37:  * Vertex programs: yes 
     9010:45:37:    - Max vertex program version: vs_3_0 
     9110:45:37:  * Fragment programs: yes 
     9210:45:37:    - Max fragment program version: ps_3_0 
     9310:45:37:  * Texture Compression: yes 
     9410:45:37:    - DXT: yes 
     9510:45:37:    - VTC: no 
     9610:45:37:  * Scissor Rectangle: yes 
     9710:45:37:  * Hardware Occlusion Query: yes 
     9810:45:37:  * User clip planes: yes 
     9910:45:37:  * VET_UBYTE4 vertex element type: yes 
     10010:45:37:  * Infinite far plane projection: yes 
     10110:45:37:  * Hardware render-to-texture: yes 
     10210:45:37:  * Floating point textures: yes 
     10310:45:37:  * Non-power-of-two textures: yes 
     10410:45:37:  * Volume textures: yes 
     10510:45:37:  * Multiple Render Targets: 4 
     10610:45:37:  * Max Point Size: 8192 
     10710:45:37: *************************************** 
     10810:45:37: *** D3D9 : Subsystem Initialised OK *** 
     10910:45:37: *************************************** 
     11010:45:37: ResourceBackgroundQueue - threading disabled 
     11110:45:37: Particle Renderer Type 'billboard' registered 
     11210:45:37: Particle Renderer Type 'sprite' registered 
     11310: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 
     11410:45:37: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11510:45:37: Parsing scripts for resource group Autodetect 
     11610:45:37: Finished parsing scripts for resource group Autodetect 
     11710:45:37: Parsing scripts for resource group Bootstrap 
     11810:45:37: Parsing script OgreCore.material 
     11910:45:37: Parsing script OgreProfiler.material 
     12010:45:37: Parsing script Ogre.fontdef 
     12110:45:37: Parsing script OgreDebugPanel.overlay 
     12210: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. 
     12310: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. 
     12410: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. 
     12510:45:37: Font TrebuchetMSBoldusing texture size 512x512 
     12610:45:37: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12710:45:37: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12810:45:37: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12910:45:37: Parsing script OgreLoadingPanel.overlay 
     13010:45:37: Finished parsing scripts for resource group Bootstrap 
     13110:45:37: Parsing scripts for resource group General 
     13210:45:37: Parsing script GameTools.program 
     13310:45:37: Parsing script atlascube.material 
     13410:45:37: Parsing script diffscene.material 
     13510:45:37: An exception has been thrown! 
     136 
     137----------------------------------- 
     138Details: 
     139----------------------------------- 
     140Error #: 7 
     141Function: GpuProgramParameters::getParamIndex 
     142Description: Cannot find a parameter named lightcol5.  
     143File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     144Line: 768 
     145Stack unwinding: <<beginning of stack>> 
     14610: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----------------------------------- 
     149Details: 
     150----------------------------------- 
     151Error #: 7 
     152Function: GpuProgramParameters::getParamIndex 
     153Description: Cannot find a parameter named lightcol5.  
     154File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     155Line: 768 
     156Stack unwinding: <<beginning of stack>> 
     15710:45:37: An exception has been thrown! 
     158 
     159----------------------------------- 
     160Details: 
     161----------------------------------- 
     162Error #: 7 
     163Function: GpuProgramParameters::getParamIndex 
     164Description: Cannot find a parameter named lightcol6.  
     165File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     166Line: 768 
     167Stack unwinding: <<beginning of stack>> 
     16810: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----------------------------------- 
     171Details: 
     172----------------------------------- 
     173Error #: 7 
     174Function: GpuProgramParameters::getParamIndex 
     175Description: Cannot find a parameter named lightcol6.  
     176File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     177Line: 768 
     178Stack unwinding: <<beginning of stack>> 
     17910:45:37: An exception has been thrown! 
     180 
     181----------------------------------- 
     182Details: 
     183----------------------------------- 
     184Error #: 7 
     185Function: GpuProgramParameters::getParamIndex 
     186Description: Cannot find a parameter named lightcol7.  
     187File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     188Line: 768 
     189Stack unwinding: <<beginning of stack>> 
     19010: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----------------------------------- 
     193Details: 
     194----------------------------------- 
     195Error #: 7 
     196Function: GpuProgramParameters::getParamIndex 
     197Description: Cannot find a parameter named lightcol7.  
     198File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     199Line: 768 
     200Stack unwinding: <<beginning of stack>> 
     20110:45:37: An exception has been thrown! 
     202 
     203----------------------------------- 
     204Details: 
     205----------------------------------- 
     206Error #: 7 
     207Function: GpuProgramParameters::getParamIndex 
     208Description: Cannot find a parameter named lightcol8.  
     209File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     210Line: 768 
     211Stack unwinding: <<beginning of stack>> 
     21210: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----------------------------------- 
     215Details: 
     216----------------------------------- 
     217Error #: 7 
     218Function: GpuProgramParameters::getParamIndex 
     219Description: Cannot find a parameter named lightcol8.  
     220File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     221Line: 768 
     222Stack unwinding: <<beginning of stack>> 
     22310:45:37: An exception has been thrown! 
     224 
     225----------------------------------- 
     226Details: 
     227----------------------------------- 
     228Error #: 7 
     229Function: GpuProgramParameters::getParamIndex 
     230Description: Cannot find a parameter named lightpos5.  
     231File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     232Line: 768 
     233Stack unwinding: <<beginning of stack>> 
     23410: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----------------------------------- 
     237Details: 
     238----------------------------------- 
     239Error #: 7 
     240Function: GpuProgramParameters::getParamIndex 
     241Description: Cannot find a parameter named lightpos5.  
     242File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     243Line: 768 
     244Stack unwinding: <<beginning of stack>> 
     24510:45:37: An exception has been thrown! 
     246 
     247----------------------------------- 
     248Details: 
     249----------------------------------- 
     250Error #: 7 
     251Function: GpuProgramParameters::getParamIndex 
     252Description: Cannot find a parameter named lightpos6.  
     253File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     254Line: 768 
     255Stack unwinding: <<beginning of stack>> 
     25610: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----------------------------------- 
     259Details: 
     260----------------------------------- 
     261Error #: 7 
     262Function: GpuProgramParameters::getParamIndex 
     263Description: Cannot find a parameter named lightpos6.  
     264File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     265Line: 768 
     266Stack unwinding: <<beginning of stack>> 
     26710:45:37: An exception has been thrown! 
     268 
     269----------------------------------- 
     270Details: 
     271----------------------------------- 
     272Error #: 7 
     273Function: GpuProgramParameters::getParamIndex 
     274Description: Cannot find a parameter named lightpos7.  
     275File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     276Line: 768 
     277Stack unwinding: <<beginning of stack>> 
     27810: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----------------------------------- 
     281Details: 
     282----------------------------------- 
     283Error #: 7 
     284Function: GpuProgramParameters::getParamIndex 
     285Description: Cannot find a parameter named lightpos7.  
     286File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     287Line: 768 
     288Stack unwinding: <<beginning of stack>> 
     28910:45:37: An exception has been thrown! 
     290 
     291----------------------------------- 
     292Details: 
     293----------------------------------- 
     294Error #: 7 
     295Function: GpuProgramParameters::getParamIndex 
     296Description: Cannot find a parameter named lightpos8.  
     297File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     298Line: 768 
     299Stack unwinding: <<beginning of stack>> 
     30010: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----------------------------------- 
     303Details: 
     304----------------------------------- 
     305Error #: 7 
     306Function: GpuProgramParameters::getParamIndex 
     307Description: Cannot find a parameter named lightpos8.  
     308File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     309Line: 768 
     310Stack unwinding: <<beginning of stack>> 
     31110:45:37: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     31210:45:37: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     31310:45:37: Error in material pult at line 88 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 
     31410:45:37: Error in material pult at line 89 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.819489 
     31510:45:37: Error in material pult at line 90 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.53846 
     31610:45:37: Error in material butorlap at line 122 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 
     31710:45:37: Error in material butorlap at line 123 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.177898 
     31810:45:37: Parsing script Diffuse.material 
     31910:45:38: An exception has been thrown! 
    144320 
    145321----------------------------------- 
     
    152328Line: 768 
    153329Stack 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! 
     33010:45:38: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    155331 
    156332----------------------------------- 
     
    163339Line: 768 
    164340Stack unwinding: <<beginning of stack>> 
    165 20:39:47: An exception has been thrown! 
     34110:45:39: An exception has been thrown! 
    166342 
    167343----------------------------------- 
     
    174350Line: 768 
    175351Stack 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! 
     35210:45:39: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    177353 
    178354----------------------------------- 
     
    185361Line: 768 
    186362Stack unwinding: <<beginning of stack>> 
    187 20:39:57: An exception has been thrown! 
     36310:45:46: An exception has been thrown! 
    188364 
    189365----------------------------------- 
     
    196372Line: 768 
    197373Stack 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! 
     37410:45:46: Error in material GameTools/Diffuse/use1 at line 215 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    199375 
    200376----------------------------------- 
     
    207383Line: 768 
    208384Stack unwinding: <<beginning of stack>> 
    209 20:39:57: Parsing script EnvMetals.material 
    210 20:39:57: An exception has been thrown! 
     38510:45:46: Parsing script EnvMetals.material 
     38610:45:46: An exception has been thrown! 
    211387 
    212388----------------------------------- 
     
    219395Line: 768 
    220396Stack 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! 
     39710:45:46: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    222398 
    223399----------------------------------- 
     
    230406Line: 768 
    231407Stack unwinding: <<beginning of stack>> 
    232 20:39:57: An exception has been thrown! 
     40810:45:46: An exception has been thrown! 
    233409 
    234410----------------------------------- 
     
    241417Line: 768 
    242418Stack 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! 
     41910:45:46: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    244420 
    245421----------------------------------- 
     
    252428Line: 768 
    253429Stack unwinding: <<beginning of stack>> 
    254 20:39:57: An exception has been thrown! 
     43010:45:46: An exception has been thrown! 
    255431 
    256432----------------------------------- 
     
    263439Line: 768 
    264440Stack 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! 
     44110:45:46: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    266442 
    267443----------------------------------- 
     
    274450Line: 768 
    275451Stack unwinding: <<beginning of stack>> 
    276 20:39:57: An exception has been thrown! 
     45210:45:46: An exception has been thrown! 
    277453 
    278454----------------------------------- 
     
    285461Line: 768 
    286462Stack 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! 
     46310:45:46: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    288464 
    289465----------------------------------- 
     
    296472Line: 768 
    297473Stack unwinding: <<beginning of stack>> 
    298 20:39:57: Parsing script GameTools.material 
    299 20:39:57: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
    300 20:39:57: An exception has been thrown! 
     47410:45:46: Parsing script GameTools.material 
     47510:45:46: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
     47610:45:46: An exception has been thrown! 
    301477 
    302478----------------------------------- 
     
    309485Line: 768 
    310486Stack 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! 
     48710:45:46: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    312488 
    313489----------------------------------- 
     
    320496Line: 768 
    321497Stack unwinding: <<beginning of stack>> 
    322 20:39:57: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
    323 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_blend 
    325 20:39:57: Parsing script GameTools_HPS.material 
    326 20:39:57: An exception has been thrown! 
     49810:45:46: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
     49910:45:46: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     50010:45:47: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
     50110:45:47: Parsing script GameTools_HPS.material 
     50210:45:47: An exception has been thrown! 
    327503 
    328504----------------------------------- 
     
    335511Line: 768 
    336512Stack 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! 
     51310: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! 
    338514 
    339515----------------------------------- 
     
    346522Line: 768 
    347523Stack unwinding: <<beginning of stack>> 
    348 20:39:57: An exception has been thrown! 
     52410:45:47: An exception has been thrown! 
    349525 
    350526----------------------------------- 
     
    357533Line: 768 
    358534Stack 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! 
     53510: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! 
    360536 
    361537----------------------------------- 
     
    368544Line: 768 
    369545Stack unwinding: <<beginning of stack>> 
    370 20:39:57: An exception has been thrown! 
     54610:45:47: An exception has been thrown! 
    371547 
    372548----------------------------------- 
     
    379555Line: 768 
    380556Stack 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! 
     55710: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! 
    382558 
    383559----------------------------------- 
     
    390566Line: 768 
    391567Stack unwinding: <<beginning of stack>> 
    392 20:39:57: An exception has been thrown! 
     56810:45:47: An exception has been thrown! 
    393569 
    394570----------------------------------- 
     
    401577Line: 768 
    402578Stack 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! 
     57910: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! 
    404580 
    405581----------------------------------- 
     
    412588Line: 768 
    413589Stack unwinding: <<beginning of stack>> 
    414 20:39:57: An exception has been thrown! 
     59010:45:47: An exception has been thrown! 
    415591 
    416592----------------------------------- 
     
    423599Line: 768 
    424600Stack 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! 
     60110: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! 
    426602 
    427603----------------------------------- 
     
    434610Line: 768 
    435611Stack unwinding: <<beginning of stack>> 
    436 20:39:57: An exception has been thrown! 
     61210:45:47: An exception has been thrown! 
    437613 
    438614----------------------------------- 
     
    445621Line: 768 
    446622Stack 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! 
     62310: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! 
    448624 
    449625----------------------------------- 
     
    456632Line: 768 
    457633Stack unwinding: <<beginning of stack>> 
    458 20:39:57: An exception has been thrown! 
     63410:45:47: An exception has been thrown! 
    459635 
    460636----------------------------------- 
     
    467643Line: 768 
    468644Stack 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! 
     64510:45:47: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    470646 
    471647----------------------------------- 
     
    478654Line: 768 
    479655Stack unwinding: <<beginning of stack>> 
    480 20:39:57: Parsing script GlassHead.material 
    481 20:39:57: An exception has been thrown! 
     65610:45:47: Parsing script GlassHead.material 
     65710:45:47: An exception has been thrown! 
    482658 
    483659----------------------------------- 
     
    490666Line: 768 
    491667Stack 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! 
     66810:45:47: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    493669 
    494670----------------------------------- 
     
    501677Line: 768 
    502678Stack 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! 
     67910:45:47: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     68010:45:47: An exception has been thrown! 
    505681 
    506682----------------------------------- 
     
    513689Line: 768 
    514690Stack 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! 
     69110:45:47: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    516692 
    517693----------------------------------- 
     
    524700Line: 768 
    525701Stack unwinding: <<beginning of stack>> 
    526 20:39:57: An exception has been thrown! 
     70210:45:47: An exception has been thrown! 
    527703 
    528704----------------------------------- 
     
    535711Line: 768 
    536712Stack 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! 
     71310:45:47: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    538714 
    539715----------------------------------- 
     
    546722Line: 768 
    547723Stack unwinding: <<beginning of stack>> 
    548 20:39:57: An exception has been thrown! 
     72410:45:47: An exception has been thrown! 
    549725 
    550726----------------------------------- 
     
    557733Line: 768 
    558734Stack 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! 
     73510:45:47: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    560736 
    561737----------------------------------- 
     
    568744Line: 768 
    569745Stack unwinding: <<beginning of stack>> 
    570 20:39:58: Parsing script Glow.material 
    571 20:39:58: An exception has been thrown! 
     74610:45:47: Parsing script Glow.material 
     74710:45:48: An exception has been thrown! 
    572748 
    573749----------------------------------- 
     
    580756Line: 768 
    581757Stack 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! 
     75810:45:48: Error in material GameTools/ToneMap at line 211 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    583759 
    584760----------------------------------- 
     
    591767Line: 768 
    592768Stack unwinding: <<beginning of stack>> 
    593 20:39:58: Parsing script hangar.material 
    594 20:39:58: Parsing script kupola.material 
    595 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.material 
    600 20:39:58: Parsing script Particles.material 
    601 20:39:58: An exception has been thrown! 
     76910:45:48: Parsing script hangar.material 
     77010:45:48: Parsing script kupola.material 
     77110:45:48: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     77210:45:48: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     77310:45:48: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     77410:45:48: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     77510:45:48: Parsing script Ogre.material 
     77610:45:48: Parsing script Particles.material 
     77710:45:48: An exception has been thrown! 
    602778 
    603779----------------------------------- 
     
    610786Line: 768 
    611787Stack 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! 
     78810:45:48: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    613789 
    614790----------------------------------- 
     
    621797Line: 768 
    622798Stack unwinding: <<beginning of stack>> 
    623 20:39:58: An exception has been thrown! 
     79910:45:48: An exception has been thrown! 
    624800 
    625801----------------------------------- 
     
    632808Line: 768 
    633809Stack 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! 
     81010:45:48: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    635811 
    636812----------------------------------- 
     
    643819Line: 768 
    644820Stack 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! 
     82110:45:48: Parsing script RaytraceDemo.material 
     82210:45:48: Parsing script stairs.material 
     82310:45:48: Parsing script uvegfolyoso2.material 
     82410:45:48: An exception has been thrown! 
     825 
     826----------------------------------- 
     827Details: 
     828----------------------------------- 
     829Error #: 7 
     830Function: GpuProgramParameters::getParamIndex 
     831Description: Cannot find a parameter named lightcol5.  
     832File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     833Line: 768 
     834Stack unwinding: <<beginning of stack>> 
     83510: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----------------------------------- 
     838Details: 
     839----------------------------------- 
     840Error #: 7 
     841Function: GpuProgramParameters::getParamIndex 
     842Description: Cannot find a parameter named lightcol5.  
     843File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     844Line: 768 
     845Stack unwinding: <<beginning of stack>> 
     84610:45:48: An exception has been thrown! 
     847 
     848----------------------------------- 
     849Details: 
     850----------------------------------- 
     851Error #: 7 
     852Function: GpuProgramParameters::getParamIndex 
     853Description: Cannot find a parameter named lightcol6.  
     854File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     855Line: 768 
     856Stack unwinding: <<beginning of stack>> 
     85710: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----------------------------------- 
     860Details: 
     861----------------------------------- 
     862Error #: 7 
     863Function: GpuProgramParameters::getParamIndex 
     864Description: Cannot find a parameter named lightcol6.  
     865File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     866Line: 768 
     867Stack unwinding: <<beginning of stack>> 
     86810:45:48: An exception has been thrown! 
     869 
     870----------------------------------- 
     871Details: 
     872----------------------------------- 
     873Error #: 7 
     874Function: GpuProgramParameters::getParamIndex 
     875Description: Cannot find a parameter named lightcol7.  
     876File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     877Line: 768 
     878Stack unwinding: <<beginning of stack>> 
     87910: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----------------------------------- 
     882Details: 
     883----------------------------------- 
     884Error #: 7 
     885Function: GpuProgramParameters::getParamIndex 
     886Description: Cannot find a parameter named lightcol7.  
     887File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     888Line: 768 
     889Stack unwinding: <<beginning of stack>> 
     89010:45:48: An exception has been thrown! 
     891 
     892----------------------------------- 
     893Details: 
     894----------------------------------- 
     895Error #: 7 
     896Function: GpuProgramParameters::getParamIndex 
     897Description: Cannot find a parameter named lightcol8.  
     898File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     899Line: 768 
     900Stack unwinding: <<beginning of stack>> 
     90110: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----------------------------------- 
     904Details: 
     905----------------------------------- 
     906Error #: 7 
     907Function: GpuProgramParameters::getParamIndex 
     908Description: Cannot find a parameter named lightcol8.  
     909File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     910Line: 768 
     911Stack unwinding: <<beginning of stack>> 
     91210:45:48: An exception has been thrown! 
     913 
     914----------------------------------- 
     915Details: 
     916----------------------------------- 
     917Error #: 7 
     918Function: GpuProgramParameters::getParamIndex 
     919Description: Cannot find a parameter named lightpos5.  
     920File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     921Line: 768 
     922Stack unwinding: <<beginning of stack>> 
     92310: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----------------------------------- 
     926Details: 
     927----------------------------------- 
     928Error #: 7 
     929Function: GpuProgramParameters::getParamIndex 
     930Description: Cannot find a parameter named lightpos5.  
     931File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     932Line: 768 
     933Stack unwinding: <<beginning of stack>> 
     93410:45:48: An exception has been thrown! 
     935 
     936----------------------------------- 
     937Details: 
     938----------------------------------- 
     939Error #: 7 
     940Function: GpuProgramParameters::getParamIndex 
     941Description: Cannot find a parameter named lightpos6.  
     942File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     943Line: 768 
     944Stack unwinding: <<beginning of stack>> 
     94510: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----------------------------------- 
     948Details: 
     949----------------------------------- 
     950Error #: 7 
     951Function: GpuProgramParameters::getParamIndex 
     952Description: Cannot find a parameter named lightpos6.  
     953File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     954Line: 768 
     955Stack unwinding: <<beginning of stack>> 
     95610:45:48: An exception has been thrown! 
     957 
     958----------------------------------- 
     959Details: 
     960----------------------------------- 
     961Error #: 7 
     962Function: GpuProgramParameters::getParamIndex 
     963Description: Cannot find a parameter named lightpos7.  
     964File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     965Line: 768 
     966Stack unwinding: <<beginning of stack>> 
     96710: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----------------------------------- 
     970Details: 
     971----------------------------------- 
     972Error #: 7 
     973Function: GpuProgramParameters::getParamIndex 
     974Description: Cannot find a parameter named lightpos7.  
     975File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     976Line: 768 
     977Stack unwinding: <<beginning of stack>> 
     97810:45:48: An exception has been thrown! 
     979 
     980----------------------------------- 
     981Details: 
     982----------------------------------- 
     983Error #: 7 
     984Function: GpuProgramParameters::getParamIndex 
     985Description: Cannot find a parameter named lightpos8.  
     986File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     987Line: 768 
     988Stack unwinding: <<beginning of stack>> 
     98910: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----------------------------------- 
     992Details: 
     993----------------------------------- 
     994Error #: 7 
     995Function: GpuProgramParameters::getParamIndex 
     996Description: Cannot find a parameter named lightpos8.  
     997File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     998Line: 768 
     999Stack unwinding: <<beginning of stack>> 
     100010:45:48: An exception has been thrown! 
     1001 
     1002----------------------------------- 
     1003Details: 
     1004----------------------------------- 
     1005Error #: 7 
     1006Function: GpuProgramParameters::getParamIndex 
     1007Description: Cannot find a parameter named lightcol5.  
     1008File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1009Line: 768 
     1010Stack unwinding: <<beginning of stack>> 
     101110: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----------------------------------- 
     1014Details: 
     1015----------------------------------- 
     1016Error #: 7 
     1017Function: GpuProgramParameters::getParamIndex 
     1018Description: Cannot find a parameter named lightcol5.  
     1019File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1020Line: 768 
     1021Stack unwinding: <<beginning of stack>> 
     102210:45:48: An exception has been thrown! 
     1023 
     1024----------------------------------- 
     1025Details: 
     1026----------------------------------- 
     1027Error #: 7 
     1028Function: GpuProgramParameters::getParamIndex 
     1029Description: Cannot find a parameter named lightcol6.  
     1030File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1031Line: 768 
     1032Stack unwinding: <<beginning of stack>> 
     103310: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----------------------------------- 
     1036Details: 
     1037----------------------------------- 
     1038Error #: 7 
     1039Function: GpuProgramParameters::getParamIndex 
     1040Description: Cannot find a parameter named lightcol6.  
     1041File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1042Line: 768 
     1043Stack unwinding: <<beginning of stack>> 
     104410:45:48: An exception has been thrown! 
     1045 
     1046----------------------------------- 
     1047Details: 
     1048----------------------------------- 
     1049Error #: 7 
     1050Function: GpuProgramParameters::getParamIndex 
     1051Description: Cannot find a parameter named lightcol7.  
     1052File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1053Line: 768 
     1054Stack unwinding: <<beginning of stack>> 
     105510: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----------------------------------- 
     1058Details: 
     1059----------------------------------- 
     1060Error #: 7 
     1061Function: GpuProgramParameters::getParamIndex 
     1062Description: Cannot find a parameter named lightcol7.  
     1063File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1064Line: 768 
     1065Stack unwinding: <<beginning of stack>> 
     106610:45:48: An exception has been thrown! 
     1067 
     1068----------------------------------- 
     1069Details: 
     1070----------------------------------- 
     1071Error #: 7 
     1072Function: GpuProgramParameters::getParamIndex 
     1073Description: Cannot find a parameter named lightcol8.  
     1074File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1075Line: 768 
     1076Stack unwinding: <<beginning of stack>> 
     107710: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----------------------------------- 
     1080Details: 
     1081----------------------------------- 
     1082Error #: 7 
     1083Function: GpuProgramParameters::getParamIndex 
     1084Description: Cannot find a parameter named lightcol8.  
     1085File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1086Line: 768 
     1087Stack unwinding: <<beginning of stack>> 
     108810:45:48: An exception has been thrown! 
     1089 
     1090----------------------------------- 
     1091Details: 
     1092----------------------------------- 
     1093Error #: 7 
     1094Function: GpuProgramParameters::getParamIndex 
     1095Description: Cannot find a parameter named lightpos5.  
     1096File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1097Line: 768 
     1098Stack unwinding: <<beginning of stack>> 
     109910: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----------------------------------- 
     1102Details: 
     1103----------------------------------- 
     1104Error #: 7 
     1105Function: GpuProgramParameters::getParamIndex 
     1106Description: Cannot find a parameter named lightpos5.  
     1107File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1108Line: 768 
     1109Stack unwinding: <<beginning of stack>> 
     111010:45:48: An exception has been thrown! 
     1111 
     1112----------------------------------- 
     1113Details: 
     1114----------------------------------- 
     1115Error #: 7 
     1116Function: GpuProgramParameters::getParamIndex 
     1117Description: Cannot find a parameter named lightpos6.  
     1118File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1119Line: 768 
     1120Stack unwinding: <<beginning of stack>> 
     112110: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----------------------------------- 
     1124Details: 
     1125----------------------------------- 
     1126Error #: 7 
     1127Function: GpuProgramParameters::getParamIndex 
     1128Description: Cannot find a parameter named lightpos6.  
     1129File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1130Line: 768 
     1131Stack unwinding: <<beginning of stack>> 
     113210:45:48: An exception has been thrown! 
     1133 
     1134----------------------------------- 
     1135Details: 
     1136----------------------------------- 
     1137Error #: 7 
     1138Function: GpuProgramParameters::getParamIndex 
     1139Description: Cannot find a parameter named lightpos7.  
     1140File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1141Line: 768 
     1142Stack unwinding: <<beginning of stack>> 
     114310: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----------------------------------- 
     1146Details: 
     1147----------------------------------- 
     1148Error #: 7 
     1149Function: GpuProgramParameters::getParamIndex 
     1150Description: Cannot find a parameter named lightpos7.  
     1151File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1152Line: 768 
     1153Stack unwinding: <<beginning of stack>> 
     115410:45:48: An exception has been thrown! 
     1155 
     1156----------------------------------- 
     1157Details: 
     1158----------------------------------- 
     1159Error #: 7 
     1160Function: GpuProgramParameters::getParamIndex 
     1161Description: Cannot find a parameter named lightpos8.  
     1162File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1163Line: 768 
     1164Stack unwinding: <<beginning of stack>> 
     116510: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----------------------------------- 
     1168Details: 
     1169----------------------------------- 
     1170Error #: 7 
     1171Function: GpuProgramParameters::getParamIndex 
     1172Description: Cannot find a parameter named lightpos8.  
     1173File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     1174Line: 768 
     1175Stack unwinding: <<beginning of stack>> 
     117610:45:48: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     117710:45:48: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     117810:45:48: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     117910:45:48: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     118010:45:48: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     118110:45:48: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     118210:45:48: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     118310:45:48: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     118410:45:48: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     118510:45:48: Parsing script X3D.material 
     118610:45:48: Parsing script GameTools_Glow.compositor 
     118710:45:48: Parsing script GameTools_ToneMap.compositor 
     118810:45:48: Parsing script sample.fontdef 
     118910:45:48: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     119010:45:48: Parsing script GameTools.particle 
     119110:45:48: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     119210:45:48: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     119310:45:48: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     119410:45:48: Parsing script Compositor.overlay 
     119510:45:48: Parsing script DP3.overlay 
     119610:45:48: Parsing script Example-CubeMapping.overlay 
     119710:45:48: Parsing script Example-DynTex.overlay 
     119810:45:48: Parsing script Example-Water.overlay 
     119910:45:48: Parsing script FullScreen.overlay 
     120010:45:48: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     120110:45:48: Parsing script Shadows.overlay 
     120210:45:48: Finished parsing scripts for resource group General 
     120310:45:48: Parsing scripts for resource group Internal 
     120410:45:48: Finished parsing scripts for resource group Internal 
     120510: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. 
     120610: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 
     120710:45:48: Viewport for camera 'ReflectCamFloor', actual dimensions L: 0 T: 0 W: 512 H: 512 
     120810:45:48: Mesh: Loading athene.mesh. 
     120910: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? 
     121010:45:48: An exception has been thrown! 
    6701211 
    6711212----------------------------------- 
     
    6781219Line: 583 
    6791220Stack 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! 
     122110: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! 
    6811222 
    6821223----------------------------------- 
     
    6891230Line: 583 
    6901231Stack unwinding: <<beginning of stack>> 
    691 20:39:59: An exception has been thrown! 
     123210:45:48: An exception has been thrown! 
    6921233 
    6931234----------------------------------- 
     
    7001241Line: 583 
    7011242Stack 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! 
     124310: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! 
    7031244 
    7041245----------------------------------- 
     
    7111252Line: 583 
    7121253Stack unwinding: <<beginning of stack>> 
    713 20:39:59: An exception has been thrown! 
     125410:45:48: An exception has been thrown! 
    7141255 
    7151256----------------------------------- 
     
    7221263Line: 583 
    7231264Stack 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! 
     126510: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! 
    7251266 
    7261267----------------------------------- 
     
    7331274Line: 583 
    7341275Stack unwinding: <<beginning of stack>> 
    735 20:39:59: An exception has been thrown! 
     127610:45:48: An exception has been thrown! 
    7361277 
    7371278----------------------------------- 
     
    7441285Line: 583 
    7451286Stack 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! 
     128710: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! 
    7471288 
    7481289----------------------------------- 
     
    7551296Line: 583 
    7561297Stack 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 
     129810:45:48: Mesh: Loading uvegfolyoso2.mesh. 
     129910:45:48: Texture: background.jpg: Loading 1 faces(PF_B8G8R8,2048x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x512x1. 
     130010: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 
     130110:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     130210: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 
     130310:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     130410: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 
     130510:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     130610: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 
     130710:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     130810: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 
     130910:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     131010: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 
     131110:45:48: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     131210: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. 
     131310: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 
     131410:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     131510: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 
     131610:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     131710: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 
     131810:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     131910: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 
     132010:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     132110: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 
     132210:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     132310: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 
     132410:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     132510: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 
     132610:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     132710: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 
     132810:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     132910: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 
     133010:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     133110: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 
     133210:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     133310: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 
     133410:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     133510: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 
     133610:45:48: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     133710: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. 
     133810:45:48: Win32Input8: DirectInput Activation Starts 
     133910:45:48: Win32Input8: Establishing keyboard input. 
     134010:45:48: Win32Input8: Keyboard input established. 
     134110:45:48: Win32Input8: Initializing mouse input in immediate mode. 
     134210:45:48: Win32Input8: Mouse input in immediate mode initialized. 
     134310:45:48: Win32Input8: DirectInput OK. 
     134410: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. 
     134510:48:25: Unregistering ResourceManager for type BspLevel 
     134610:48:25: Render Target 'rtt/21854336' Average FPS: 10.5154 Best FPS: 38.0859 Worst FPS: 1.76005 
     134710:48:25: Render Target 'rtt/21854400' Average FPS: 10.516 Best FPS: 38.0859 Worst FPS: 1.76005 
     134810:48:25: Render Target 'rtt/21854464' Average FPS: 10.5161 Best FPS: 38.0859 Worst FPS: 1.76005 
     134910:48:25: Render Target 'rtt/21854528' Average FPS: 10.5204 Best FPS: 38.0859 Worst FPS: 1.76005 
     135010:48:25: Render Target 'rtt/21854592' Average FPS: 10.5204 Best FPS: 38.0859 Worst FPS: 1.76005 
     135110:48:25: Render Target 'rtt/21854656' Average FPS: 10.5154 Best FPS: 38.0859 Worst FPS: 1.76005 
     135210:48:25: Render Target 'rtt/21852992' Average FPS: 10.511 Best FPS: 38.2728 Worst FPS: 1.75979 
     135310:48:25: Render Target 'rtt/21853056' Average FPS: 10.5111 Best FPS: 38.2353 Worst FPS: 1.75979 
     135410:48:25: Render Target 'rtt/21853120' Average FPS: 10.5143 Best FPS: 38.2353 Worst FPS: 1.76005 
     135510:48:25: Render Target 'rtt/21853184' Average FPS: 10.511 Best FPS: 38.2353 Worst FPS: 1.76005 
     135610:48:25: Render Target 'rtt/21853248' Average FPS: 10.5224 Best FPS: 38.2728 Worst FPS: 1.75979 
     135710:48:25: Render Target 'rtt/21853312' Average FPS: 10.5204 Best FPS: 38.0859 Worst FPS: 1.76005 
     135810:48:25: Render Target 'rtt/21851808' Average FPS: 1.75138 Best FPS: 6.38686 Worst FPS: 0.299715 
     135910:48:25: Render Target 'rtt/21851872' Average FPS: 1.75091 Best FPS: 6.36364 Worst FPS: 0.162285 
     136010:48:25: Render Target 'rtt/21851936' Average FPS: 1.74797 Best FPS: 6.38686 Worst FPS: 0.162232 
     136110:48:25: Render Target 'rtt/21852000' Average FPS: 1.74879 Best FPS: 6.35209 Worst FPS: 0.162364 
     136210:48:25: Render Target 'rtt/21852064' Average FPS: 1.75196 Best FPS: 6.34058 Worst FPS: 0.293341 
     136310:48:25: Render Target 'rtt/21852128' Average FPS: 1.75351 Best FPS: 6.34058 Worst FPS: 0.29994 
     136410:48:25: Render Target 'rtt/2260960' Average FPS: 10.5051 Best FPS: 187.812 Worst FPS: 2.9615 
     136510:48:25: *-*-* OGRE Shutdown 
     136610:48:25: Unregistering ResourceManager for type Compositor 
     136710:48:25: Unregistering ResourceManager for type Font 
     136810:48:25: Unregistering ResourceManager for type Skeleton 
     136910:48:25: Unregistering ResourceManager for type Mesh 
     137010:48:25: Unregistering ResourceManager for type HighLevelGpuProgram 
     137110:48:25: Unloading library .\Plugin_CgProgramManager 
     137210:48:25: Unloading library .\Plugin_OctreeSceneManager 
     137310:48:25: Unloading library .\Plugin_BSPSceneManager 
     137410:48:25: Unloading library .\Plugin_ParticleFX 
     137510:48:25: Render Target 'OGRE Render Window' Average FPS: 10.5006 Best FPS: 187.812 Worst FPS: 2.9383 
     137610:48:26: D3D9 : Shutting down cleanly. 
     137710:48:26: Unregistering ResourceManager for type Texture 
     137810:48:26: Unregistering ResourceManager for type GpuProgram 
     137910:48:26: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     138010:48:26: Unloading library .\RenderSystem_Direct3D9 
     138110:48:26: Unregistering ResourceManager for type Material 
     138210:48:26: Unloading library OgrePlatform.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/src/DiffuseTest/include/DiffuseTest.h

    r1590 r1598  
    225225}; 
    226226 
     227 
     228class FloorRenderTargetListener : public RenderTargetListener 
     229{ 
     230public: 
     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 
     253class CeilRenderTargetListener : public RenderTargetListener 
     254{ 
     255public: 
     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 
     278class ReflectionCameraFrameListener : public FrameListener 
     279{ 
     280public: 
     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}; 
    227301/** Application class */ 
    228302class RaytraceDemoApplication : public ExampleApplication 
     
    258332                mCamera->setPosition(0,10,10);           
    259333                mCamera->setFOVy(Radian(Degree(80))); 
    260                 mCamera->setFarClipDistance(100); 
     334                mCamera->setFarClipDistance(200); 
    261335                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            
    263348        mSceneMgr->setAmbientLight(ColourValue(0.1, 0.0537, 0.0)); 
    264349                //mSceneMgr->setAmbientLight(ColourValue(0.0, 0.0, 0.0)); 
     
    355440                redlight2Node->setPosition(18.689,7.743,-10.838); 
    356441                redlight2Node->attachObject(redlight2);  
    357                  
    358                 OgreIlluminationManager::getSingleton().initTechniques(); 
    359                  
    360                  
    361442   } 
     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 
    362561   void createPlane(Ogre::String _name, Ogre::String _material, Ogre::Vector3 _pos, Ogre::Vector2 _size, Ogre::Vector2 _subdivisions = Ogre::Vector2(1,1)) { 
    363562                 
     
    389588                                                                                        ); 
    390589                mFrameListener->setPriority(1); 
    391                 OgreIlluminationManager::getSingleton().setPriority(2); 
     590                OgreIlluminationManager::getSingleton().setPriority(10); 
    392591        mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 
    393592                mRoot->addFrameListener(mFrameListener); 
     593                mRoot->addFrameListener(reflListener); 
    394594         
    395595    } 
     
    397597}; 
    398598 
     599 
  • GTP/trunk/App/Demos/Illum/Ogre/src/DiffuseTest/scripts/DiffuseTest.vcproj

    r1590 r1598  
    181181                                RelativePath="..\..\..\Media\materials\scripts\Glow.material"> 
    182182                        </File> 
     183                        <File 
     184                                RelativePath="..\..\..\Media\materials\scripts\uvegfolyoso2.material"> 
     185                        </File> 
    183186                </Filter> 
    184187        </Files> 
Note: See TracChangeset for help on using the changeset viewer.