Changeset 1525


Ignore:
Timestamp:
09/28/06 11:21:44 (18 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum/Ogre
Files:
4 added
22 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/GameTools_Diffuse.hlsl

    r1519 r1525  
    33float4 readCubeMap(samplerCUBE cm, float3 coord)                 
    44{ 
    5         float4 color = texCUBE( cm, float3(coord.xy, - coord.z) ); 
     5        float4 color = texCUBE( cm, float3(coord.xy, -coord.z) ); 
    66        color.a = 1; 
    77        return color; 
     
    4848/////////////////// 
    4949 
    50 float4 GetContibution(float3 L, float3 pos, float3 N, float3 V, samplerCUBE SmallEnvMapSampler, samplerCUBE DistanceEnvMapSampler)      // Phong-Blinn 
    51 // L: a hossza lényeges (az egységkocka faláig ér) 
    52 { 
    53     REDUCED_CUBEMAP_SIZE = 4; 
     50float4 GetContibution(float3 L1, float3 L2, float3 L3, float3 L4, float3 pos, float3 N, samplerCUBE SmallEnvMapSampler, float d) 
     51{ 
     52/* 
     53        L1 = readDistanceCubeMap(DistanceEnvMapSampler, L1) * normalize(L1); 
     54        L2 = readDistanceCubeMap(DistanceEnvMapSampler, L2) * normalize(L2); 
     55        L3 = readDistanceCubeMap(DistanceEnvMapSampler, L3) *  normalize(L3); 
     56        L4 = readDistanceCubeMap(DistanceEnvMapSampler, L4) * normalize(L4); 
     57*/       
     58 
     59        L1 = d * normalize(L1); 
     60        L2 = d * normalize(L2); 
     61        L3 = d *  normalize(L3); 
     62        L4 = d * normalize(L4); 
     63         
     64         
     65    float3 r1 = normalize(L1 - pos);     
     66    float3 r2 = normalize(L2 - pos); 
     67    float3 r3 = normalize(L3 - pos); 
     68    float3 r4 = normalize(L4 - pos); 
     69    
    5470     
    5571        float kd = 0.3; // 0.3 
    56         float ks = 0.0; // 0.5 
    57         float shininess = 10; 
    58          
    59         float l = length(L); 
    60         L = normalize(L); 
    61  
    62         //dw 
    63         float dw = 4 / (REDUCED_CUBEMAP_SIZE*REDUCED_CUBEMAP_SIZE*l*l*l + 4/3.1416f); 
    64         //Lin 
    65         float4 Lin = readCubeMap(SmallEnvMapSampler, L); 
    66         //r 
    67         float doy = readDistanceCubeMap(DistanceEnvMapSampler, L); 
    68         float dxy = length(L * doy - pos);       
    69  
    70         //dws 
    71         float dws = (doy*doy * dw) / (dxy*dxy*(1 - dw/3.1416f) + doy*doy*dw/3.1416f);   // localization: 
    72         //float dws = dw; 
    73          
    74         //L = L * doy - pos;    // L: x->y, az objektumtól induljon, ne a középpontból 
    75         L = normalize(L); 
    76         float3 H = normalize(L + V);    // felezõvektor 
    77  
    78         float a = kd * max(dot(N,L),0) +  
    79                           ks * pow(max(dot(N,H),0), shininess); // diffuse + specular 
    80  
    81         // 1.: eddigi 
    82         //return Lin * a * dws; 
    83          
    84         float ctheta_in = dot(N,L); 
    85         float ctheta_out = dot(N,V);     
    86          
    87         return Lin * a * dws;    
     72         
     73        float tri1 = acos(dot(r1, r2)) * dot(cross(r1, r2), N); 
     74        float tri2 = acos(dot(r2, r3)) * dot(cross(r2, r3), N); 
     75        float tri3 = acos(dot(r3, r4)) * dot(cross(r3, r4), N); 
     76        float tri4 = acos(dot(r4, r1)) * dot(cross(r4, r1), N); 
     77         
     78        return max(tri1 + tri2 + tri3 + tri4, 0);        
    8879} 
    8980 
     
    122113{ 
    123114    REDUCED_CUBEMAP_SIZE = 4; 
    124          
     115        float width = 1.0 /REDUCED_CUBEMAP_SIZE; 
     116    
    125117    //V = /*-*/normalize( V ); 
    126118    float3 V = normalize(IN.wPos - cameraPos);  //  
    127     float3 N = mul( float4(IN.mNormal,1), world_IT).xyz; 
     119        float3 N = mul( float4(IN.mNormal,1), world_IT).xyz; 
    128120    //float3 N = IN.mNormal; 
    129121    N = normalize( N );  
     
    132124      
    133125    float4 intens = 0; 
    134    // intens = readCubeMap(SmallEnvMapSampler, pos); 
     126    //intens = readCubeMap(SmallEnvMapSampler, pos); 
    135127         
    136         for (int x = 0; x < REDUCED_CUBEMAP_SIZE; x++)                  // az envmap minden texelére 
    137          for (int y = 0; y < REDUCED_CUBEMAP_SIZE; y++) 
    138          { 
    139                 // intenzitás kiolvasása az adott texelbol  
    140                  
    141                 float2 p, tpos;  
    142             tpos.x = x/(float)REDUCED_CUBEMAP_SIZE;     // 0..1 
    143             tpos.y = y/(float)REDUCED_CUBEMAP_SIZE;     // 0..1 
    144             tpos.xy += float2(0.5/REDUCED_CUBEMAP_SIZE, 0.5/REDUCED_CUBEMAP_SIZE);      // az adott texel középpont uv koordinátái 
    145              
    146             p.x = tpos.x;  
    147             p.y = 1-tpos.y; 
    148             p.xy = 2*p.xy - 1;  // -1..1        // az adott texel középpont pozíciója 
    149              
    150             float3 L; 
    151              
     128        float3 L1, L2, L3, L4, L; 
     129        float4 Le; 
     130        float d; 
     131            
     132        for (int x = 0; x < REDUCED_CUBEMAP_SIZE - 1; x++)                      // az envmap minden texelére 
     133         for (int y = 0; y < REDUCED_CUBEMAP_SIZE - 1; y++) 
     134         { 
     135                float2 p, tpos;  
     136            tpos.x = (x + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     137            tpos.y = (y + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     138             
     139            p.x = tpos.x;  
     140            p.y = 1-tpos.y; 
     141            p.xy = 2 * p.xy - 1;        // -1..1        // az adott texel középpont pozíciója 
     142                     
     143                L1 = float3(p.x - width, p.y - width, 1);        
     144                L2 = float3(p.x + width, p.y - width, 1);        
     145                L3 = float3(p.x + width, p.y + width, 1);        
     146                L4 = float3(p.x - width, p.y + width, 1); 
    152147                L = float3(p.x, p.y, 1); 
    153                 intens += GetContibution( L, pos, N, V, SmallEnvMapSampler, DistanceEnvMapSampler); 
    154                  
     148                Le = readCubeMap(SmallEnvMapSampler, L); 
     149                d = readDistanceCubeMap(DistanceEnvMapSampler, L);       
     150                intens += 0.5 * Le * GetContibution( L1, L2, L3, L4, pos, N, SmallEnvMapSampler, d); 
     151        }        
     152         
     153        for (int x = 0; x < REDUCED_CUBEMAP_SIZE - 1; x++)                      // az envmap minden texelére 
     154         for (int y = 0; y < REDUCED_CUBEMAP_SIZE - 1; y++) 
     155         { 
     156                float2 p, tpos;  
     157            tpos.x = (x + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     158            tpos.y = (y + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     159             
     160            p.x = tpos.x;  
     161            p.y = 1-tpos.y; 
     162            p.xy = 2 * p.xy - 1;        // -1..1        // az adott texel középpont pozíciója 
     163                 
     164                L4 = float3(p.x - width, p.y - width, -1);       
     165                L3 = float3(p.x + width, p.y - width, -1);       
     166                L2 = float3(p.x + width, p.y + width, -1);       
     167                L1 = float3(p.x - width, p.y + width, -1); 
    155168                L = float3(p.x, p.y, -1); 
    156                 intens += GetContibution( L, pos, N, V, SmallEnvMapSampler, DistanceEnvMapSampler); 
    157                  
     169                Le = readCubeMap(SmallEnvMapSampler, L); 
     170                d = readDistanceCubeMap(DistanceEnvMapSampler, L);       
     171                intens += 0.5 * Le * GetContibution( L1, L2, L3, L4, pos, N, SmallEnvMapSampler, d); 
     172        } 
     173         
     174        for (int x = 0; x < REDUCED_CUBEMAP_SIZE - 1; x++)                      // az envmap minden texelére 
     175         for (int y = 0; y < REDUCED_CUBEMAP_SIZE - 1; y++) 
     176         { 
     177                float2 p, tpos;  
     178            tpos.x = (x + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     179            tpos.y = (y + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     180             
     181            p.x = tpos.x;  
     182            p.y = 1-tpos.y; 
     183            p.xy = 2 * p.xy - 1;        // -1..1        // az adott texel középpont pozíciója 
     184                 
     185                L4 = float3(p.x - width, 1, p.y - width); 
     186                L3 = float3(p.x + width, 1, p.y - width);        
     187                L2 = float3(p.x + width, 1, p.y + width);        
     188                L1 = float3(p.x - width, 1, p.y + width);                        
    158189                L = float3(p.x, 1, p.y); 
    159                 intens += GetContibution( L, pos, N, V, SmallEnvMapSampler, DistanceEnvMapSampler); 
    160                  
     190                Le = readCubeMap(SmallEnvMapSampler, L); 
     191                d = readDistanceCubeMap(DistanceEnvMapSampler, L);       
     192                intens += 0.5 * Le * GetContibution( L1, L2, L3, L4, pos, N, SmallEnvMapSampler, d); 
     193        } 
     194         
     195        for (int x = 0; x < REDUCED_CUBEMAP_SIZE - 1; x++)                      // az envmap minden texelére 
     196         for (int y = 0; y < REDUCED_CUBEMAP_SIZE - 1; y++) 
     197         { 
     198                float2 p, tpos;  
     199            tpos.x = (x + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     200            tpos.y = (y + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     201             
     202            p.x = tpos.x;  
     203            p.y = 1-tpos.y; 
     204            p.xy = 2 * p.xy - 1;        // -1..1        // az adott texel középpont pozíciója 
     205                 
     206                L1 = float3(p.x - width, -1, p.y - width); 
     207                L2 = float3(p.x + width, -1, p.y - width);       
     208                L3 = float3(p.x + width, -1, p.y + width);       
     209                L4 = float3(p.x - width, -1, p.y + width);                       
    161210                L = float3(p.x, -1, p.y); 
    162                 intens += GetContibution( L, pos, N, V, SmallEnvMapSampler, DistanceEnvMapSampler); 
    163                  
     211                Le = readCubeMap(SmallEnvMapSampler, L); 
     212                d = readDistanceCubeMap(DistanceEnvMapSampler, L);       
     213                intens += 0.5 * Le * GetContibution( L1, L2, L3, L4, pos, N, SmallEnvMapSampler, d); 
     214        } 
     215         
     216        for (int x = 0; x < REDUCED_CUBEMAP_SIZE - 1; x++)                      // az envmap minden texelére 
     217         for (int y = 0; y < REDUCED_CUBEMAP_SIZE - 1; y++) 
     218         { 
     219                float2 p, tpos;  
     220            tpos.x = (x + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     221            tpos.y = (y + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     222             
     223            p.x = tpos.x;  
     224            p.y = 1-tpos.y; 
     225            p.xy = 2 * p.xy - 1;        // -1..1        // az adott texel középpont pozíciója 
     226                 
     227                L1 = float3(1, p.x - width, p.y - width); 
     228                L2 = float3(1, p.x + width, p.y - width);        
     229                L3 = float3(1, p.x + width, p.y + width);        
     230                L4 = float3(1, p.x - width, p.y + width);        
    164231                L = float3(1, p.x, p.y); 
    165                 intens += GetContibution( L, pos, N, V, SmallEnvMapSampler, DistanceEnvMapSampler); 
    166                  
     232                Le = readCubeMap(SmallEnvMapSampler, L); 
     233                d = readDistanceCubeMap(DistanceEnvMapSampler, L);       
     234                intens += 0.5 * Le * GetContibution( L1, L2, L3, L4, pos, N, SmallEnvMapSampler, d); 
     235        } 
     236         
     237        for (int x = 0; x < REDUCED_CUBEMAP_SIZE - 1; x++)                      // az envmap minden texelére 
     238         for (int y = 0; y < REDUCED_CUBEMAP_SIZE - 1; y++) 
     239         { 
     240                float2 p, tpos;  
     241            tpos.x = (x + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     242            tpos.y = (y + 0.5) /(float)REDUCED_CUBEMAP_SIZE;    // 0..1 
     243             
     244            p.x = tpos.x;  
     245            p.y = 1-tpos.y; 
     246            p.xy = 2 * p.xy - 1;        // -1..1        // az adott texel középpont pozíciója 
     247                 
     248                L4 = float3(-1, p.x - width, p.y - width); 
     249                L3 = float3(-1, p.x + width, p.y - width);       
     250                L2 = float3(-1, p.x + width, p.y + width);       
     251                L1 = float3(-1, p.x - width, p.y + width);       
    167252                L = float3(-1, p.x, p.y); 
    168                 intens += GetContibution( L, pos, N, V, SmallEnvMapSampler, DistanceEnvMapSampler); 
    169         }  
    170  
     253                Le = readCubeMap(SmallEnvMapSampler, L); 
     254                d = readDistanceCubeMap(DistanceEnvMapSampler, L);       
     255                intens += 0.5 * Le * GetContibution( L1, L2, L3, L4, pos, N, SmallEnvMapSampler, d); 
     256        }        
     257         
     258         
    171259        //return float4(pos, 1); 
    172260        return intens; 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/GameTools_Localized_EnvMap.hlsl

    r1487 r1525  
    362362             
    363363            float3 L; 
    364              
     364            
    365365                L = float3(p.x, p.y, 1); 
    366366                intens += GetContibution( L, pos, N, V, SmallEnvMapSampler, DistanceEnvMapSampler); 
     
    382382        } 
    383383 
    384         return intens+0.0001*lastCenter.x; 
    385 } 
     384        return intens; 
     385} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/Diffuse.material

    r1519 r1525  
    3838} 
    3939 
    40 material GameTools/CubeMap/Diffuse  
     40material GameTools/Diffuse 
    4141{  
    4242   technique  
     
    102102        source GameTools_Diffuse.hlsl 
    103103        entry_point DiffuseVS 
    104         target vs_2_0 
     104        target vs_3_0 
    105105}  
    106106 
     
    112112}  
    113113 
    114 material GameTools/Diffuse2  
     114material GameTools/Diffuse/use 
    115115{  
    116116   technique  
  • GTP/trunk/App/Demos/Illum/Ogre/Media/particle/GameTools.particle

    r1451 r1525  
    5656     
    5757    // Area emitter 
    58     emitter Ellipsoid 
     58    emitter Box 
    5959    { 
    6060       colour 1 1 1 0 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log

    r1519 r1525  
    1 15:47:56: Creating resource group General 
    2 15:47:56: Creating resource group Internal 
    3 15:47:56: Creating resource group Autodetect 
    4 15:47:56: Registering ResourceManager for type Material 
    5 15:47:56: Registering ResourceManager for type Mesh 
    6 15:47:56: Registering ResourceManager for type Skeleton 
    7 15:47:56: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 15:47:56: Loading library OgrePlatform_d.dll 
    9 15:47:56: OverlayElementFactory for type Panel registered. 
    10 15:47:56: OverlayElementFactory for type BorderPanel registered. 
    11 15:47:56: OverlayElementFactory for type TextArea registered. 
    12 15:47:56: Registering ResourceManager for type Font 
    13 15:47:56: ArchiveFactory for archive type FileSystem registered. 
    14 15:47:56: ArchiveFactory for archive type Zip registered. 
    15 15:47:56: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 15:47:56: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
    17 15:47:56: Registering ResourceManager for type HighLevelGpuProgram 
    18 15:47:56: Registering ResourceManager for type Compositor 
    19 15:47:56: MovableObjectFactory for type 'Entity' registered. 
    20 15:47:56: MovableObjectFactory for type 'Light' registered. 
    21 15:47:56: MovableObjectFactory for type 'BillboardSet' registered. 
    22 15:47:56: MovableObjectFactory for type 'ManualObject' registered. 
    23 15:47:56: MovableObjectFactory for type 'BillboardChain' registered. 
    24 15:47:56: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 15:47:56: Loading library .\RenderSystem_Direct3D9 
    26 15:47:56: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 15:47:56: D3D9: Driver Detection Starts 
    28 15:47:56: D3D9: Driver Detection Ends 
    29 15:47:56: Loading library .\Plugin_ParticleFX 
    30 15:47:56: Particle Emitter Type 'Point' registered 
    31 15:47:56: Particle Emitter Type 'Box' registered 
    32 15:47:56: Particle Emitter Type 'Ellipsoid' registered 
    33 15:47:56: Particle Emitter Type 'Cylinder' registered 
    34 15:47:56: Particle Emitter Type 'Ring' registered 
    35 15:47:56: Particle Emitter Type 'HollowEllipsoid' registered 
    36 15:47:56: Particle Affector Type 'LinearForce' registered 
    37 15:47:56: Particle Affector Type 'ColourFader' registered 
    38 15:47:56: Particle Affector Type 'ColourFader2' registered 
    39 15:47:56: Particle Affector Type 'ColourImage' registered 
    40 15:47:56: Particle Affector Type 'ColourInterpolator' registered 
    41 15:47:56: Particle Affector Type 'Scaler' registered 
    42 15:47:56: Particle Affector Type 'Rotator' registered 
    43 15:47:56: Particle Affector Type 'DirectionRandomiser' registered 
    44 15:47:56: Particle Affector Type 'DeflectorPlane' registered 
    45 15:47:56: Loading library .\Plugin_BSPSceneManager 
    46 15:47:56: Registering ResourceManager for type BspLevel 
    47 15:47:56: Loading library .\Plugin_OctreeSceneManager 
    48 15:47:56: Loading library .\Plugin_CgProgramManager 
    49 15:47:56: *-*-* OGRE Initialising 
    50 15:47:56: *-*-* Version 1.2.0 (Dagon) 
    51 15:47:56: Creating resource group Bootstrap 
    52 15:47:56: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 15:47:56: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 15:47:56: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 15:47:56: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 15:47:56: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 15:47:56: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 15:47:56: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 15:47:56: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 15:47:56: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 15:47:56: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 15:47:56: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 15:47:56: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 15:47:56: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 15:47:56: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 15:47:56: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 15:47:56: D3D9 : RenderSystem Option: Full Screen = No 
    68 15:47:56: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7800 GT 
    69 15:47:56: D3D9 : RenderSystem Option: VSync = No 
    70 15:47:56: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 15:47:57: D3D9 : Subsystem Initialising 
    72 15:47:57: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 15:47:57: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 15:47:57: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 15:47:57: Registering ResourceManager for type Texture 
    76 15:47:57: Registering ResourceManager for type GpuProgram 
    77 15:47:57: RenderSystem capabilities 
    78 15:47:57: ------------------------- 
    79 15:47:57:  * Hardware generation of mipmaps: yes 
    80 15:47:57:  * Texture blending: yes 
    81 15:47:57:  * Anisotropic texture filtering: yes 
    82 15:47:57:  * Dot product texture operation: yes 
    83 15:47:57:  * Cube mapping: yes 
    84 15:47:57:  * Hardware stencil buffer: yes 
    85 15:47:57:    - Stencil depth: 8 
    86 15:47:57:    - Two sided stencil support: yes 
    87 15:47:57:    - Wrap stencil values: yes 
    88 15:47:57:  * Hardware vertex / index buffers: yes 
    89 15:47:57:  * Vertex programs: yes 
    90 15:47:57:    - Max vertex program version: vs_3_0 
    91 15:47:57:  * Fragment programs: yes 
    92 15:47:57:    - Max fragment program version: ps_3_0 
    93 15:47:57:  * Texture Compression: yes 
    94 15:47:57:    - DXT: yes 
    95 15:47:57:    - VTC: no 
    96 15:47:57:  * Scissor Rectangle: yes 
    97 15:47:57:  * Hardware Occlusion Query: yes 
    98 15:47:57:  * User clip planes: yes 
    99 15:47:57:  * VET_UBYTE4 vertex element type: yes 
    100 15:47:57:  * Infinite far plane projection: yes 
    101 15:47:57:  * Hardware render-to-texture: yes 
    102 15:47:57:  * Floating point textures: yes 
    103 15:47:57:  * Non-power-of-two textures: yes 
    104 15:47:57:  * Volume textures: yes 
    105 15:47:57:  * Multiple Render Targets: 4 
    106 15:47:57:  * Max Point Size: 8192 
    107 15:47:57: *************************************** 
    108 15:47:57: *** D3D9 : Subsystem Initialised OK *** 
    109 15:47:57: *************************************** 
    110 15:47:57: ResourceBackgroundQueue - threading disabled 
    111 15:47:57: Particle Renderer Type 'billboard' registered 
    112 15:47:57: Particle Renderer Type 'sprite' registered 
    113 15:47:57: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    114 15:47:57: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 15:47:57: Parsing scripts for resource group Autodetect 
    116 15:47:57: Finished parsing scripts for resource group Autodetect 
    117 15:47:57: Parsing scripts for resource group Bootstrap 
    118 15:47:57: Parsing script OgreCore.material 
    119 15:47:57: Parsing script OgreProfiler.material 
    120 15:47:57: Parsing script Ogre.fontdef 
    121 15:47:57: Parsing script OgreDebugPanel.overlay 
    122 15:47:57: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    123 15:47:57: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    124 15:47:57: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    125 15:47:57: Font TrebuchetMSBoldusing texture size 512x512 
    126 15:47:57: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 15:47:57: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 15:47:57: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 15:47:57: Parsing script OgreLoadingPanel.overlay 
    130 15:47:57: Finished parsing scripts for resource group Bootstrap 
    131 15:47:57: Parsing scripts for resource group General 
    132 15:47:57: Parsing script GameTools.program 
    133 15:47:57: Parsing script atlascube.material 
    134 15:47:57: Parsing script Diffuse.material 
    135 15:47:58: An exception has been thrown! 
     120:00:41: Creating resource group General 
     220:00:41: Creating resource group Internal 
     320:00:41: Creating resource group Autodetect 
     420:00:41: Registering ResourceManager for type Material 
     520:00:41: Registering ResourceManager for type Mesh 
     620:00:41: Registering ResourceManager for type Skeleton 
     720:00:41: MovableObjectFactory for type 'ParticleSystem' registered. 
     820:00:41: Loading library OgrePlatform_d.dll 
     920:00:41: OverlayElementFactory for type Panel registered. 
     1020:00:41: OverlayElementFactory for type BorderPanel registered. 
     1120:00:41: OverlayElementFactory for type TextArea registered. 
     1220:00:41: Registering ResourceManager for type Font 
     1320:00:41: ArchiveFactory for archive type FileSystem registered. 
     1420:00:41: ArchiveFactory for archive type Zip registered. 
     1520:00:41: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1620:00:41: 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  
     1720:00:41: Registering ResourceManager for type HighLevelGpuProgram 
     1820:00:41: Registering ResourceManager for type Compositor 
     1920:00:41: MovableObjectFactory for type 'Entity' registered. 
     2020:00:41: MovableObjectFactory for type 'Light' registered. 
     2120:00:41: MovableObjectFactory for type 'BillboardSet' registered. 
     2220:00:41: MovableObjectFactory for type 'ManualObject' registered. 
     2320:00:41: MovableObjectFactory for type 'BillboardChain' registered. 
     2420:00:41: MovableObjectFactory for type 'RibbonTrail' registered. 
     2520:00:41: Loading library .\RenderSystem_Direct3D9 
     2620:00:41: D3D9 : Direct3D9 Rendering Subsystem created. 
     2720:00:41: D3D9: Driver Detection Starts 
     2820:00:41: D3D9: Driver Detection Ends 
     2920:00:41: Loading library .\Plugin_ParticleFX 
     3020:00:41: Particle Emitter Type 'Point' registered 
     3120:00:41: Particle Emitter Type 'Box' registered 
     3220:00:41: Particle Emitter Type 'Ellipsoid' registered 
     3320:00:41: Particle Emitter Type 'Cylinder' registered 
     3420:00:41: Particle Emitter Type 'Ring' registered 
     3520:00:41: Particle Emitter Type 'HollowEllipsoid' registered 
     3620:00:41: Particle Affector Type 'LinearForce' registered 
     3720:00:41: Particle Affector Type 'ColourFader' registered 
     3820:00:41: Particle Affector Type 'ColourFader2' registered 
     3920:00:41: Particle Affector Type 'ColourImage' registered 
     4020:00:41: Particle Affector Type 'ColourInterpolator' registered 
     4120:00:41: Particle Affector Type 'Scaler' registered 
     4220:00:41: Particle Affector Type 'Rotator' registered 
     4320:00:41: Particle Affector Type 'DirectionRandomiser' registered 
     4420:00:41: Particle Affector Type 'DeflectorPlane' registered 
     4520:00:41: Loading library .\Plugin_BSPSceneManager 
     4620:00:41: Registering ResourceManager for type BspLevel 
     4720:00:41: Loading library .\Plugin_OctreeSceneManager 
     4820:00:41: Loading library .\Plugin_CgProgramManager 
     4920:00:41: *-*-* OGRE Initialising 
     5020:00:41: *-*-* Version 1.2.0 (Dagon) 
     5120:00:41: Creating resource group Bootstrap 
     5220:00:41: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5320:00:41: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5420:00:41: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5520:00:41: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5620:00:41: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5720:00:41: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5820:00:41: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5920:00:41: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6020:00:41: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6120:00:41: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6220:00:41: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6320:00:41: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6420:00:41: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6520:00:41: D3D9 : RenderSystem Option: Anti aliasing = None 
     6620:00:41: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6720:00:41: D3D9 : RenderSystem Option: Full Screen = No 
     6820:00:41: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
     6920:00:41: D3D9 : RenderSystem Option: VSync = No 
     7020:00:41: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7120:00:42: D3D9 : Subsystem Initialising 
     7220:00:42: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7320:00:42: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7420:00:42: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7520:00:42: Registering ResourceManager for type Texture 
     7620:00:42: Registering ResourceManager for type GpuProgram 
     7720:00:42: RenderSystem capabilities 
     7820:00:42: ------------------------- 
     7920:00:42:  * Hardware generation of mipmaps: yes 
     8020:00:42:  * Texture blending: yes 
     8120:00:42:  * Anisotropic texture filtering: yes 
     8220:00:42:  * Dot product texture operation: yes 
     8320:00:42:  * Cube mapping: yes 
     8420:00:42:  * Hardware stencil buffer: yes 
     8520:00:42:    - Stencil depth: 8 
     8620:00:42:    - Two sided stencil support: yes 
     8720:00:42:    - Wrap stencil values: yes 
     8820:00:42:  * Hardware vertex / index buffers: yes 
     8920:00:42:  * Vertex programs: yes 
     9020:00:42:    - Max vertex program version: vs_3_0 
     9120:00:42:  * Fragment programs: yes 
     9220:00:42:    - Max fragment program version: ps_3_0 
     9320:00:42:  * Texture Compression: yes 
     9420:00:42:    - DXT: yes 
     9520:00:42:    - VTC: no 
     9620:00:42:  * Scissor Rectangle: yes 
     9720:00:42:  * Hardware Occlusion Query: yes 
     9820:00:42:  * User clip planes: yes 
     9920:00:42:  * VET_UBYTE4 vertex element type: yes 
     10020:00:42:  * Infinite far plane projection: yes 
     10120:00:42:  * Hardware render-to-texture: yes 
     10220:00:42:  * Floating point textures: yes 
     10320:00:42:  * Non-power-of-two textures: yes 
     10420:00:42:  * Volume textures: yes 
     10520:00:42:  * Multiple Render Targets: 4 
     10620:00:42:  * Max Point Size: 8192 
     10720:00:42: *************************************** 
     10820:00:42: *** D3D9 : Subsystem Initialised OK *** 
     10920:00:42: *************************************** 
     11020:00:42: ResourceBackgroundQueue - threading disabled 
     11120:00:42: Particle Renderer Type 'billboard' registered 
     11220:00:42: Particle Renderer Type 'sprite' registered 
     11320:00:42: 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 
     11420:00:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11520:00:42: Parsing scripts for resource group Autodetect 
     11620:00:42: Finished parsing scripts for resource group Autodetect 
     11720:00:42: Parsing scripts for resource group Bootstrap 
     11820:00:42: Parsing script OgreCore.material 
     11920:00:42: Parsing script OgreProfiler.material 
     12020:00:42: Parsing script Ogre.fontdef 
     12120:00:42: Parsing script OgreDebugPanel.overlay 
     12220:00:42: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12320:00:42: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12420:00:42: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12520:00:42: Font TrebuchetMSBoldusing texture size 512x512 
     12620:00:42: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12720:00:42: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12820:00:43: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12920:00:43: Parsing script OgreLoadingPanel.overlay 
     13020:00:43: Finished parsing scripts for resource group Bootstrap 
     13120:00:43: Parsing scripts for resource group General 
     13220:00:43: Parsing script GameTools.program 
     13320:00:43: Parsing script atlascube.material 
     13420:00:43: Parsing script Diffuse.material 
     13520:00:43: An exception has been thrown! 
    136136 
    137137----------------------------------- 
     
    144144Line: 768 
    145145Stack unwinding: <<beginning of stack>> 
    146 15:47:58: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     14620:00:43: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    147147 
    148148----------------------------------- 
     
    155155Line: 768 
    156156Stack unwinding: <<beginning of stack>> 
    157 15:47:58: An exception has been thrown! 
     15720:00:45: An exception has been thrown! 
    158158 
    159159----------------------------------- 
     
    166166Line: 768 
    167167Stack unwinding: <<beginning of stack>> 
    168 15:47:58: Error in material GameTools/CubeMap/Diffuse at line 74 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16820:00:45: Error in material GameTools/CubeMap/Diffuse at line 74 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    169169 
    170170----------------------------------- 
     
    177177Line: 768 
    178178Stack unwinding: <<beginning of stack>> 
    179 15:47:58: An exception has been thrown! 
     17920:00:45: An exception has been thrown! 
    180180 
    181181----------------------------------- 
     
    188188Line: 768 
    189189Stack unwinding: <<beginning of stack>> 
    190 15:47:58: Error in material GameTools/CubeMap/Diffuse at line 75 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     19020:00:45: Error in material GameTools/CubeMap/Diffuse at line 75 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    191191 
    192192----------------------------------- 
     
    199199Line: 768 
    200200Stack unwinding: <<beginning of stack>> 
    201 15:47:59: An exception has been thrown! 
     20120:01:51: An exception has been thrown! 
    202202 
    203203----------------------------------- 
     
    210210Line: 768 
    211211Stack unwinding: <<beginning of stack>> 
    212 15:47:59: Error in material GameTools/Diffuse2 at line 148 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21220:01:51: Error in material GameTools/Diffuse2 at line 148 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    213213 
    214214----------------------------------- 
     
    221221Line: 768 
    222222Stack unwinding: <<beginning of stack>> 
    223 15:47:59: An exception has been thrown! 
     22320:01:51: An exception has been thrown! 
    224224 
    225225----------------------------------- 
     
    232232Line: 768 
    233233Stack unwinding: <<beginning of stack>> 
    234 15:47:59: Error in material GameTools/Diffuse2 at line 149 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     23420:01:51: Error in material GameTools/Diffuse2 at line 149 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    235235 
    236236----------------------------------- 
     
    243243Line: 768 
    244244Stack unwinding: <<beginning of stack>> 
    245 15:47:59: Parsing script EnvMetals.material 
    246 15:47:59: An exception has been thrown! 
     24520:01:51: Parsing script EnvMetals.material 
     24620:01:51: An exception has been thrown! 
    247247 
    248248----------------------------------- 
     
    255255Line: 768 
    256256Stack unwinding: <<beginning of stack>> 
    257 15:47:59: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25720:01:51: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    258258 
    259259----------------------------------- 
     
    266266Line: 768 
    267267Stack unwinding: <<beginning of stack>> 
    268 15:47:59: An exception has been thrown! 
     26820:01:51: An exception has been thrown! 
    269269 
    270270----------------------------------- 
     
    277277Line: 768 
    278278Stack unwinding: <<beginning of stack>> 
    279 15:47:59: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27920:01:51: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    280280 
    281281----------------------------------- 
     
    288288Line: 768 
    289289Stack unwinding: <<beginning of stack>> 
    290 15:47:59: An exception has been thrown! 
     29020:01:51: An exception has been thrown! 
    291291 
    292292----------------------------------- 
     
    299299Line: 768 
    300300Stack unwinding: <<beginning of stack>> 
    301 15:47:59: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30120:01:51: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    302302 
    303303----------------------------------- 
     
    310310Line: 768 
    311311Stack unwinding: <<beginning of stack>> 
    312 15:47:59: An exception has been thrown! 
     31220:01:51: An exception has been thrown! 
    313313 
    314314----------------------------------- 
     
    321321Line: 768 
    322322Stack unwinding: <<beginning of stack>> 
    323 15:47:59: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32320:01:51: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    324324 
    325325----------------------------------- 
     
    332332Line: 768 
    333333Stack unwinding: <<beginning of stack>> 
    334 15:47:59: Parsing script GameTools.material 
    335 15:47:59: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
    336 15:47:59: An exception has been thrown! 
     33420:01:51: Parsing script GameTools.material 
     33520:01:51: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
     33620:01:51: An exception has been thrown! 
    337337 
    338338----------------------------------- 
     
    345345Line: 768 
    346346Stack unwinding: <<beginning of stack>> 
    347 15:47:59: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34720:01:51: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    348348 
    349349----------------------------------- 
     
    356356Line: 768 
    357357Stack unwinding: <<beginning of stack>> 
    358 15:47:59: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
    359 15:47:59: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    360 15:47:59: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
    361 15:47:59: Parsing script GameTools_HPS.material 
    362 15:47:59: An exception has been thrown! 
    363  
    364 ----------------------------------- 
    365 Details: 
    366 ----------------------------------- 
    367 Error #: 7 
    368 Function: GpuProgramParameters::getParamIndex 
    369 Description: Cannot find a parameter named worldViewProj.  
    370 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    371 Line: 768 
    372 Stack unwinding: <<beginning of stack>> 
    373 15:47:59: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    374  
    375 ----------------------------------- 
    376 Details: 
    377 ----------------------------------- 
    378 Error #: 7 
    379 Function: GpuProgramParameters::getParamIndex 
    380 Description: Cannot find a parameter named worldViewProj.  
    381 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    382 Line: 768 
    383 Stack unwinding: <<beginning of stack>> 
    384 15:47:59: An exception has been thrown! 
    385  
    386 ----------------------------------- 
    387 Details: 
    388 ----------------------------------- 
    389 Error #: 7 
    390 Function: GpuProgramParameters::getParamIndex 
    391 Description: Cannot find a parameter named worldViewProj.  
    392 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    393 Line: 768 
    394 Stack unwinding: <<beginning of stack>> 
    395 15:47:59: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    396  
    397 ----------------------------------- 
    398 Details: 
    399 ----------------------------------- 
    400 Error #: 7 
    401 Function: GpuProgramParameters::getParamIndex 
    402 Description: Cannot find a parameter named worldViewProj.  
    403 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    404 Line: 768 
    405 Stack unwinding: <<beginning of stack>> 
    406 15:47:59: An exception has been thrown! 
     35820:01:52: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
     35920:01:52: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     36020:01:52: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
     36120:01:52: Parsing script GameTools_HPS.material 
     36220:01:52: An exception has been thrown! 
     363 
     364----------------------------------- 
     365Details: 
     366----------------------------------- 
     367Error #: 7 
     368Function: GpuProgramParameters::getParamIndex 
     369Description: Cannot find a parameter named worldViewProj.  
     370File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     371Line: 768 
     372Stack unwinding: <<beginning of stack>> 
     37320:01:52: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     374 
     375----------------------------------- 
     376Details: 
     377----------------------------------- 
     378Error #: 7 
     379Function: GpuProgramParameters::getParamIndex 
     380Description: Cannot find a parameter named worldViewProj.  
     381File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     382Line: 768 
     383Stack unwinding: <<beginning of stack>> 
     38420:01:52: An exception has been thrown! 
     385 
     386----------------------------------- 
     387Details: 
     388----------------------------------- 
     389Error #: 7 
     390Function: GpuProgramParameters::getParamIndex 
     391Description: Cannot find a parameter named worldViewProj.  
     392File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     393Line: 768 
     394Stack unwinding: <<beginning of stack>> 
     39520:01:52: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     396 
     397----------------------------------- 
     398Details: 
     399----------------------------------- 
     400Error #: 7 
     401Function: GpuProgramParameters::getParamIndex 
     402Description: Cannot find a parameter named worldViewProj.  
     403File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     404Line: 768 
     405Stack unwinding: <<beginning of stack>> 
     40620:01:52: An exception has been thrown! 
    407407 
    408408----------------------------------- 
     
    415415Line: 768 
    416416Stack unwinding: <<beginning of stack>> 
    417 15:47:59: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41720:01:52: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    418418 
    419419----------------------------------- 
     
    426426Line: 768 
    427427Stack unwinding: <<beginning of stack>> 
    428 15:47:59: An exception has been thrown! 
    429  
    430 ----------------------------------- 
    431 Details: 
    432 ----------------------------------- 
    433 Error #: 7 
    434 Function: GpuProgramParameters::getParamIndex 
    435 Description: Cannot find a parameter named worldViewProj.  
    436 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    437 Line: 768 
    438 Stack unwinding: <<beginning of stack>> 
    439 15:47:59: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    440  
    441 ----------------------------------- 
    442 Details: 
    443 ----------------------------------- 
    444 Error #: 7 
    445 Function: GpuProgramParameters::getParamIndex 
    446 Description: Cannot find a parameter named worldViewProj.  
    447 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    448 Line: 768 
    449 Stack unwinding: <<beginning of stack>> 
    450 15:47:59: An exception has been thrown! 
     42820:01:52: An exception has been thrown! 
     429 
     430----------------------------------- 
     431Details: 
     432----------------------------------- 
     433Error #: 7 
     434Function: GpuProgramParameters::getParamIndex 
     435Description: Cannot find a parameter named worldViewProj.  
     436File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     437Line: 768 
     438Stack unwinding: <<beginning of stack>> 
     43920:01:52: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     440 
     441----------------------------------- 
     442Details: 
     443----------------------------------- 
     444Error #: 7 
     445Function: GpuProgramParameters::getParamIndex 
     446Description: Cannot find a parameter named worldViewProj.  
     447File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     448Line: 768 
     449Stack unwinding: <<beginning of stack>> 
     45020:01:52: An exception has been thrown! 
    451451 
    452452----------------------------------- 
     
    459459Line: 768 
    460460Stack unwinding: <<beginning of stack>> 
    461 15:47:59: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     46120:01:52: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    462462 
    463463----------------------------------- 
     
    470470Line: 768 
    471471Stack unwinding: <<beginning of stack>> 
    472 15:47:59: An exception has been thrown! 
     47220:01:52: An exception has been thrown! 
    473473 
    474474----------------------------------- 
     
    481481Line: 768 
    482482Stack unwinding: <<beginning of stack>> 
    483 15:47:59: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     48320:01:52: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    484484 
    485485----------------------------------- 
     
    492492Line: 768 
    493493Stack unwinding: <<beginning of stack>> 
    494 15:47:59: An exception has been thrown! 
    495  
    496 ----------------------------------- 
    497 Details: 
    498 ----------------------------------- 
    499 Error #: 7 
    500 Function: GpuProgramParameters::getParamIndex 
    501 Description: Cannot find a parameter named worldViewProj.  
    502 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    503 Line: 768 
    504 Stack unwinding: <<beginning of stack>> 
    505 15:47:59: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    506  
    507 ----------------------------------- 
    508 Details: 
    509 ----------------------------------- 
    510 Error #: 7 
    511 Function: GpuProgramParameters::getParamIndex 
    512 Description: Cannot find a parameter named worldViewProj.  
    513 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    514 Line: 768 
    515 Stack unwinding: <<beginning of stack>> 
    516 15:47:59: Parsing script GlassHead.material 
    517 15:47:59: An exception has been thrown! 
     49420:01:52: An exception has been thrown! 
     495 
     496----------------------------------- 
     497Details: 
     498----------------------------------- 
     499Error #: 7 
     500Function: GpuProgramParameters::getParamIndex 
     501Description: Cannot find a parameter named worldViewProj.  
     502File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     503Line: 768 
     504Stack unwinding: <<beginning of stack>> 
     50520:01:52: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     506 
     507----------------------------------- 
     508Details: 
     509----------------------------------- 
     510Error #: 7 
     511Function: GpuProgramParameters::getParamIndex 
     512Description: Cannot find a parameter named worldViewProj.  
     513File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     514Line: 768 
     515Stack unwinding: <<beginning of stack>> 
     51620:01:52: Parsing script GlassHead.material 
     51720:01:52: An exception has been thrown! 
    518518 
    519519----------------------------------- 
     
    526526Line: 768 
    527527Stack unwinding: <<beginning of stack>> 
    528 15:47:59: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52820:01:52: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    529529 
    530530----------------------------------- 
     
    537537Line: 768 
    538538Stack unwinding: <<beginning of stack>> 
    539 15:47:59: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    540 15:47:59: An exception has been thrown! 
    541  
    542 ----------------------------------- 
    543 Details: 
    544 ----------------------------------- 
    545 Error #: 7 
    546 Function: GpuProgramParameters::getParamIndex 
    547 Description: Cannot find a parameter named worldViewProj.  
    548 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    549 Line: 768 
    550 Stack unwinding: <<beginning of stack>> 
    551 15:47:59: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    552  
    553 ----------------------------------- 
    554 Details: 
    555 ----------------------------------- 
    556 Error #: 7 
    557 Function: GpuProgramParameters::getParamIndex 
    558 Description: Cannot find a parameter named worldViewProj.  
    559 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    560 Line: 768 
    561 Stack unwinding: <<beginning of stack>> 
    562 15:47:59: An exception has been thrown! 
     53920:01:52: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     54020:01:52: An exception has been thrown! 
     541 
     542----------------------------------- 
     543Details: 
     544----------------------------------- 
     545Error #: 7 
     546Function: GpuProgramParameters::getParamIndex 
     547Description: Cannot find a parameter named worldViewProj.  
     548File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     549Line: 768 
     550Stack unwinding: <<beginning of stack>> 
     55120:01:52: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     552 
     553----------------------------------- 
     554Details: 
     555----------------------------------- 
     556Error #: 7 
     557Function: GpuProgramParameters::getParamIndex 
     558Description: Cannot find a parameter named worldViewProj.  
     559File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     560Line: 768 
     561Stack unwinding: <<beginning of stack>> 
     56220:01:52: An exception has been thrown! 
    563563 
    564564----------------------------------- 
     
    571571Line: 768 
    572572Stack unwinding: <<beginning of stack>> 
    573 15:47:59: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     57320:01:52: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    574574 
    575575----------------------------------- 
     
    582582Line: 768 
    583583Stack unwinding: <<beginning of stack>> 
    584 15:48:00: An exception has been thrown! 
     58420:01:52: An exception has been thrown! 
    585585 
    586586----------------------------------- 
     
    593593Line: 768 
    594594Stack unwinding: <<beginning of stack>> 
    595 15:48:00: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     59520:01:52: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    596596 
    597597----------------------------------- 
     
    604604Line: 768 
    605605Stack unwinding: <<beginning of stack>> 
    606 15:48:00: Parsing script Glow.material 
    607 15:48:00: An exception has been thrown! 
     60620:01:53: Parsing script Glow.material 
     60720:01:53: An exception has been thrown! 
    608608 
    609609----------------------------------- 
     
    616616Line: 768 
    617617Stack unwinding: <<beginning of stack>> 
    618 15:48:00: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     61820:01:53: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    619619 
    620620----------------------------------- 
     
    627627Line: 768 
    628628Stack unwinding: <<beginning of stack>> 
    629 15:48:00: Parsing script hangar.material 
    630 15:48:00: Parsing script kupola.material 
    631 15:48:00: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    632 15:48:00: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    633 15:48:00: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    634 15:48:00: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    635 15:48:00: Parsing script Ogre.material 
    636 15:48:00: Parsing script Particles.material 
    637 15:48:00: An exception has been thrown! 
    638  
    639 ----------------------------------- 
    640 Details: 
    641 ----------------------------------- 
    642 Error #: 7 
    643 Function: GpuProgramParameters::getParamIndex 
    644 Description: Cannot find a parameter named worldViewProj.  
    645 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    646 Line: 768 
    647 Stack unwinding: <<beginning of stack>> 
    648 15:48:00: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    649  
    650 ----------------------------------- 
    651 Details: 
    652 ----------------------------------- 
    653 Error #: 7 
    654 Function: GpuProgramParameters::getParamIndex 
    655 Description: Cannot find a parameter named worldViewProj.  
    656 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    657 Line: 768 
    658 Stack unwinding: <<beginning of stack>> 
    659 15:48:00: An exception has been thrown! 
    660  
    661 ----------------------------------- 
    662 Details: 
    663 ----------------------------------- 
    664 Error #: 7 
    665 Function: GpuProgramParameters::getParamIndex 
    666 Description: Cannot find a parameter named worldViewProj.  
    667 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    668 Line: 768 
    669 Stack unwinding: <<beginning of stack>> 
    670 15:48:00: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    671  
    672 ----------------------------------- 
    673 Details: 
    674 ----------------------------------- 
    675 Error #: 7 
    676 Function: GpuProgramParameters::getParamIndex 
    677 Description: Cannot find a parameter named worldViewProj.  
    678 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    679 Line: 768 
    680 Stack unwinding: <<beginning of stack>> 
    681 15:48:00: Parsing script RaytraceDemo.material 
    682 15:48:00: Parsing script stairs.material 
    683 15:48:00: Parsing script X3D.material 
    684 15:48:00: Parsing script GameTools_Glow.compositor 
    685 15:48:00: Parsing script GameTools_ToneMap.compositor 
    686 15:48:00: Parsing script sample.fontdef 
    687 15:48:00: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    688 15:48:00: Parsing script GameTools.particle 
    689 15:48:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    690 15:48:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    691 15:48:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    692 15:48:00: Parsing script Compositor.overlay 
    693 15:48:00: Parsing script DP3.overlay 
    694 15:48:00: Parsing script Example-CubeMapping.overlay 
    695 15:48:00: Parsing script Example-DynTex.overlay 
    696 15:48:00: Parsing script Example-Water.overlay 
    697 15:48:00: Parsing script FullScreen.overlay 
    698 15:48:00: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    699 15:48:00: Parsing script Shadows.overlay 
    700 15:48:00: Finished parsing scripts for resource group General 
    701 15:48:00: Parsing scripts for resource group Internal 
    702 15:48:00: Finished parsing scripts for resource group Internal 
    703 15:48:00: Mesh: Loading ogrehead.mesh. 
    704 15:48:00: Texture: WeirdEye.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    705 15:48:00: Texture: GreenSkin.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    706 15:48:00: Texture: spheremap.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    707 15:48:00: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 
    708 15:48:00: An exception has been thrown! 
     62920:01:53: Parsing script hangar.material 
     63020:01:53: Parsing script kupola.material 
     63120:01:53: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     63220:01:53: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     63320:01:53: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     63420:01:53: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     63520:01:53: Parsing script Ogre.material 
     63620:01:53: Parsing script Particles.material 
     63720:01:53: An exception has been thrown! 
     638 
     639----------------------------------- 
     640Details: 
     641----------------------------------- 
     642Error #: 7 
     643Function: GpuProgramParameters::getParamIndex 
     644Description: Cannot find a parameter named worldViewProj.  
     645File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     646Line: 768 
     647Stack unwinding: <<beginning of stack>> 
     64820:01:53: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     649 
     650----------------------------------- 
     651Details: 
     652----------------------------------- 
     653Error #: 7 
     654Function: GpuProgramParameters::getParamIndex 
     655Description: Cannot find a parameter named worldViewProj.  
     656File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     657Line: 768 
     658Stack unwinding: <<beginning of stack>> 
     65920:01:53: An exception has been thrown! 
     660 
     661----------------------------------- 
     662Details: 
     663----------------------------------- 
     664Error #: 7 
     665Function: GpuProgramParameters::getParamIndex 
     666Description: Cannot find a parameter named worldViewProj.  
     667File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     668Line: 768 
     669Stack unwinding: <<beginning of stack>> 
     67020:01:53: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     671 
     672----------------------------------- 
     673Details: 
     674----------------------------------- 
     675Error #: 7 
     676Function: GpuProgramParameters::getParamIndex 
     677Description: Cannot find a parameter named worldViewProj.  
     678File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     679Line: 768 
     680Stack unwinding: <<beginning of stack>> 
     68120:01:53: Parsing script RaytraceDemo.material 
     68220:01:53: Parsing script stairs.material 
     68320:01:53: Parsing script X3D.material 
     68420:01:53: Parsing script GameTools_Glow.compositor 
     68520:01:53: Parsing script GameTools_ToneMap.compositor 
     68620:01:53: Parsing script sample.fontdef 
     68720:01:53: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     68820:01:53: Parsing script GameTools.particle 
     68920:01:53: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     69020:01:53: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     69120:01:53: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     69220:01:53: Parsing script Compositor.overlay 
     69320:01:53: Parsing script DP3.overlay 
     69420:01:53: Parsing script Example-CubeMapping.overlay 
     69520:01:53: Parsing script Example-DynTex.overlay 
     69620:01:53: Parsing script Example-Water.overlay 
     69720:01:53: Parsing script FullScreen.overlay 
     69820:01:53: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     69920:01:53: Parsing script Shadows.overlay 
     70020:01:54: Finished parsing scripts for resource group General 
     70120:01:54: Parsing scripts for resource group Internal 
     70220:01:54: Finished parsing scripts for resource group Internal 
     70320:01:54: Mesh: Loading ogrehead.mesh. 
     70420:01:54: Texture: WeirdEye.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70520:01:54: Texture: GreenSkin.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70620:01:54: Texture: spheremap.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70720:01:54: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 
     70820:01:54: An exception has been thrown! 
    709709 
    710710----------------------------------- 
     
    717717Line: 583 
    718718Stack unwinding: <<beginning of stack>> 
    719 15:48:00: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     71920:01:54: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    720720 
    721721----------------------------------- 
     
    728728Line: 583 
    729729Stack unwinding: <<beginning of stack>> 
    730 15:48:00: An exception has been thrown! 
     73020:01:54: An exception has been thrown! 
    731731 
    732732----------------------------------- 
     
    739739Line: 583 
    740740Stack unwinding: <<beginning of stack>> 
    741 15:48:00: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     74120:01:54: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    742742 
    743743----------------------------------- 
     
    750750Line: 583 
    751751Stack unwinding: <<beginning of stack>> 
    752 15:48:00: An exception has been thrown! 
     75220:01:54: An exception has been thrown! 
    753753 
    754754----------------------------------- 
     
    761761Line: 583 
    762762Stack unwinding: <<beginning of stack>> 
    763 15:48:00: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     76320:01:54: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    764764 
    765765----------------------------------- 
     
    772772Line: 583 
    773773Stack unwinding: <<beginning of stack>> 
    774 15:48:00: An exception has been thrown! 
     77420:01:54: An exception has been thrown! 
    775775 
    776776----------------------------------- 
     
    783783Line: 583 
    784784Stack unwinding: <<beginning of stack>> 
    785 15:48:00: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     78520:01:54: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    786786 
    787787----------------------------------- 
     
    794794Line: 583 
    795795Stack unwinding: <<beginning of stack>> 
    796 15:48:00: Mesh: Loading atlascube.mesh. 
    797 15:48:00: Texture: cubbe.jpg: Loading 1 faces(PF_B8G8R8,556x556x1) with 9 generated mipmaps from Image. Internal format is PF_X8R8G8B8,556x556x1. 
    798 15:48:01: Creating viewport on target 'rtt/51581056', 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 
    799 15:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    800 15:48:01: Creating viewport on target 'rtt/51581120', 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 
    801 15:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    802 15:48:01: Creating viewport on target 'rtt/51581184', 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 
    803 15:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    804 15:48:01: Creating viewport on target 'rtt/51581248', 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 
    805 15:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    806 15:48:01: Creating viewport on target 'rtt/51581312', 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 
    807 15:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    808 15:48:01: Creating viewport on target 'rtt/51581376', 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 
    809 15:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    810 15:48:01: WARNING: Texture instance 'object_SE_0_DISTANCECUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    811 15:48:01: Creating viewport on target 'rtt/51582656', 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 
    812 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    813 15:48:01: Creating viewport on target 'rtt/51582720', 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 
    814 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    815 15:48:01: Creating viewport on target 'rtt/51582784', 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 
    816 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    817 15:48:01: Creating viewport on target 'rtt/51582848', 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 
    818 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    819 15:48:01: Creating viewport on target 'rtt/51582912', 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 
    820 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    821 15:48:01: Creating viewport on target 'rtt/51582976', 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 
    822 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    823 15:48:01: Creating viewport on target 'rtt/51584000', 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 
    824 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    825 15:48:01: Creating viewport on target 'rtt/51584064', 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 
    826 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    827 15:48:01: Creating viewport on target 'rtt/51584128', 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 
    828 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    829 15:48:01: Creating viewport on target 'rtt/51584192', 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 
    830 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    831 15:48:01: Creating viewport on target 'rtt/51584256', 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 
    832 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    833 15:48:01: Creating viewport on target 'rtt/51584320', 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 
    834 15:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
    835 15:48:01: 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. 
    836 15:48:01: Win32Input8: DirectInput Activation Starts 
    837 15:48:01: Win32Input8: Establishing keyboard input. 
    838 15:48:01: Win32Input8: Keyboard input established. 
    839 15:48:01: Win32Input8: Initializing mouse input in immediate mode. 
    840 15:48:01: Win32Input8: Mouse input in immediate mode initialized. 
    841 15:48:01: Win32Input8: DirectInput OK. 
    842 15:48:01: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    843 15:48:13: Unregistering ResourceManager for type BspLevel 
    844 15:48:13: Render Target 'rtt/51584000' Average FPS: 29.2412 Best FPS: 43.7318 Worst FPS: 21.7822 
    845 15:48:13: Render Target 'rtt/51584064' Average FPS: 29.2415 Best FPS: 43.7318 Worst FPS: 21.7822 
    846 15:48:13: Render Target 'rtt/51584128' Average FPS: 29.236 Best FPS: 43.7743 Worst FPS: 21.7822 
    847 15:48:13: Render Target 'rtt/51584192' Average FPS: 30.7706 Best FPS: 43.1862 Worst FPS: 22.3414 
    848 15:48:13: Render Target 'rtt/51584256' Average FPS: 30.76 Best FPS: 43.1448 Worst FPS: 22.3414 
    849 15:48:13: Render Target 'rtt/51584320' Average FPS: 30.7706 Best FPS: 43.1448 Worst FPS: 22.3414 
    850 15:48:13: Render Target 'rtt/51582656' Average FPS: 29.2355 Best FPS: 43.7743 Worst FPS: 21.7822 
    851 15:48:13: Render Target 'rtt/51582720' Average FPS: 29.2381 Best FPS: 43.7318 Worst FPS: 21.8038 
    852 15:48:13: Render Target 'rtt/51582784' Average FPS: 29.2359 Best FPS: 43.7743 Worst FPS: 21.7822 
    853 15:48:13: Render Target 'rtt/51582848' Average FPS: 29.2374 Best FPS: 43.7743 Worst FPS: 21.8038 
    854 15:48:13: Render Target 'rtt/51582912' Average FPS: 29.2415 Best FPS: 43.7318 Worst FPS: 21.7822 
    855 15:48:13: Render Target 'rtt/51582976' Average FPS: 29.2359 Best FPS: 43.7743 Worst FPS: 21.7822 
    856 15:48:13: Render Target 'rtt/51581056' Average FPS: 5.20071 Best FPS: 7.48363 Worst FPS: 3.62976 
    857 15:48:13: Render Target 'rtt/51581120' Average FPS: 4.87062 Best FPS: 7.38689 Worst FPS: 3.56824 
    858 15:48:13: Render Target 'rtt/51581184' Average FPS: 4.64788 Best FPS: 7.27935 Worst FPS: 3.43348 
    859 15:48:13: Render Target 'rtt/51581248' Average FPS: 5.07516 Best FPS: 7.47664 Worst FPS: 3.76648 
    860 15:48:13: Render Target 'rtt/51581312' Average FPS: 5.27908 Best FPS: 7.46965 Worst FPS: 3.61664 
    861 15:48:13: Render Target 'rtt/51581376' Average FPS: 5.19112 Best FPS: 7.59013 Worst FPS: 3.6036 
    862 15:48:13: *-*-* OGRE Shutdown 
    863 15:48:13: Unregistering ResourceManager for type Compositor 
    864 15:48:13: Unregistering ResourceManager for type Font 
    865 15:48:13: Unregistering ResourceManager for type Skeleton 
    866 15:48:13: Unregistering ResourceManager for type Mesh 
    867 15:48:13: Unregistering ResourceManager for type HighLevelGpuProgram 
    868 15:48:13: Unloading library .\Plugin_CgProgramManager 
    869 15:48:13: Unloading library .\Plugin_OctreeSceneManager 
    870 15:48:13: Unloading library .\Plugin_BSPSceneManager 
    871 15:48:13: Unloading library .\Plugin_ParticleFX 
    872 15:48:13: Render Target 'OGRE Render Window' Average FPS: 30.785 Best FPS: 43.1448 Worst FPS: 22.3414 
    873 15:48:13: D3D9 : Shutting down cleanly. 
    874 15:48:13: Unregistering ResourceManager for type Texture 
    875 15:48:13: Unregistering ResourceManager for type GpuProgram 
    876 15:48:13: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    877 15:48:13: Unloading library .\RenderSystem_Direct3D9 
    878 15:48:13: Unregistering ResourceManager for type Material 
    879 15:48:13: Unloading library OgrePlatform_d.dll 
     79620:01:54: Mesh: Loading atlascube.mesh. 
     79720:01:54: Texture: cubbe.jpg: Loading 1 faces(PF_B8G8R8,556x556x1) with 9 generated mipmaps from Image. Internal format is PF_X8R8G8B8,556x556x1. 
     79820:01:54: Creating viewport on target 'rtt/28359008', 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 
     79920:01:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80020:01:54: Creating viewport on target 'rtt/28359072', 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 
     80120:01:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80220:01:54: Creating viewport on target 'rtt/28359136', 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 
     80320:01:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80420:01:54: Creating viewport on target 'rtt/28359200', 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 
     80520:01:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80620:01:54: Creating viewport on target 'rtt/28359264', 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 
     80720:01:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80820:01:54: Creating viewport on target 'rtt/28359328', 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 
     80920:01:54: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     81020:01:54: 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. 
     81120:01:54: Creating viewport on target 'rtt/28360608', 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 
     81220:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81320:01:54: Creating viewport on target 'rtt/28360672', 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 
     81420:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81520:01:54: Creating viewport on target 'rtt/28360736', 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 
     81620:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81720:01:54: Creating viewport on target 'rtt/28360800', 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 
     81820:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81920:01:54: Creating viewport on target 'rtt/28360864', 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 
     82020:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     82120:01:54: Creating viewport on target 'rtt/28360928', 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 
     82220:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     82320:01:54: Creating viewport on target 'rtt/28361984', 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 
     82420:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82520:01:54: Creating viewport on target 'rtt/28362048', 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 
     82620:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82720:01:54: Creating viewport on target 'rtt/28362112', 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 
     82820:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82920:01:54: Creating viewport on target 'rtt/28362176', 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 
     83020:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83120:01:54: Creating viewport on target 'rtt/28362240', 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 
     83220:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83320:01:54: Creating viewport on target 'rtt/28362304', 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 
     83420:01:54: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83520:01:54: 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. 
     83620:01:54: Win32Input8: DirectInput Activation Starts 
     83720:01:55: Win32Input8: Establishing keyboard input. 
     83820:01:55: Win32Input8: Keyboard input established. 
     83920:01:55: Win32Input8: Initializing mouse input in immediate mode. 
     84020:01:55: Win32Input8: Mouse input in immediate mode initialized. 
     84120:01:55: Win32Input8: DirectInput OK. 
     84220:01:55: 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. 
     84320:03:03: Unregistering ResourceManager for type BspLevel 
     84420:03:03: Render Target 'rtt/28361984' Average FPS: 20.3924 Best FPS: 34.6192 Worst FPS: 13.4875 
     84520:03:03: Render Target 'rtt/28362048' Average FPS: 20.3924 Best FPS: 34.6192 Worst FPS: 13.4875 
     84620:03:03: Render Target 'rtt/28362112' Average FPS: 20.3897 Best FPS: 34.6192 Worst FPS: 13.4875 
     84720:03:03: Render Target 'rtt/28362176' Average FPS: 20.3844 Best FPS: 34.8606 Worst FPS: 13.4615 
     84820:03:03: Render Target 'rtt/28362240' Average FPS: 20.3886 Best FPS: 34.8953 Worst FPS: 13.4745 
     84920:03:03: Render Target 'rtt/28362304' Average FPS: 20.3854 Best FPS: 34.8953 Worst FPS: 13.4745 
     85020:03:03: Render Target 'rtt/28360608' Average FPS: 20.3895 Best FPS: 34.6192 Worst FPS: 13.4875 
     85120:03:03: Render Target 'rtt/28360672' Average FPS: 20.3964 Best FPS: 34.585 Worst FPS: 13.5005 
     85220:03:03: Render Target 'rtt/28360736' Average FPS: 20.3999 Best FPS: 34.6192 Worst FPS: 13.5005 
     85320:03:03: Render Target 'rtt/28360800' Average FPS: 20.3885 Best FPS: 34.6192 Worst FPS: 13.4875 
     85420:03:03: Render Target 'rtt/28360864' Average FPS: 20.3834 Best FPS: 34.6192 Worst FPS: 13.4745 
     85520:03:03: Render Target 'rtt/28360928' Average FPS: 20.3875 Best FPS: 34.6192 Worst FPS: 13.4875 
     85620:03:03: Render Target 'rtt/28359008' Average FPS: 3.94343 Best FPS: 5.76369 Worst FPS: 2.55973 
     85720:03:03: Render Target 'rtt/28359072' Average FPS: 3.93738 Best FPS: 5.77478 Worst FPS: 2.63389 
     85820:03:03: Render Target 'rtt/28359136' Average FPS: 3.9242 Best FPS: 5.76923 Worst FPS: 2.65487 
     85920:03:03: Render Target 'rtt/28359200' Average FPS: 3.90702 Best FPS: 5.77478 Worst FPS: 2.71003 
     86020:03:03: Render Target 'rtt/28359264' Average FPS: 3.88718 Best FPS: 5.78035 Worst FPS: 2.66193 
     86120:03:03: Render Target 'rtt/28359328' Average FPS: 3.93207 Best FPS: 5.76923 Worst FPS: 2.50627 
     86220:03:03: *-*-* OGRE Shutdown 
     86320:03:03: Unregistering ResourceManager for type Compositor 
     86420:03:03: Unregistering ResourceManager for type Font 
     86520:03:03: Unregistering ResourceManager for type Skeleton 
     86620:03:03: Unregistering ResourceManager for type Mesh 
     86720:03:03: Unregistering ResourceManager for type HighLevelGpuProgram 
     86820:03:03: Unloading library .\Plugin_CgProgramManager 
     86920:03:03: Unloading library .\Plugin_OctreeSceneManager 
     87020:03:03: Unloading library .\Plugin_BSPSceneManager 
     87120:03:03: Unloading library .\Plugin_ParticleFX 
     87220:03:03: Render Target 'OGRE Render Window' Average FPS: 27.8495 Best FPS: 60.8782 Worst FPS: 13.4745 
     87320:03:03: D3D9 : Shutting down cleanly. 
     87420:03:03: Unregistering ResourceManager for type Texture 
     87520:03:03: Unregistering ResourceManager for type GpuProgram 
     87620:03:03: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     87720:03:03: Unloading library .\RenderSystem_Direct3D9 
     87820:03:03: Unregistering ResourceManager for type Material 
     87920:03:03: Unloading library OgrePlatform_d.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log

    r1519 r1525  
    11 ----------------------------------------------------------------------------------------------------------------------------------  
    2 |                                          Memory leak report for:  09/27/2006 15:48:13                                            | 
     2|                                          Memory leak report for:  09/27/2006 20:03:03                                            | 
    33 ----------------------------------------------------------------------------------------------------------------------------------  
    44 
     
    99Number Reported   Reported    Actual     Actual     Unused    Method  Dealloc Realloc Allocated by  
    1010------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------  
    11 020192 0x01FD9938 0x00000030 0x01FD9928 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    12 020193 0x01FD99B8 0x00000030 0x01FD99A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    13 020194 0x01FD9A38 0x00000030 0x01FD9A28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    14 020195 0x01FD9AB8 0x00000030 0x01FD9AA8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    15 020196 0x01FD9B38 0x00000030 0x01FD9B28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    16 020197 0x01FD9BB8 0x0000000C 0x01FD9BA8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    17 020198 0x01FD9C10 0x00000080 0x01FD9C00 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
    18 020199 0x01FD9CE0 0x00000030 0x01FD9CD0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    19 020200 0x01FD9D60 0x00000030 0x01FD9D50 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    20 020201 0x01FD9DE0 0x00000030 0x01FD9DD0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    21 020202 0x01FD9E60 0x00000030 0x01FD9E50 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    22 020203 0x01FD9EE0 0x00000030 0x01FD9ED0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    23 020204 0x01FD9F60 0x00000030 0x01FD9F50 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    24 020205 0x01FDA030 0x00000030 0x01FDA020 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    25 020206 0x01FDA100 0x00000030 0x01FDA0F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    26 020207 0x01FDA180 0x00000030 0x01FDA170 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    27 020208 0x01FDA200 0x00000030 0x01FDA1F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    28 020209 0x01FDA280 0x00000030 0x01FDA270 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    29 020210 0x01FDA350 0x0000000C 0x01FDA340 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    30 020120 0x01FDAC40 0x00000048 0x01FDAC30 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 
    31 020121 0x01FDACD8 0x00000030 0x01FDACC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    32 020122 0x01FDAD58 0x00000030 0x01FDAD48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    33 020123 0x01FDADD8 0x00000030 0x01FDADC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    34 020106 0x01FDB070 0x00000030 0x01FDB060 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    35 020104 0x01FDBC78 0x00000018 0x01FDBC68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    36 020112 0x01FE1CE0 0x00000018 0x01FE1CD0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    37 020113 0x01FE1D48 0x00000018 0x01FE1D38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    38 007062 0x01FE2C98 0x00000028 0x01FE2C88 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    39 020103 0x01FF4C58 0x0000000C 0x01FF4C48 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    40 020101 0x01FF6AF0 0x0000000C 0x01FF6AE0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    41 020164 0x0200F100 0x0000000C 0x0200F0F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    42 020165 0x0200F158 0x00000068 0x0200F148 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
    43 020166 0x0200F210 0x00000030 0x0200F200 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    44 020167 0x0200F290 0x00000030 0x0200F280 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    45 020168 0x0200F360 0x00000030 0x0200F350 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    46 020169 0x0200F430 0x00000030 0x0200F420 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    47 020170 0x0200F500 0x0000000C 0x0200F4F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    48 020171 0x0200F558 0x00000068 0x0200F548 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
    49 020172 0x0200F610 0x00000030 0x0200F600 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    50 020173 0x0200F690 0x00000030 0x0200F680 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    51 020174 0x0200F760 0x00000030 0x0200F750 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    52 020175 0x0200F830 0x00000030 0x0200F820 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    53 020176 0x0200F900 0x0000000C 0x0200F8F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    54 020177 0x0200F958 0x00000030 0x0200F948 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
    55 020178 0x0200F9D8 0x00000030 0x0200F9C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    56 020179 0x0200FA58 0x00000030 0x0200FA48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    57 020180 0x0200FAD8 0x0000000C 0x0200FAC8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    58 020181 0x0200FB30 0x00000030 0x0200FB20 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
    59 020182 0x0200FBB0 0x00000030 0x0200FBA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    60 020183 0x0200FC30 0x00000030 0x0200FC20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    61 020184 0x0200FCB0 0x0000000C 0x0200FCA0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    62 020185 0x0200FD08 0x000000B4 0x0200FCF8 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
    63 020186 0x0200FE08 0x00000030 0x0200FDF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    64 020187 0x0200FE88 0x00000030 0x0200FE78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    65 020188 0x0200FF08 0x00000030 0x0200FEF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    66 020189 0x0200FF88 0x00000030 0x0200FF78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    67 020190 0x02010008 0x00000030 0x0200FFF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    68 020191 0x02010088 0x00000030 0x02010078 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    69 006628 0x02021AC8 0x00000048 0x02021AB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    70 006632 0x02021B60 0x00000048 0x02021B50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    71 006642 0x02021BF8 0x00000048 0x02021BE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    72 006636 0x02021C98 0x00000028 0x02021C88 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    73 006637 0x02021D10 0x00000048 0x02021D00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    74 006650 0x02021E00 0x00000048 0x02021DF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    75 006646 0x02021F28 0x00000048 0x02021F18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    76 006654 0x02021FC0 0x00000048 0x02021FB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    77 006658 0x02022058 0x00000048 0x02022048 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    78 006662 0x020220F0 0x00000048 0x020220E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    79 006623 0x02024200 0x00000048 0x020241F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    80 006622 0x020244D0 0x00000028 0x020244C0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    81 006867 0x02025188 0x00000028 0x02025178 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    82 006868 0x02025200 0x00000048 0x020251F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    83 006873 0x02025298 0x00000048 0x02025288 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    84 006877 0x02025330 0x00000048 0x02025320 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    85 006881 0x020253C8 0x00000028 0x020253B8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    86 006882 0x02025440 0x00000048 0x02025430 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    87 006887 0x02025530 0x00000048 0x02025520 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    88 006891 0x02025618 0x00000048 0x02025608 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    89 006895 0x020256B0 0x00000048 0x020256A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    90 006899 0x02025748 0x00000048 0x02025738 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    91 006903 0x020257E0 0x00000048 0x020257D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    92 006907 0x02025878 0x00000048 0x02025868 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    93 007063 0x02025DC8 0x00000048 0x02025DB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    94 007068 0x02025E60 0x00000048 0x02025E50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    95 007072 0x02025EF8 0x00000048 0x02025EE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    96 007076 0x02025F90 0x00000048 0x02025F80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    97 007080 0x02026028 0x00000028 0x02026018 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    98 007081 0x020260A0 0x00000048 0x02026090 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    99 007086 0x02026190 0x00000048 0x02026180 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    100 007090 0x02026228 0x00000048 0x02026218 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    101 007094 0x020262C0 0x00000048 0x020262B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    102 007242 0x02027730 0x00000028 0x02027720 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    103 007243 0x020277A8 0x00000048 0x02027798 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    104 007248 0x02027890 0x00000048 0x02027880 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    105 007252 0x02027928 0x00000048 0x02027918 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    106 007256 0x020279C0 0x00000048 0x020279B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    107 007260 0x02027A58 0x00000028 0x02027A48 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    108 007261 0x02027AD0 0x00000048 0x02027AC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    109 007266 0x02027BC0 0x00000048 0x02027BB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    110 007270 0x02027C58 0x00000048 0x02027C48 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    111 007274 0x02027CF0 0x00000048 0x02027CE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    112 007414 0x02029E58 0x00000028 0x02029E48 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    113 020117 0x0202C298 0x00000018 0x0202C288 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    114 020118 0x0202C300 0x00000018 0x0202C2F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    115 020119 0x0202C368 0x00000018 0x0202C358 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    116 020114 0x0202CB88 0x00000018 0x0202CB78 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    117 020115 0x0202CBF0 0x00000018 0x0202CBE0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    118 020116 0x0202CC58 0x00000018 0x0202CC48 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    119 007415 0x02043FD0 0x00000048 0x02043FC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    120 007420 0x02044068 0x00000048 0x02044058 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    121 007424 0x02044100 0x00000048 0x020440F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    122 007428 0x02044198 0x00000048 0x02044188 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    123 007432 0x02044230 0x00000028 0x02044220 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    124 007433 0x020442A8 0x00000048 0x02044298 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    125 007438 0x02044398 0x00000048 0x02044388 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    126 007442 0x02044430 0x00000048 0x02044420 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    127 007446 0x020444C8 0x00000048 0x020444B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    128 007586 0x02045E28 0x00000028 0x02045E18 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    129 007587 0x02045EA0 0x00000048 0x02045E90 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    130 007592 0x02045F88 0x00000048 0x02045F78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    131 007596 0x02046020 0x00000048 0x02046010 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    132 007600 0x020460B8 0x00000048 0x020460A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    133 007604 0x02046150 0x00000028 0x02046140 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    134 007605 0x020461C8 0x00000048 0x020461B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    135 007610 0x020462B8 0x00000048 0x020462A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    136 007614 0x02046350 0x00000048 0x02046340 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    137 007618 0x020463E8 0x00000048 0x020463D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    138 008012 0x0204A490 0x00000048 0x0204A480 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    139 008006 0x0204B6C0 0x00000028 0x0204B6B0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    140 008007 0x0204B738 0x00000048 0x0204B728 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    141 020129 0x0204C338 0x0000000C 0x0204C328 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    142 020107 0x0204C4A8 0x00000018 0x0204C498 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    143 020109 0x0204C510 0x00000018 0x0204C500 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    144 020138 0x0204D068 0x00000030 0x0204D058 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    145 020139 0x0204D0E8 0x0000000C 0x0204D0D8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    146 020140 0x0204D140 0x0000004C 0x0204D130 0x0000006C 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
    147 020141 0x0204D1D8 0x00000030 0x0204D1C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    148 020142 0x0204D258 0x00000030 0x0204D248 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    149 020143 0x0204D2D8 0x00000030 0x0204D2C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    150 020144 0x0204D358 0x00000030 0x0204D348 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    151 020145 0x0204D3D8 0x00000030 0x0204D3C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    152 020146 0x0204D458 0x00000030 0x0204D448 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    153 020147 0x0204D4D8 0x00000030 0x0204D4C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    154 020148 0x0204D558 0x00000030 0x0204D548 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    155 020149 0x0204D5D8 0x00000030 0x0204D5C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    156 020130 0x0204D8A0 0x00000048 0x0204D890 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 
    157 020132 0x0204D938 0x00000030 0x0204D928 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    158 020133 0x0204D9B8 0x00000030 0x0204D9A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    159 020134 0x0204DA38 0x00000030 0x0204DA28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    160 020135 0x0204DAB8 0x00000030 0x0204DAA8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    161 020136 0x0204DB38 0x00000030 0x0204DB28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    162 020137 0x0204DBB8 0x00000030 0x0204DBA8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    163 020124 0x0204DD10 0x00000030 0x0204DD00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    164 020125 0x0204DD90 0x00000030 0x0204DD80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    165 020126 0x0204DE10 0x00000030 0x0204DE00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    166 020127 0x0204DE90 0x00000030 0x0204DE80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    167 020128 0x0204DF10 0x00000030 0x0204DF00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    168 020131 0x0204DF90 0x00000030 0x0204DF80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    169 008855 0x0206AFF0 0x00000048 0x0206AFE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    170 008859 0x0206B088 0x00000048 0x0206B078 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    171 008863 0x0206B120 0x00000048 0x0206B110 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    172 008849 0x0206DE08 0x00000028 0x0206DDF8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    173 008850 0x0206DE80 0x00000048 0x0206DE70 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    174 009029 0x0206E870 0x00000028 0x0206E860 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    175 009030 0x0206EF90 0x00000048 0x0206EF80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    176 009035 0x0206F078 0x00000048 0x0206F068 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    177 009039 0x0206F110 0x00000048 0x0206F100 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    178 009043 0x0206F1A8 0x00000048 0x0206F198 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    179 009047 0x0206F240 0x00000048 0x0206F230 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    180 009051 0x0206F328 0x00000028 0x0206F318 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    181 009052 0x0206F3A0 0x00000048 0x0206F390 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    182 009057 0x0206F490 0x00000048 0x0206F480 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    183 009061 0x0206F528 0x00000028 0x0206F518 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    184 009062 0x033F0100 0x00000048 0x033F00F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    185 009067 0x033F0198 0x00000048 0x033F0188 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    186 009071 0x033F0230 0x00000048 0x033F0220 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    187 009868 0x034033E8 0x00000028 0x034033D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    188 009855 0x03403470 0x00000048 0x03403460 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    189 009882 0x03403508 0x00000028 0x034034F8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    190 009860 0x03403590 0x00000048 0x03403580 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    191 009864 0x03403628 0x00000048 0x03403618 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    192 009869 0x034036C0 0x00000048 0x034036B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    193 009874 0x034037E0 0x00000048 0x034037D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    194 009878 0x03403878 0x00000048 0x03403868 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    195 009883 0x03403910 0x00000048 0x03403900 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    196 009888 0x03403A30 0x00000048 0x03403A20 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    197 009892 0x03403AC8 0x00000048 0x03403AB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    198 009896 0x03403BB0 0x00000048 0x03403BA0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    199 009854 0x0340AD30 0x00000028 0x0340AD20 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    200 011008 0x0341D1A8 0x00000028 0x0341D198 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    201 011009 0x0341D220 0x00000048 0x0341D210 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    202 021635 0x034229E8 0x0000021C 0x034229D8 0x0000023C 0x00000000 new         N       N    ogrerenderingrun.cpp(198) OgreRenderingRun::renderFullscreenQuad 
    203 010785 0x0342B710 0x00000048 0x0342B700 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    204 010853 0x0342C088 0x00000028 0x0342C078 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    205 010854 0x0342C100 0x00000048 0x0342C0F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    206 010859 0x0342C310 0x00000048 0x0342C300 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    207 010784 0x03430FB8 0x00000028 0x03430FA8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    208 011014 0x0343ACB8 0x00000048 0x0343ACA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    209 020110 0x0343BAE0 0x00000018 0x0343BAD0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    210 020111 0x0343BB48 0x00000018 0x0343BB38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    211 054572 0x03440A40 0x00000010 0x03440A30 0x00000030 0x00000000 new         N       N    ??(0) ?? 
    212 011878 0x034426B0 0x00000028 0x034426A0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    213 011879 0x03442728 0x00000048 0x03442718 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    214 011884 0x03442860 0x00000048 0x03442850 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    215 011888 0x03442948 0x00000048 0x03442938 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    216 020108 0x0349E7B8 0x00000008 0x0349E7A8 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
    217 020100 0x0349E888 0x00000140 0x0349E878 0x00000160 0x00000000 new         N       N    ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 
    218 020102 0x0349EA18 0x00000018 0x0349EA08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    219 020150 0x0349F858 0x0000000C 0x0349F848 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    220 020151 0x0349F8B0 0x0000007C 0x0349F8A0 0x0000009C 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
    221 020152 0x0349F978 0x00000030 0x0349F968 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    222 020153 0x0349F9F8 0x00000030 0x0349F9E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    223 020154 0x0349FA78 0x00000030 0x0349FA68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    224 020155 0x0349FAF8 0x00000030 0x0349FAE8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    225 020156 0x0349FB78 0x00000030 0x0349FB68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    226 020157 0x0349FBF8 0x00000030 0x0349FBE8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    227 020158 0x0349FC78 0x00000030 0x0349FC68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    228 020159 0x0349FCF8 0x00000030 0x0349FCE8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    229 020160 0x0349FDC8 0x00000030 0x0349FDB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    230 020161 0x0349FE98 0x00000030 0x0349FE88 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    231 020162 0x0349FF18 0x00000030 0x0349FF08 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    232 020163 0x0349FF98 0x00000030 0x0349FF88 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    233 020105 0x034B0DF8 0x00000018 0x034B0DE8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    234 020893 0x03605D08 0x000000C0 0x03605CF8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    235 020895 0x03605E18 0x0000001C 0x03605E08 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    236 020896 0x03605E80 0x000000C4 0x03605E70 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    237 020897 0x03605F90 0x00000018 0x03605F80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    238 020898 0x03605FF8 0x00000018 0x03605FE8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    239 020899 0x03606060 0x0000000C 0x03606050 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    240 020901 0x03606108 0x00000018 0x036060F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    241 020908 0x03606170 0x0000004C 0x03606160 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    242 020909 0x03606208 0x0000008C 0x036061F8 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
    243 020910 0x03606380 0x00000030 0x03606370 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    244 021030 0x0360C7C8 0x00000018 0x0360C7B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    245 021043 0x0360C830 0x00000050 0x0360C820 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
    246 021044 0x0360C8D0 0x0000008C 0x0360C8C0 0x000000AC 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(67) OgreConvolvedCubeMapRenderTechnique::cr 
    247 021045 0x0360C9A8 0x00000030 0x0360C998 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    248 021285 0x0361A658 0x00000008 0x0361A648 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    249 021164 0x0361A870 0x00000018 0x0361A860 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    250 021165 0x0361A8D8 0x0000008C 0x0361A8C8 0x000000AC 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(81) OgreConvolvedCubeMapRenderTechnique::cr 
    251 021166 0x0361A9B0 0x00000030 0x0361A9A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    252 021288 0x0361CFC0 0x0000001C 0x0361CFB0 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    253 021284 0x0361F238 0x00000018 0x0361F228 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    254 021286 0x03620B40 0x000000C0 0x03620B30 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    255 021337 0x03620C50 0x00000008 0x03620C40 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    256 021290 0x03620CA8 0x00000018 0x03620C98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    257 021297 0x03620D10 0x0000004C 0x03620D00 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    258 021310 0x03620DA8 0x00000050 0x03620D98 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
    259 021311 0x03620E48 0x00000008 0x03620E38 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    260 021312 0x03620EA0 0x000000C0 0x03620E90 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    261 021314 0x03620FB0 0x0000001C 0x03620FA0 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    262 021363 0x03621018 0x00000008 0x03621008 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    263 021316 0x03621070 0x00000018 0x03621060 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    264 021323 0x036210D8 0x0000004C 0x036210C8 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    265 021336 0x03621170 0x00000050 0x03621160 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
    266 021338 0x03621210 0x000000C0 0x03621200 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    267 021340 0x03621320 0x0000001C 0x03621310 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    268 021341 0x03621388 0x00000010 0x03621378 0x00000030 0x00000000 new         N       N    ??(0) ?? 
    269 021342 0x036213E8 0x00000018 0x036213D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    270 021349 0x03621450 0x0000004C 0x03621440 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    271 021362 0x036214E8 0x00000050 0x036214D8 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
     11020138 0x00CD6868 0x00000030 0x00CD6858 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     12020139 0x00CD68E8 0x00000030 0x00CD68D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     13020140 0x00CD6968 0x00000030 0x00CD6958 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     14020142 0x00CD69E8 0x0000007C 0x00CD69D8 0x0000009C 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
     15020143 0x00CD6AB0 0x00000030 0x00CD6AA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     16020144 0x00CD6B30 0x00000030 0x00CD6B20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     17020145 0x00CD6BB0 0x00000030 0x00CD6BA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     18020146 0x00CD6C30 0x00000030 0x00CD6C20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     19020147 0x00CD6CB0 0x00000030 0x00CD6CA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     20020148 0x00CD6D30 0x00000030 0x00CD6D20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     21020149 0x00CD6DB0 0x00000030 0x00CD6DA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     22020150 0x00CD6E30 0x00000030 0x00CD6E20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     23020151 0x00CD6EB0 0x00000030 0x00CD6EA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     24020152 0x00CD6F30 0x00000030 0x00CD6F20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     25020153 0x00CD6FB0 0x00000030 0x00CD6FA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     26020154 0x00CD7030 0x00000030 0x00CD7020 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     27020155 0x00CD70B0 0x0000000C 0x00CD70A0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     28020157 0x00CD7108 0x00000030 0x00CD70F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     29020117 0x00CD72F0 0x00000030 0x00CD72E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     30020118 0x00CD7370 0x00000030 0x00CD7360 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     31020119 0x00CD73F0 0x00000030 0x00CD73E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     32020121 0x00CD7470 0x00000048 0x00CD7460 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 
     33020122 0x00CD7508 0x00000030 0x00CD74F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     34020123 0x00CD7588 0x00000030 0x00CD7578 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     35020124 0x00CD7608 0x00000030 0x00CD75F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     36020091 0x00CD7740 0x00000140 0x00CD7730 0x00000160 0x00000000 new         N       N    ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 
     37020109 0x00CD78D0 0x00000018 0x00CD78C0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     38020110 0x00CD7938 0x00000018 0x00CD7928 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     39020111 0x00CD7B70 0x00000048 0x00CD7B60 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 
     40020112 0x00CD7C08 0x00000030 0x00CD7BF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     41020113 0x00CD7C88 0x00000030 0x00CD7C78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     42020114 0x00CD7D08 0x00000030 0x00CD7CF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     43020115 0x00CD7D88 0x00000030 0x00CD7D78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     44020116 0x00CD7E08 0x00000030 0x00CD7DF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     45020120 0x00CD7E88 0x0000000C 0x00CD7E78 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     46020101 0x00CD7F70 0x00000018 0x00CD7F60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     47020102 0x00CD7FD8 0x00000018 0x00CD7FC8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     48020099 0x00CF1B80 0x00000008 0x00CF1B70 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
     49020092 0x00CF3A18 0x0000000C 0x00CF3A08 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     50020184 0x00D0C028 0x00000030 0x00D0C018 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     51020185 0x00D0C0A8 0x00000030 0x00D0C098 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     52020186 0x00D0C128 0x00000030 0x00D0C118 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     53020187 0x00D0C1A8 0x00000030 0x00D0C198 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     54020188 0x00D0C228 0x0000000C 0x00D0C218 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     55020189 0x00D0C280 0x00000080 0x00D0C270 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
     56020190 0x00D0C350 0x00000030 0x00D0C340 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     57020191 0x00D0C3D0 0x00000030 0x00D0C3C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     58020192 0x00D0C450 0x00000030 0x00D0C440 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     59020193 0x00D0C4D0 0x00000030 0x00D0C4C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     60020194 0x00D0C550 0x00000030 0x00D0C540 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     61020195 0x00D0C5D0 0x00000030 0x00D0C5C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     62020196 0x00D0C6A0 0x00000030 0x00D0C690 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     63020197 0x00D0C770 0x00000030 0x00D0C760 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     64020198 0x00D0C7F0 0x00000030 0x00D0C7E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     65020199 0x00D0C870 0x00000030 0x00D0C860 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     66020200 0x00D0C8F0 0x00000030 0x00D0C8E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     67020201 0x00D0C9C0 0x0000000C 0x00D0C9B0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     68006633 0x00D1E920 0x00000048 0x00D1E910 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     69006623 0x00D1F590 0x00000048 0x00D1F580 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     70006627 0x00D1F6B0 0x00000028 0x00D1F6A0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     71006628 0x00D1F728 0x00000048 0x00D1F718 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     72006641 0x00D1F818 0x00000048 0x00D1F808 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     73006637 0x00D1F940 0x00000048 0x00D1F930 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     74006645 0x00D1F9D8 0x00000048 0x00D1F9C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     75006649 0x00D1FA70 0x00000048 0x00D1FA60 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     76006653 0x00D1FB08 0x00000048 0x00D1FAF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     77006858 0x00D20780 0x00000028 0x00D20770 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     78006859 0x00D20EA0 0x00000048 0x00D20E90 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     79006872 0x00D20F38 0x00000028 0x00D20F28 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     80006613 0x00D22838 0x00000028 0x00D22828 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     81006614 0x00D22ED0 0x00000048 0x00D22EC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     82006619 0x00D22F68 0x00000048 0x00D22F58 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     83006864 0x00D23000 0x00000048 0x00D22FF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     84006868 0x00D23098 0x00000048 0x00D23088 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     85006873 0x00D23130 0x00000048 0x00D23120 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     86006878 0x00D232A8 0x00000048 0x00D23298 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     87006882 0x00D23340 0x00000048 0x00D23330 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     88006886 0x00D233D8 0x00000048 0x00D233C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     89006890 0x00D23470 0x00000048 0x00D23460 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     90006894 0x00D23508 0x00000048 0x00D234F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     91006898 0x00D235A0 0x00000048 0x00D23590 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     92007053 0x00D23A18 0x00000028 0x00D23A08 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     93007054 0x00D23A90 0x00000048 0x00D23A80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     94007059 0x00D23B28 0x00000048 0x00D23B18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     95007063 0x00D23BC0 0x00000048 0x00D23BB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     96007067 0x00D23C58 0x00000048 0x00D23C48 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     97007071 0x00D23CF0 0x00000028 0x00D23CE0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     98007072 0x00D23D68 0x00000048 0x00D23D58 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     99007077 0x00D23E58 0x00000048 0x00D23E48 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     100007081 0x00D23EF0 0x00000048 0x00D23EE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     101007085 0x00D23F88 0x00000048 0x00D23F78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     102007406 0x00D24F40 0x00000048 0x00D24F30 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     103007411 0x00D24FD8 0x00000048 0x00D24FC8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     104007415 0x00D25070 0x00000048 0x00D25060 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     105007419 0x00D25108 0x00000048 0x00D250F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     106007423 0x00D251A0 0x00000028 0x00D25190 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     107007424 0x00D25218 0x00000048 0x00D25208 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     108007429 0x00D252B0 0x00000048 0x00D252A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     109007433 0x00D25348 0x00000048 0x00D25338 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     110007437 0x00D253E0 0x00000048 0x00D253D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     111007577 0x00D26D98 0x00000028 0x00D26D88 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     112007578 0x00D26E10 0x00000048 0x00D26E00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     113007583 0x00D26EF8 0x00000048 0x00D26EE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     114007587 0x00D26F90 0x00000048 0x00D26F80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     115020098 0x00D28C18 0x00000018 0x00D28C08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     116020100 0x00D28C80 0x00000018 0x00D28C70 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     117020093 0x00D29500 0x00000018 0x00D294F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     118020156 0x00D299E8 0x00000068 0x00D299D8 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
     119020158 0x00D29AA0 0x00000030 0x00D29A90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     120020159 0x00D29B70 0x00000030 0x00D29B60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     121020160 0x00D29C40 0x00000030 0x00D29C30 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     122020161 0x00D29D10 0x0000000C 0x00D29D00 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     123020162 0x00D29D68 0x00000068 0x00D29D58 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
     124020163 0x00D29E20 0x00000030 0x00D29E10 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     125020164 0x00D29EA0 0x00000030 0x00D29E90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     126020165 0x00D29F70 0x00000030 0x00D29F60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     127020166 0x00D2A040 0x00000030 0x00D2A030 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     128020167 0x00D2A110 0x0000000C 0x00D2A100 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     129020168 0x00D2A168 0x00000030 0x00D2A158 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
     130020169 0x00D2A1E8 0x00000030 0x00D2A1D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     131020170 0x00D2A268 0x00000030 0x00D2A258 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     132020171 0x00D2A2E8 0x0000000C 0x00D2A2D8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     133020172 0x00D2A340 0x00000030 0x00D2A330 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
     134020173 0x00D2A3C0 0x00000030 0x00D2A3B0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     135020174 0x00D2A440 0x00000030 0x00D2A430 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     136020175 0x00D2A4C0 0x0000000C 0x00D2A4B0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     137020176 0x00D2A518 0x000000B4 0x00D2A508 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
     138020177 0x00D2A618 0x00000030 0x00D2A608 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     139020178 0x00D2A698 0x00000030 0x00D2A688 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     140020179 0x00D2A718 0x00000030 0x00D2A708 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     141020180 0x00D2A798 0x00000030 0x00D2A788 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     142020181 0x00D2A818 0x00000030 0x00D2A808 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     143020182 0x00D2A898 0x00000030 0x00D2A888 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     144020183 0x00D2A918 0x00000030 0x00D2A908 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     145007257 0x00D40A90 0x00000048 0x00D40A80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     146007261 0x00D40B28 0x00000048 0x00D40B18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     147007265 0x00D40BC0 0x00000048 0x00D40BB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     148007405 0x00D41798 0x00000028 0x00D41788 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     149007233 0x00D44B78 0x00000028 0x00D44B68 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     150007234 0x00D44BF0 0x00000048 0x00D44BE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     151007239 0x00D44CD8 0x00000048 0x00D44CC8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     152007243 0x00D44D70 0x00000048 0x00D44D60 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     153007247 0x00D44E08 0x00000048 0x00D44DF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     154007251 0x00D44EA0 0x00000028 0x00D44E90 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     155007252 0x00D44F18 0x00000048 0x00D44F08 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     156007591 0x00D45008 0x00000048 0x00D44FF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     157007595 0x00D450A0 0x00000028 0x00D45090 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     158007596 0x00D45118 0x00000048 0x00D45108 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     159007601 0x00D45208 0x00000048 0x00D451F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     160007605 0x00D452A0 0x00000048 0x00D45290 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     161007609 0x00D45338 0x00000048 0x00D45328 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     162008003 0x00D49470 0x00000048 0x00D49460 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     163007997 0x00D4A6A0 0x00000028 0x00D4A690 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     164007998 0x00D4A718 0x00000048 0x00D4A708 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     165020107 0x00D4B828 0x00000018 0x00D4B818 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     166020108 0x00D4B890 0x00000018 0x00D4B880 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     167020096 0x00D4B998 0x00000018 0x00D4B988 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     168008840 0x00D67E30 0x00000028 0x00D67E20 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     169008841 0x00D67EA8 0x00000048 0x00D67E98 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     170008846 0x00D67FE0 0x00000048 0x00D67FD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     171008850 0x00D680C8 0x00000048 0x00D680B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     172008854 0x00D68160 0x00000048 0x00D68150 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     173009020 0x00D6B480 0x00000028 0x00D6B470 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     174009021 0x00D6BFE0 0x00000048 0x00D6BFD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     175009026 0x00D6C100 0x00000048 0x00D6C0F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     176009030 0x00D6C198 0x00000048 0x00D6C188 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     177009034 0x00D6C230 0x00000048 0x00D6C220 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     178009038 0x00D6C2C8 0x00000048 0x00D6C2B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     179009042 0x00D6C3B0 0x00000028 0x00D6C3A0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     180009043 0x00D6C428 0x00000048 0x00D6C418 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     181009052 0x00D6C518 0x00000028 0x00D6C508 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     182009048 0x00D6D018 0x00000048 0x00D6D008 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     183009053 0x00D6D0B0 0x00000048 0x00D6D0A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     184009058 0x00D6D1A0 0x00000048 0x00D6D190 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     185009062 0x00D6D238 0x00000048 0x00D6D228 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     186021626 0x01BE3C20 0x0000021C 0x01BE3C10 0x0000023C 0x00000000 new         N       N    ogrerenderingrun.cpp(198) OgreRenderingRun::renderFullscreenQuad 
     187009846 0x01BF0E38 0x00000048 0x01BF0E28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     188009851 0x01BF0ED0 0x00000048 0x01BF0EC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     189009855 0x01BF0F68 0x00000048 0x01BF0F58 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     190009859 0x01BF1000 0x00000028 0x01BF0FF0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     191009860 0x01BF1078 0x00000048 0x01BF1068 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     192009869 0x01BF1168 0x00000048 0x01BF1158 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     193009873 0x01BF1200 0x00000028 0x01BF11F0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     194009874 0x01BF1278 0x00000048 0x01BF1268 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     195009879 0x01BF1368 0x00000048 0x01BF1358 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     196009883 0x01BF14D8 0x00000048 0x01BF14C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     197009887 0x01BF15C0 0x00000048 0x01BF15B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     198009865 0x01BF6BD0 0x00000048 0x01BF6BC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     199009845 0x01BF7DB8 0x00000028 0x01BF7DA8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     200010850 0x01C10AB0 0x00000048 0x01C10AA0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     201010999 0x01C118A0 0x00000028 0x01C11890 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     202011000 0x01C11918 0x00000048 0x01C11908 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     203011005 0x01C11B28 0x00000048 0x01C11B18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     204010775 0x01C1D3A0 0x00000028 0x01C1D390 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     205010776 0x01C1D418 0x00000048 0x01C1D408 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     206010844 0x01C1DD30 0x00000028 0x01C1DD20 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     207010845 0x01C1DDA8 0x00000048 0x01C1DD98 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     208020105 0x01C28C10 0x00000018 0x01C28C00 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     209020106 0x01C28C78 0x00000018 0x01C28C68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     210174074 0x01C2A8F0 0x00000010 0x01C2A8E0 0x00000030 0x00000000 new         N       N    ??(0) ?? 
     211011869 0x01C3B2E8 0x00000028 0x01C3B2D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     212011870 0x01C3B360 0x00000048 0x01C3B350 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     213011875 0x01C3B498 0x00000048 0x01C3B488 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     214011879 0x01C3B580 0x00000048 0x01C3B570 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     215020094 0x01C8B9F8 0x0000000C 0x01C8B9E8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     216020103 0x01C8BAA8 0x00000018 0x01C8BA98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     217020104 0x01C8BB10 0x00000018 0x01C8BB00 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     218020097 0x01C8BC08 0x00000030 0x01C8BBF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     219020095 0x01C8C018 0x00000018 0x01C8C008 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     220020125 0x01C8C958 0x00000030 0x01C8C948 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     221020126 0x01C8C9D8 0x00000030 0x01C8C9C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     222020127 0x01C8CA58 0x00000030 0x01C8CA48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     223020128 0x01C8CAD8 0x00000030 0x01C8CAC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     224020129 0x01C8CB58 0x00000030 0x01C8CB48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     225020130 0x01C8CBD8 0x0000000C 0x01C8CBC8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     226020131 0x01C8CC30 0x0000004C 0x01C8CC20 0x0000006C 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
     227020132 0x01C8CCC8 0x00000030 0x01C8CCB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     228020133 0x01C8CD48 0x00000030 0x01C8CD38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     229020134 0x01C8CDC8 0x00000030 0x01C8CDB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     230020135 0x01C8CE48 0x00000030 0x01C8CE38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     231020136 0x01C8CEC8 0x00000030 0x01C8CEB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     232020137 0x01C8CF48 0x00000030 0x01C8CF38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     233020141 0x01C8CFC8 0x0000000C 0x01C8CFB8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     234020884 0x01DDDD18 0x000000C0 0x01DDDD08 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     235020887 0x01DDDE28 0x000000C4 0x01DDDE18 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     236020888 0x01DDDF38 0x00000018 0x01DDDF28 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     237020889 0x01DDDFA0 0x00000018 0x01DDDF90 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     238020890 0x01DDE008 0x0000000C 0x01DDDFF8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     239020892 0x01DDE0B0 0x00000018 0x01DDE0A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     240020899 0x01DDE118 0x0000004C 0x01DDE108 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     241020900 0x01DDE1B0 0x0000008C 0x01DDE1A0 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
     242020901 0x01DDE328 0x00000030 0x01DDE318 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     243020886 0x01DDFFA0 0x0000001C 0x01DDFF90 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     244021276 0x01DEC008 0x00000008 0x01DEBFF8 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     245021155 0x01DED908 0x00000018 0x01DED8F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     246021156 0x01DED970 0x0000008C 0x01DED960 0x000000AC 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(81) OgreConvolvedCubeMapRenderTechnique::cr 
     247021157 0x01DEDA48 0x00000030 0x01DEDA38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     248021275 0x01DFCEF8 0x00000018 0x01DFCEE8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     249021279 0x01DFDA60 0x0000001C 0x01DFDA50 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     250021277 0x01DFDC98 0x000000C0 0x01DFDC88 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     251021328 0x01DFDDA8 0x00000008 0x01DFDD98 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     252021281 0x01DFDE00 0x00000018 0x01DFDDF0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     253021288 0x01DFDE68 0x0000004C 0x01DFDE58 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     254021301 0x01DFDF00 0x00000050 0x01DFDEF0 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
     255021302 0x01DFDFA0 0x00000008 0x01DFDF90 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     256021303 0x01DFDFF8 0x000000C0 0x01DFDFE8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     257021305 0x01DFE108 0x0000001C 0x01DFE0F8 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     258021354 0x01DFE170 0x00000008 0x01DFE160 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     259021307 0x01DFE1C8 0x00000018 0x01DFE1B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     260021314 0x01DFE230 0x0000004C 0x01DFE220 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     261021327 0x01DFE2C8 0x00000050 0x01DFE2B8 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
     262021329 0x01DFE368 0x000000C0 0x01DFE358 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     263021331 0x01DFE478 0x0000001C 0x01DFE468 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     264021332 0x01DFE4E0 0x00000010 0x01DFE4D0 0x00000030 0x00000000 new         N       N    ??(0) ?? 
     265021333 0x01DFE540 0x00000018 0x01DFE530 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     266021340 0x01DFE5A8 0x0000004C 0x01DFE598 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     267021353 0x01DFE640 0x00000050 0x01DFE630 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
     268021021 0x01E05950 0x00000018 0x01E05940 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     269021034 0x01E059B8 0x00000050 0x01E059A8 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
     270021035 0x01E05A58 0x0000008C 0x01E05A48 0x000000AC 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(67) OgreConvolvedCubeMapRenderTechnique::cr 
     271021036 0x01E05B30 0x00000030 0x01E05B20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log

    r1519 r1525  
    11-------------------------------------------------------------------------------- 
    22 
    3       OgreMemory.log - Memory logging file created on Wed Sep 27 15:47:56 2006 
     3      OgreMemory.log - Memory logging file created on Wed Sep 27 20:00:41 2006 
    44 
    55-------------------------------------------------------------------------------- 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/ogre.cfg

    r1519 r1525  
    66Floating-point mode=Fastest 
    77Full Screen=No 
    8 Rendering Device=NVIDIA GeForce 7800 GT 
     8Rendering Device=NVIDIA GeForce 6800 GT 
    99VSync=No 
    1010Video Mode=800 x 600 @ 32-bit colour 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log

    r1519 r1525  
    1 10:29:14: Creating resource group General 
    2 10:29:14: Creating resource group Internal 
    3 10:29:14: Creating resource group Autodetect 
    4 10:29:14: Registering ResourceManager for type Material 
    5 10:29:14: Registering ResourceManager for type Mesh 
    6 10:29:14: Registering ResourceManager for type Skeleton 
    7 10:29:14: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 10:29:14: Loading library OgrePlatform.dll 
    9 10:29:14: OverlayElementFactory for type Panel registered. 
    10 10:29:14: OverlayElementFactory for type BorderPanel registered. 
    11 10:29:14: OverlayElementFactory for type TextArea registered. 
    12 10:29:14: Registering ResourceManager for type Font 
    13 10:29:14: ArchiveFactory for archive type FileSystem registered. 
    14 10:29:14: ArchiveFactory for archive type Zip registered. 
    15 10:29:14: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 10:29:14: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
    17 10:29:14: Registering ResourceManager for type HighLevelGpuProgram 
    18 10:29:14: Registering ResourceManager for type Compositor 
    19 10:29:14: MovableObjectFactory for type 'Entity' registered. 
    20 10:29:14: MovableObjectFactory for type 'Light' registered. 
    21 10:29:14: MovableObjectFactory for type 'BillboardSet' registered. 
    22 10:29:14: MovableObjectFactory for type 'ManualObject' registered. 
    23 10:29:14: MovableObjectFactory for type 'BillboardChain' registered. 
    24 10:29:14: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 10:29:14: Loading library .\RenderSystem_Direct3D9 
    26 10:29:14: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 10:29:14: D3D9: Driver Detection Starts 
    28 10:29:14: D3D9: Driver Detection Ends 
    29 10:29:14: Loading library .\Plugin_ParticleFX 
    30 10:29:14: Particle Emitter Type 'Point' registered 
    31 10:29:14: Particle Emitter Type 'Box' registered 
    32 10:29:14: Particle Emitter Type 'Ellipsoid' registered 
    33 10:29:14: Particle Emitter Type 'Cylinder' registered 
    34 10:29:14: Particle Emitter Type 'Ring' registered 
    35 10:29:14: Particle Emitter Type 'HollowEllipsoid' registered 
    36 10:29:14: Particle Affector Type 'LinearForce' registered 
    37 10:29:14: Particle Affector Type 'ColourFader' registered 
    38 10:29:14: Particle Affector Type 'ColourFader2' registered 
    39 10:29:14: Particle Affector Type 'ColourImage' registered 
    40 10:29:14: Particle Affector Type 'ColourInterpolator' registered 
    41 10:29:14: Particle Affector Type 'Scaler' registered 
    42 10:29:14: Particle Affector Type 'Rotator' registered 
    43 10:29:14: Particle Affector Type 'DirectionRandomiser' registered 
    44 10:29:14: Particle Affector Type 'DeflectorPlane' registered 
    45 10:29:14: Loading library .\Plugin_BSPSceneManager 
    46 10:29:14: Registering ResourceManager for type BspLevel 
    47 10:29:14: Loading library .\Plugin_OctreeSceneManager 
    48 10:29:14: Loading library .\Plugin_CgProgramManager 
    49 10:29:14: *-*-* OGRE Initialising 
    50 10:29:14: *-*-* Version 1.2.0 (Dagon) 
    51 10:29:14: Creating resource group Bootstrap 
    52 10:29:14: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 10:29:14: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 10:29:14: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 10:29:14: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 10:29:14: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 10:29:14: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 10:29:14: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 10:29:14: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 10:29:14: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 10:29:14: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 10:29:14: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 10:29:14: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 10:29:14: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 10:29:14: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 10:29:14: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 10:29:14: D3D9 : RenderSystem Option: Full Screen = No 
    68 10:29:14: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7800 GT 
    69 10:29:14: D3D9 : RenderSystem Option: VSync = No 
    70 10:29:14: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 10:29:16: D3D9 : Subsystem Initialising 
    72 10:29:16: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 10:29:16: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 10:29:16: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 10:29:16: Registering ResourceManager for type Texture 
    76 10:29:16: Registering ResourceManager for type GpuProgram 
    77 10:29:16: RenderSystem capabilities 
    78 10:29:16: ------------------------- 
    79 10:29:16:  * Hardware generation of mipmaps: yes 
    80 10:29:16:  * Texture blending: yes 
    81 10:29:16:  * Anisotropic texture filtering: yes 
    82 10:29:16:  * Dot product texture operation: yes 
    83 10:29:16:  * Cube mapping: yes 
    84 10:29:16:  * Hardware stencil buffer: yes 
    85 10:29:16:    - Stencil depth: 8 
    86 10:29:16:    - Two sided stencil support: yes 
    87 10:29:16:    - Wrap stencil values: yes 
    88 10:29:16:  * Hardware vertex / index buffers: yes 
    89 10:29:16:  * Vertex programs: yes 
    90 10:29:16:    - Max vertex program version: vs_3_0 
    91 10:29:16:  * Fragment programs: yes 
    92 10:29:16:    - Max fragment program version: ps_3_0 
    93 10:29:16:  * Texture Compression: yes 
    94 10:29:16:    - DXT: yes 
    95 10:29:16:    - VTC: no 
    96 10:29:16:  * Scissor Rectangle: yes 
    97 10:29:16:  * Hardware Occlusion Query: yes 
    98 10:29:16:  * User clip planes: yes 
    99 10:29:16:  * VET_UBYTE4 vertex element type: yes 
    100 10:29:16:  * Infinite far plane projection: yes 
    101 10:29:16:  * Hardware render-to-texture: yes 
    102 10:29:16:  * Floating point textures: yes 
    103 10:29:16:  * Non-power-of-two textures: yes 
    104 10:29:16:  * Volume textures: yes 
    105 10:29:16:  * Multiple Render Targets: 4 
    106 10:29:16:  * Max Point Size: 8192 
    107 10:29:16: *************************************** 
    108 10:29:16: *** D3D9 : Subsystem Initialised OK *** 
    109 10:29:16: *************************************** 
    110 10:29:16: ResourceBackgroundQueue - threading disabled 
    111 10:29:16: Particle Renderer Type 'billboard' registered 
    112 10:29:16: Particle Renderer Type 'sprite' registered 
    113 10:29:16: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    114 10:29:16: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 10:29:16: Parsing scripts for resource group Autodetect 
    116 10:29:16: Finished parsing scripts for resource group Autodetect 
    117 10:29:16: Parsing scripts for resource group Bootstrap 
    118 10:29:16: Parsing script OgreCore.material 
    119 10:29:16: Parsing script OgreProfiler.material 
    120 10:29:16: Parsing script Ogre.fontdef 
    121 10:29:16: Parsing script OgreDebugPanel.overlay 
    122 10:29:16: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    123 10:29:16: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    124 10:29:16: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    125 10:29:16: Font TrebuchetMSBoldusing texture size 512x512 
    126 10:29:16: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 10:29:16: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 10:29:16: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 10:29:16: Parsing script OgreLoadingPanel.overlay 
    130 10:29:16: Finished parsing scripts for resource group Bootstrap 
    131 10:29:16: Parsing scripts for resource group General 
    132 10:29:16: Parsing script GameTools.program 
    133 10:29:16: Parsing script atlascube.material 
    134 10:29:16: Parsing script Diffuse.material 
    135 10:29:17: An exception has been thrown! 
     110:16:00: Creating resource group General 
     210:16:00: Creating resource group Internal 
     310:16:00: Creating resource group Autodetect 
     410:16:00: Registering ResourceManager for type Material 
     510:16:00: Registering ResourceManager for type Mesh 
     610:16:00: Registering ResourceManager for type Skeleton 
     710:16:00: MovableObjectFactory for type 'ParticleSystem' registered. 
     810:16:00: Loading library OgrePlatform.dll 
     910:16:00: OverlayElementFactory for type Panel registered. 
     1010:16:00: OverlayElementFactory for type BorderPanel registered. 
     1110:16:00: OverlayElementFactory for type TextArea registered. 
     1210:16:00: Registering ResourceManager for type Font 
     1310:16:00: ArchiveFactory for archive type FileSystem registered. 
     1410:16:00: ArchiveFactory for archive type Zip registered. 
     1510:16:00: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1610:16:00: 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:16:00: Registering ResourceManager for type HighLevelGpuProgram 
     1810:16:00: Registering ResourceManager for type Compositor 
     1910:16:00: MovableObjectFactory for type 'Entity' registered. 
     2010:16:00: MovableObjectFactory for type 'Light' registered. 
     2110:16:00: MovableObjectFactory for type 'BillboardSet' registered. 
     2210:16:00: MovableObjectFactory for type 'ManualObject' registered. 
     2310:16:00: MovableObjectFactory for type 'BillboardChain' registered. 
     2410:16:00: MovableObjectFactory for type 'RibbonTrail' registered. 
     2510:16:00: Loading library .\RenderSystem_Direct3D9 
     2610:16:00: D3D9 : Direct3D9 Rendering Subsystem created. 
     2710:16:00: D3D9: Driver Detection Starts 
     2810:16:00: D3D9: Driver Detection Ends 
     2910:16:00: Loading library .\Plugin_ParticleFX 
     3010:16:00: Particle Emitter Type 'Point' registered 
     3110:16:00: Particle Emitter Type 'Box' registered 
     3210:16:00: Particle Emitter Type 'Ellipsoid' registered 
     3310:16:00: Particle Emitter Type 'Cylinder' registered 
     3410:16:00: Particle Emitter Type 'Ring' registered 
     3510:16:00: Particle Emitter Type 'HollowEllipsoid' registered 
     3610:16:00: Particle Affector Type 'LinearForce' registered 
     3710:16:00: Particle Affector Type 'ColourFader' registered 
     3810:16:00: Particle Affector Type 'ColourFader2' registered 
     3910:16:00: Particle Affector Type 'ColourImage' registered 
     4010:16:00: Particle Affector Type 'ColourInterpolator' registered 
     4110:16:00: Particle Affector Type 'Scaler' registered 
     4210:16:00: Particle Affector Type 'Rotator' registered 
     4310:16:00: Particle Affector Type 'DirectionRandomiser' registered 
     4410:16:00: Particle Affector Type 'DeflectorPlane' registered 
     4510:16:00: Loading library .\Plugin_BSPSceneManager 
     4610:16:00: Registering ResourceManager for type BspLevel 
     4710:16:00: Loading library .\Plugin_OctreeSceneManager 
     4810:16:00: Loading library .\Plugin_CgProgramManager 
     4910:16:00: *-*-* OGRE Initialising 
     5010:16:00: *-*-* Version 1.2.0 (Dagon) 
     5110:16:00: Creating resource group Bootstrap 
     5210:16:00: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5310:16:00: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5410:16:00: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5510:16:00: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5610:16:00: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5710:16:00: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5810:16:00: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5910:16:00: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6010:16:00: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6110:16:00: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6210:16:00: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6310:16:00: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6410:16:00: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6510:16:00: D3D9 : RenderSystem Option: Anti aliasing = None 
     6610:16:00: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6710:16:00: D3D9 : RenderSystem Option: Full Screen = No 
     6810:16:00: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
     6910:16:00: D3D9 : RenderSystem Option: VSync = No 
     7010:16:00: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7110:16:02: D3D9 : Subsystem Initialising 
     7210:16:02: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7310:16:02: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7410:16:02: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7510:16:02: Registering ResourceManager for type Texture 
     7610:16:02: Registering ResourceManager for type GpuProgram 
     7710:16:02: RenderSystem capabilities 
     7810:16:02: ------------------------- 
     7910:16:02:  * Hardware generation of mipmaps: yes 
     8010:16:02:  * Texture blending: yes 
     8110:16:02:  * Anisotropic texture filtering: yes 
     8210:16:02:  * Dot product texture operation: yes 
     8310:16:02:  * Cube mapping: yes 
     8410:16:02:  * Hardware stencil buffer: yes 
     8510:16:02:    - Stencil depth: 8 
     8610:16:02:    - Two sided stencil support: yes 
     8710:16:02:    - Wrap stencil values: yes 
     8810:16:02:  * Hardware vertex / index buffers: yes 
     8910:16:02:  * Vertex programs: yes 
     9010:16:02:    - Max vertex program version: vs_3_0 
     9110:16:02:  * Fragment programs: yes 
     9210:16:02:    - Max fragment program version: ps_3_0 
     9310:16:02:  * Texture Compression: yes 
     9410:16:02:    - DXT: yes 
     9510:16:02:    - VTC: no 
     9610:16:02:  * Scissor Rectangle: yes 
     9710:16:02:  * Hardware Occlusion Query: yes 
     9810:16:02:  * User clip planes: yes 
     9910:16:02:  * VET_UBYTE4 vertex element type: yes 
     10010:16:02:  * Infinite far plane projection: yes 
     10110:16:02:  * Hardware render-to-texture: yes 
     10210:16:02:  * Floating point textures: yes 
     10310:16:02:  * Non-power-of-two textures: yes 
     10410:16:02:  * Volume textures: yes 
     10510:16:02:  * Multiple Render Targets: 4 
     10610:16:02:  * Max Point Size: 8192 
     10710:16:02: *************************************** 
     10810:16:02: *** D3D9 : Subsystem Initialised OK *** 
     10910:16:02: *************************************** 
     11010:16:02: ResourceBackgroundQueue - threading disabled 
     11110:16:02: Particle Renderer Type 'billboard' registered 
     11210:16:02: Particle Renderer Type 'sprite' registered 
     11310:16:02: 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:16:02: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11510:16:02: Parsing scripts for resource group Autodetect 
     11610:16:02: Finished parsing scripts for resource group Autodetect 
     11710:16:02: Parsing scripts for resource group Bootstrap 
     11810:16:02: Parsing script OgreCore.material 
     11910:16:02: Parsing script OgreProfiler.material 
     12010:16:02: Parsing script Ogre.fontdef 
     12110:16:02: Parsing script OgreDebugPanel.overlay 
     12210:16:02: 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:16:02: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12410:16:02: 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:16:02: Font TrebuchetMSBoldusing texture size 512x512 
     12610:16:02: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12710:16:02: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12810:16:02: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12910:16:02: Parsing script OgreLoadingPanel.overlay 
     13010:16:02: Finished parsing scripts for resource group Bootstrap 
     13110:16:02: Parsing scripts for resource group General 
     13210:16:02: Parsing script GameTools.program 
     13310:16:02: Parsing script atlascube.material 
     13410:16:02: Parsing script Diffuse.material 
     13510:16:02: An exception has been thrown! 
     136 
     137----------------------------------- 
     138Details: 
     139----------------------------------- 
     140Error #: 7 
     141Function: GpuProgramParameters::getParamIndex 
     142Description: Cannot find a parameter named CUBEMAP_SIZE.  
     143File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     144Line: 768 
     145Stack unwinding: <<beginning of stack>> 
     14610:16:02: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     147 
     148----------------------------------- 
     149Details: 
     150----------------------------------- 
     151Error #: 7 
     152Function: GpuProgramParameters::getParamIndex 
     153Description: Cannot find a parameter named CUBEMAP_SIZE.  
     154File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     155Line: 768 
     156Stack unwinding: <<beginning of stack>> 
     15710:16:04: An exception has been thrown! 
    136158 
    137159----------------------------------- 
     
    144166Line: 768 
    145167Stack unwinding: <<beginning of stack>> 
    146 10:29:17: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16810:16:04: Error in material GameTools/Diffuse/use at line 74 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    147169 
    148170----------------------------------- 
     
    155177Line: 768 
    156178Stack unwinding: <<beginning of stack>> 
    157 10:29:17: An exception has been thrown! 
     17910:16:04: An exception has been thrown! 
    158180 
    159181----------------------------------- 
     
    166188Line: 768 
    167189Stack unwinding: <<beginning of stack>> 
    168 10:29:17: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     19010:16:04: Error in material GameTools/Diffuse/use at line 75 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    169191 
    170192----------------------------------- 
     
    177199Line: 768 
    178200Stack unwinding: <<beginning of stack>> 
    179 10:29:17: Parsing script EnvMetals.material 
    180 10:29:17: An exception has been thrown! 
     20110:16:25: An exception has been thrown! 
     202 
     203----------------------------------- 
     204Details: 
     205----------------------------------- 
     206Error #: 7 
     207Function: GpuProgramParameters::getParamIndex 
     208Description: Cannot find a parameter named cameraPos.  
     209File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     210Line: 768 
     211Stack unwinding: <<beginning of stack>> 
     21210:16:25: Error in material GameTools/Diffuse at line 148 of Diffuse.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 cameraPos.  
     220File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     221Line: 768 
     222Stack unwinding: <<beginning of stack>> 
     22310:16:25: An exception has been thrown! 
     224 
     225----------------------------------- 
     226Details: 
     227----------------------------------- 
     228Error #: 7 
     229Function: GpuProgramParameters::getParamIndex 
     230Description: Cannot find a parameter named REDUCED_CUBEMAP_SIZE.  
     231File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     232Line: 768 
     233Stack unwinding: <<beginning of stack>> 
     23410:16:25: Error in material GameTools/Diffuse at line 149 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     235 
     236----------------------------------- 
     237Details: 
     238----------------------------------- 
     239Error #: 7 
     240Function: GpuProgramParameters::getParamIndex 
     241Description: Cannot find a parameter named REDUCED_CUBEMAP_SIZE.  
     242File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     243Line: 768 
     244Stack unwinding: <<beginning of stack>> 
     24510:16:25: Parsing script EnvMetals.material 
     24610:16:25: An exception has been thrown! 
    181247 
    182248----------------------------------- 
     
    189255Line: 768 
    190256Stack unwinding: <<beginning of stack>> 
    191 10:29:17: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25710:16:25: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    192258 
    193259----------------------------------- 
     
    200266Line: 768 
    201267Stack unwinding: <<beginning of stack>> 
    202 10:29:17: An exception has been thrown! 
     26810:16:25: An exception has been thrown! 
    203269 
    204270----------------------------------- 
     
    211277Line: 768 
    212278Stack unwinding: <<beginning of stack>> 
    213 10:29:17: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27910:16:25: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    214280 
    215281----------------------------------- 
     
    222288Line: 768 
    223289Stack unwinding: <<beginning of stack>> 
    224 10:29:17: An exception has been thrown! 
     29010:16:25: An exception has been thrown! 
    225291 
    226292----------------------------------- 
     
    233299Line: 768 
    234300Stack unwinding: <<beginning of stack>> 
    235 10:29:17: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30110:16:25: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    236302 
    237303----------------------------------- 
     
    244310Line: 768 
    245311Stack unwinding: <<beginning of stack>> 
    246 10:29:17: An exception has been thrown! 
     31210:16:25: An exception has been thrown! 
    247313 
    248314----------------------------------- 
     
    255321Line: 768 
    256322Stack unwinding: <<beginning of stack>> 
    257 10:29:17: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32310:16:25: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    258324 
    259325----------------------------------- 
     
    266332Line: 768 
    267333Stack unwinding: <<beginning of stack>> 
    268 10:29:17: Parsing script GameTools.material 
    269 10:29:17: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
    270 10:29:17: An exception has been thrown! 
     33410:16:25: Parsing script GameTools.material 
     33510:16:25: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
     33610:16:25: An exception has been thrown! 
    271337 
    272338----------------------------------- 
     
    279345Line: 768 
    280346Stack unwinding: <<beginning of stack>> 
    281 10:29:17: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34710:16:25: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    282348 
    283349----------------------------------- 
     
    290356Line: 768 
    291357Stack unwinding: <<beginning of stack>> 
    292 10:29:17: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
    293 10:29:17: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    294 10:29:17: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
    295 10:29:17: Parsing script GameTools_HPS.material 
    296 10:29:17: An exception has been thrown! 
    297  
    298 ----------------------------------- 
    299 Details: 
    300 ----------------------------------- 
    301 Error #: 7 
    302 Function: GpuProgramParameters::getParamIndex 
    303 Description: Cannot find a parameter named worldViewProj.  
    304 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    305 Line: 768 
    306 Stack unwinding: <<beginning of stack>> 
    307 10:29:17: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    308  
    309 ----------------------------------- 
    310 Details: 
    311 ----------------------------------- 
    312 Error #: 7 
    313 Function: GpuProgramParameters::getParamIndex 
    314 Description: Cannot find a parameter named worldViewProj.  
    315 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    316 Line: 768 
    317 Stack unwinding: <<beginning of stack>> 
    318 10:29:17: An exception has been thrown! 
    319  
    320 ----------------------------------- 
    321 Details: 
    322 ----------------------------------- 
    323 Error #: 7 
    324 Function: GpuProgramParameters::getParamIndex 
    325 Description: Cannot find a parameter named worldViewProj.  
    326 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    327 Line: 768 
    328 Stack unwinding: <<beginning of stack>> 
    329 10:29:17: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    330  
    331 ----------------------------------- 
    332 Details: 
    333 ----------------------------------- 
    334 Error #: 7 
    335 Function: GpuProgramParameters::getParamIndex 
    336 Description: Cannot find a parameter named worldViewProj.  
    337 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    338 Line: 768 
    339 Stack unwinding: <<beginning of stack>> 
    340 10:29:17: An exception has been thrown! 
     35810:16:25: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
     35910:16:25: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     36010:16:25: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
     36110:16:25: Parsing script GameTools_HPS.material 
     36210:16:25: An exception has been thrown! 
     363 
     364----------------------------------- 
     365Details: 
     366----------------------------------- 
     367Error #: 7 
     368Function: GpuProgramParameters::getParamIndex 
     369Description: Cannot find a parameter named worldViewProj.  
     370File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     371Line: 768 
     372Stack unwinding: <<beginning of stack>> 
     37310:16:25: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     374 
     375----------------------------------- 
     376Details: 
     377----------------------------------- 
     378Error #: 7 
     379Function: GpuProgramParameters::getParamIndex 
     380Description: Cannot find a parameter named worldViewProj.  
     381File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     382Line: 768 
     383Stack unwinding: <<beginning of stack>> 
     38410:16:25: An exception has been thrown! 
     385 
     386----------------------------------- 
     387Details: 
     388----------------------------------- 
     389Error #: 7 
     390Function: GpuProgramParameters::getParamIndex 
     391Description: Cannot find a parameter named worldViewProj.  
     392File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     393Line: 768 
     394Stack unwinding: <<beginning of stack>> 
     39510:16:25: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     396 
     397----------------------------------- 
     398Details: 
     399----------------------------------- 
     400Error #: 7 
     401Function: GpuProgramParameters::getParamIndex 
     402Description: Cannot find a parameter named worldViewProj.  
     403File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     404Line: 768 
     405Stack unwinding: <<beginning of stack>> 
     40610:16:25: An exception has been thrown! 
    341407 
    342408----------------------------------- 
     
    349415Line: 768 
    350416Stack unwinding: <<beginning of stack>> 
    351 10:29:17: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41710:16:25: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    352418 
    353419----------------------------------- 
     
    360426Line: 768 
    361427Stack unwinding: <<beginning of stack>> 
    362 10:29:17: An exception has been thrown! 
    363  
    364 ----------------------------------- 
    365 Details: 
    366 ----------------------------------- 
    367 Error #: 7 
    368 Function: GpuProgramParameters::getParamIndex 
    369 Description: Cannot find a parameter named worldViewProj.  
    370 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    371 Line: 768 
    372 Stack unwinding: <<beginning of stack>> 
    373 10:29:17: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    374  
    375 ----------------------------------- 
    376 Details: 
    377 ----------------------------------- 
    378 Error #: 7 
    379 Function: GpuProgramParameters::getParamIndex 
    380 Description: Cannot find a parameter named worldViewProj.  
    381 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    382 Line: 768 
    383 Stack unwinding: <<beginning of stack>> 
    384 10:29:17: An exception has been thrown! 
     42810:16:25: An exception has been thrown! 
     429 
     430----------------------------------- 
     431Details: 
     432----------------------------------- 
     433Error #: 7 
     434Function: GpuProgramParameters::getParamIndex 
     435Description: Cannot find a parameter named worldViewProj.  
     436File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     437Line: 768 
     438Stack unwinding: <<beginning of stack>> 
     43910:16:25: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     440 
     441----------------------------------- 
     442Details: 
     443----------------------------------- 
     444Error #: 7 
     445Function: GpuProgramParameters::getParamIndex 
     446Description: Cannot find a parameter named worldViewProj.  
     447File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     448Line: 768 
     449Stack unwinding: <<beginning of stack>> 
     45010:16:25: An exception has been thrown! 
    385451 
    386452----------------------------------- 
     
    393459Line: 768 
    394460Stack unwinding: <<beginning of stack>> 
    395 10:29:17: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     46110:16:25: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    396462 
    397463----------------------------------- 
     
    404470Line: 768 
    405471Stack unwinding: <<beginning of stack>> 
    406 10:29:17: An exception has been thrown! 
     47210:16:25: An exception has been thrown! 
    407473 
    408474----------------------------------- 
     
    415481Line: 768 
    416482Stack unwinding: <<beginning of stack>> 
    417 10:29:17: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     48310:16:25: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    418484 
    419485----------------------------------- 
     
    426492Line: 768 
    427493Stack unwinding: <<beginning of stack>> 
    428 10:29:17: An exception has been thrown! 
    429  
    430 ----------------------------------- 
    431 Details: 
    432 ----------------------------------- 
    433 Error #: 7 
    434 Function: GpuProgramParameters::getParamIndex 
    435 Description: Cannot find a parameter named worldViewProj.  
    436 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    437 Line: 768 
    438 Stack unwinding: <<beginning of stack>> 
    439 10:29:17: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    440  
    441 ----------------------------------- 
    442 Details: 
    443 ----------------------------------- 
    444 Error #: 7 
    445 Function: GpuProgramParameters::getParamIndex 
    446 Description: Cannot find a parameter named worldViewProj.  
    447 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    448 Line: 768 
    449 Stack unwinding: <<beginning of stack>> 
    450 10:29:17: Parsing script GlassHead.material 
    451 10:29:17: An exception has been thrown! 
     49410:16:25: An exception has been thrown! 
     495 
     496----------------------------------- 
     497Details: 
     498----------------------------------- 
     499Error #: 7 
     500Function: GpuProgramParameters::getParamIndex 
     501Description: Cannot find a parameter named worldViewProj.  
     502File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     503Line: 768 
     504Stack unwinding: <<beginning of stack>> 
     50510:16:25: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     506 
     507----------------------------------- 
     508Details: 
     509----------------------------------- 
     510Error #: 7 
     511Function: GpuProgramParameters::getParamIndex 
     512Description: Cannot find a parameter named worldViewProj.  
     513File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     514Line: 768 
     515Stack unwinding: <<beginning of stack>> 
     51610:16:25: Parsing script GlassHead.material 
     51710:16:25: An exception has been thrown! 
    452518 
    453519----------------------------------- 
     
    460526Line: 768 
    461527Stack unwinding: <<beginning of stack>> 
    462 10:29:17: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52810:16:25: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    463529 
    464530----------------------------------- 
     
    471537Line: 768 
    472538Stack unwinding: <<beginning of stack>> 
    473 10:29:17: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    474 10:29:17: An exception has been thrown! 
    475  
    476 ----------------------------------- 
    477 Details: 
    478 ----------------------------------- 
    479 Error #: 7 
    480 Function: GpuProgramParameters::getParamIndex 
    481 Description: Cannot find a parameter named worldViewProj.  
    482 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    483 Line: 768 
    484 Stack unwinding: <<beginning of stack>> 
    485 10:29:17: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    486  
    487 ----------------------------------- 
    488 Details: 
    489 ----------------------------------- 
    490 Error #: 7 
    491 Function: GpuProgramParameters::getParamIndex 
    492 Description: Cannot find a parameter named worldViewProj.  
    493 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    494 Line: 768 
    495 Stack unwinding: <<beginning of stack>> 
    496 10:29:17: An exception has been thrown! 
     53910:16:25: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     54010:16:25: An exception has been thrown! 
     541 
     542----------------------------------- 
     543Details: 
     544----------------------------------- 
     545Error #: 7 
     546Function: GpuProgramParameters::getParamIndex 
     547Description: Cannot find a parameter named worldViewProj.  
     548File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     549Line: 768 
     550Stack unwinding: <<beginning of stack>> 
     55110:16:25: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     552 
     553----------------------------------- 
     554Details: 
     555----------------------------------- 
     556Error #: 7 
     557Function: GpuProgramParameters::getParamIndex 
     558Description: Cannot find a parameter named worldViewProj.  
     559File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     560Line: 768 
     561Stack unwinding: <<beginning of stack>> 
     56210:16:25: An exception has been thrown! 
    497563 
    498564----------------------------------- 
     
    505571Line: 768 
    506572Stack unwinding: <<beginning of stack>> 
    507 10:29:17: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     57310:16:25: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    508574 
    509575----------------------------------- 
     
    516582Line: 768 
    517583Stack unwinding: <<beginning of stack>> 
    518 10:29:17: An exception has been thrown! 
     58410:16:25: An exception has been thrown! 
    519585 
    520586----------------------------------- 
     
    527593Line: 768 
    528594Stack unwinding: <<beginning of stack>> 
    529 10:29:17: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     59510:16:25: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    530596 
    531597----------------------------------- 
     
    538604Line: 768 
    539605Stack unwinding: <<beginning of stack>> 
    540 10:29:18: Parsing script Glow.material 
    541 10:29:18: An exception has been thrown! 
     60610:16:26: Parsing script Glow.material 
     60710:16:26: An exception has been thrown! 
    542608 
    543609----------------------------------- 
     
    550616Line: 768 
    551617Stack unwinding: <<beginning of stack>> 
    552 10:29:18: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     61810:16:26: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    553619 
    554620----------------------------------- 
     
    561627Line: 768 
    562628Stack unwinding: <<beginning of stack>> 
    563 10:29:18: Parsing script hangar.material 
    564 10:29:18: Parsing script kupola.material 
    565 10:29:18: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    566 10:29:18: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    567 10:29:18: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    568 10:29:18: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    569 10:29:18: Parsing script Ogre.material 
    570 10:29:18: Parsing script Particles.material 
    571 10:29:18: An exception has been thrown! 
    572  
    573 ----------------------------------- 
    574 Details: 
    575 ----------------------------------- 
    576 Error #: 7 
    577 Function: GpuProgramParameters::getParamIndex 
    578 Description: Cannot find a parameter named worldViewProj.  
    579 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    580 Line: 768 
    581 Stack unwinding: <<beginning of stack>> 
    582 10:29:18: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    583  
    584 ----------------------------------- 
    585 Details: 
    586 ----------------------------------- 
    587 Error #: 7 
    588 Function: GpuProgramParameters::getParamIndex 
    589 Description: Cannot find a parameter named worldViewProj.  
    590 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    591 Line: 768 
    592 Stack unwinding: <<beginning of stack>> 
    593 10:29:18: An exception has been thrown! 
    594  
    595 ----------------------------------- 
    596 Details: 
    597 ----------------------------------- 
    598 Error #: 7 
    599 Function: GpuProgramParameters::getParamIndex 
    600 Description: Cannot find a parameter named worldViewProj.  
    601 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    602 Line: 768 
    603 Stack unwinding: <<beginning of stack>> 
    604 10:29:18: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    605  
    606 ----------------------------------- 
    607 Details: 
    608 ----------------------------------- 
    609 Error #: 7 
    610 Function: GpuProgramParameters::getParamIndex 
    611 Description: Cannot find a parameter named worldViewProj.  
    612 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    613 Line: 768 
    614 Stack unwinding: <<beginning of stack>> 
    615 10:29:18: Parsing script RaytraceDemo.material 
    616 10:29:18: Parsing script stairs.material 
    617 10:29:18: Parsing script X3D.material 
    618 10:29:18: Parsing script GameTools_Glow.compositor 
    619 10:29:18: Parsing script GameTools_ToneMap.compositor 
    620 10:29:18: Parsing script sample.fontdef 
    621 10:29:18: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    622 10:29:18: Parsing script GameTools.particle 
    623 10:29:18: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    624 10:29:18: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    625 10:29:18: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    626 10:29:18: Parsing script Compositor.overlay 
    627 10:29:18: Parsing script DP3.overlay 
    628 10:29:18: Parsing script Example-CubeMapping.overlay 
    629 10:29:18: Parsing script Example-DynTex.overlay 
    630 10:29:18: Parsing script Example-Water.overlay 
    631 10:29:18: Parsing script FullScreen.overlay 
    632 10:29:18: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    633 10:29:18: Parsing script Shadows.overlay 
    634 10:29:18: Finished parsing scripts for resource group General 
    635 10:29:18: Parsing scripts for resource group Internal 
    636 10:29:18: Finished parsing scripts for resource group Internal 
    637 10:29:18: Creating viewport on target 'rtt/3173344', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    638 10:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    639 10:29:18: Creating viewport on target 'rtt/3173408', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    640 10:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    641 10:29:18: Creating viewport on target 'rtt/3110848', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    642 10:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    643 10:29:18: Creating viewport on target 'rtt/3129536', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    644 10:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    645 10:29:18: Creating viewport on target 'rtt/3133280', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    646 10:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    647 10:29:18: Texture: stormy_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    648 10:29:18: Texture: stormy_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    649 10:29:18: Texture: stormy_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    650 10:29:18: Texture: stormy_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    651 10:29:18: Texture: stormy_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    652 10:29:18: Texture: stormy_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    653 10:29:18: Mesh: Loading athene.mesh. 
    654 10:29:18: Can't assign material 1 - Default to SubEntity of head because this Material does not exist. Have you forgotten to define it in a .material script? 
    655 10:29:18: Creating viewport on target 'rtt/44978016', rendering from camera 'psys1_HPP_IMPOSTOR_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    656 10:29:18: Viewport for camera 'psys1_HPP_IMPOSTOR_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    657 10:29:18: WARNING: Texture instance 'psys1_HPP_IMPOSTOR' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    658 10:29:18: Creating viewport on target 'rtt/44978080', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    659 10:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    660 10:29:18: Creating viewport on target 'rtt/44978144', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    661 10:29:18: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    662 10:29:18: Creating viewport on target 'rtt/3168960', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    663 10:29:18: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    664 10:29:18: WARNING: Texture instance 'ILLUMMODULE_SCENE_CAMERA_DEPTH' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    665 10:29:18: Creating viewport on target 'rtt/3169312', rendering from camera 'psys1_LIGHT_VOLUME_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    666 10:29:18: Viewport for camera 'psys1_LIGHT_VOLUME_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    667 10:29:18: WARNING: Texture instance 'psys1_LIGHT_VOLUME' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    668 10:29:18: Win32Input8: DirectInput Activation Starts 
    669 10:29:18: Win32Input8: Establishing keyboard input. 
    670 10:29:18: Win32Input8: Keyboard input established. 
    671 10:29:18: Win32Input8: Initializing mouse input in immediate mode. 
    672 10:29:18: Win32Input8: Mouse input in immediate mode initialized. 
    673 10:29:18: Win32Input8: DirectInput OK. 
    674 10:29:18: Texture: smoke2.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    675 10:29:18: D3D9 : Loading 2D Texture, image name : 'pamacs.dds' with 2147483647 mip map levels 
    676 10:29:18: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    677 10:29:18: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    678 10:29:18: An exception has been thrown! 
     62910:16:26: Parsing script hangar.material 
     63010:16:26: Parsing script kupola.material 
     63110:16:26: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     63210:16:26: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     63310:16:26: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     63410:16:26: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     63510:16:26: Parsing script Ogre.material 
     63610:16:26: Parsing script Particles.material 
     63710:16:26: An exception has been thrown! 
     638 
     639----------------------------------- 
     640Details: 
     641----------------------------------- 
     642Error #: 7 
     643Function: GpuProgramParameters::getParamIndex 
     644Description: Cannot find a parameter named worldViewProj.  
     645File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     646Line: 768 
     647Stack unwinding: <<beginning of stack>> 
     64810:16:26: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     649 
     650----------------------------------- 
     651Details: 
     652----------------------------------- 
     653Error #: 7 
     654Function: GpuProgramParameters::getParamIndex 
     655Description: Cannot find a parameter named worldViewProj.  
     656File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     657Line: 768 
     658Stack unwinding: <<beginning of stack>> 
     65910:16:26: An exception has been thrown! 
     660 
     661----------------------------------- 
     662Details: 
     663----------------------------------- 
     664Error #: 7 
     665Function: GpuProgramParameters::getParamIndex 
     666Description: Cannot find a parameter named worldViewProj.  
     667File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     668Line: 768 
     669Stack unwinding: <<beginning of stack>> 
     67010:16:26: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     671 
     672----------------------------------- 
     673Details: 
     674----------------------------------- 
     675Error #: 7 
     676Function: GpuProgramParameters::getParamIndex 
     677Description: Cannot find a parameter named worldViewProj.  
     678File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     679Line: 768 
     680Stack unwinding: <<beginning of stack>> 
     68110:16:26: Parsing script RaytraceDemo.material 
     68210:16:26: Parsing script stairs.material 
     68310:16:26: Parsing script X3D.material 
     68410:16:26: Parsing script GameTools_Glow.compositor 
     68510:16:26: Parsing script GameTools_ToneMap.compositor 
     68610:16:26: Parsing script sample.fontdef 
     68710:16:26: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     68810:16:26: Parsing script GameTools.particle 
     68910:16:26: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     69010:16:26: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     69110:16:26: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     69210:16:26: Parsing script Compositor.overlay 
     69310:16:26: Parsing script DP3.overlay 
     69410:16:26: Parsing script Example-CubeMapping.overlay 
     69510:16:26: Parsing script Example-DynTex.overlay 
     69610:16:26: Parsing script Example-Water.overlay 
     69710:16:26: Parsing script FullScreen.overlay 
     69810:16:26: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     69910:16:26: Parsing script Shadows.overlay 
     70010:16:26: Finished parsing scripts for resource group General 
     70110:16:26: Parsing scripts for resource group Internal 
     70210:16:26: Finished parsing scripts for resource group Internal 
     70310:16:26: Mesh: Loading ogrehead.mesh. 
     70410:16:26: Texture: WeirdEye.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70510:16:26: Texture: GreenSkin.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70610:16:26: Texture: spheremap.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70710:16:26: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 
     70810:16:26: An exception has been thrown! 
    679709 
    680710----------------------------------- 
     
    683713Error #: 8 
    684714Function: ResourceGroupManager::openResource 
    685 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     715Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    686716File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    687717Line: 583 
    688718Stack unwinding: <<beginning of stack>> 
    689 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     71910:16:26: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    690720 
    691721----------------------------------- 
     
    694724Error #: 8 
    695725Function: ResourceGroupManager::openResource 
    696 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     726Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    697727File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    698728Line: 583 
    699729Stack unwinding: <<beginning of stack>> 
    700 10:29:18: An exception has been thrown! 
     73010:16:26: An exception has been thrown! 
    701731 
    702732----------------------------------- 
     
    705735Error #: 8 
    706736Function: ResourceGroupManager::openResource 
    707 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     737Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    708738File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    709739Line: 583 
    710740Stack unwinding: <<beginning of stack>> 
    711 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     74110:16:26: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    712742 
    713743----------------------------------- 
     
    716746Error #: 8 
    717747Function: ResourceGroupManager::openResource 
    718 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     748Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    719749File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    720750Line: 583 
    721751Stack unwinding: <<beginning of stack>> 
    722 10:29:18: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    723 10:29:18: An exception has been thrown! 
     75210:16:26: An exception has been thrown! 
    724753 
    725754----------------------------------- 
     
    728757Error #: 8 
    729758Function: ResourceGroupManager::openResource 
    730 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     759Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    731760File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    732761Line: 583 
    733762Stack unwinding: <<beginning of stack>> 
    734 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     76310:16:26: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    735764 
    736765----------------------------------- 
     
    739768Error #: 8 
    740769Function: ResourceGroupManager::openResource 
    741 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     770Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    742771File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    743772Line: 583 
    744773Stack unwinding: <<beginning of stack>> 
    745 10:29:18: An exception has been thrown! 
     77410:16:26: An exception has been thrown! 
    746775 
    747776----------------------------------- 
     
    750779Error #: 8 
    751780Function: ResourceGroupManager::openResource 
    752 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     781Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    753782File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    754783Line: 583 
    755784Stack unwinding: <<beginning of stack>> 
    756 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     78510:16:26: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    757786 
    758787----------------------------------- 
     
    761790Error #: 8 
    762791Function: ResourceGroupManager::openResource 
    763 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     792Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    764793File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    765794Line: 583 
    766795Stack unwinding: <<beginning of stack>> 
    767 10:29:18: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    768 10:29:18: An exception has been thrown! 
    769  
    770 ----------------------------------- 
    771 Details: 
    772 ----------------------------------- 
    773 Error #: 8 
    774 Function: ResourceGroupManager::openResource 
    775 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    776 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    777 Line: 583 
    778 Stack unwinding: <<beginning of stack>> 
    779 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    780  
    781 ----------------------------------- 
    782 Details: 
    783 ----------------------------------- 
    784 Error #: 8 
    785 Function: ResourceGroupManager::openResource 
    786 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    787 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    788 Line: 583 
    789 Stack unwinding: <<beginning of stack>> 
    790 10:29:18: An exception has been thrown! 
    791  
    792 ----------------------------------- 
    793 Details: 
    794 ----------------------------------- 
    795 Error #: 8 
    796 Function: ResourceGroupManager::openResource 
    797 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    798 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    799 Line: 583 
    800 Stack unwinding: <<beginning of stack>> 
    801 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    802  
    803 ----------------------------------- 
    804 Details: 
    805 ----------------------------------- 
    806 Error #: 8 
    807 Function: ResourceGroupManager::openResource 
    808 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    809 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    810 Line: 583 
    811 Stack unwinding: <<beginning of stack>> 
    812 10:29:18: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    813 10:29:18: An exception has been thrown! 
    814  
    815 ----------------------------------- 
    816 Details: 
    817 ----------------------------------- 
    818 Error #: 8 
    819 Function: ResourceGroupManager::openResource 
    820 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    821 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    822 Line: 583 
    823 Stack unwinding: <<beginning of stack>> 
    824 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    825  
    826 ----------------------------------- 
    827 Details: 
    828 ----------------------------------- 
    829 Error #: 8 
    830 Function: ResourceGroupManager::openResource 
    831 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    832 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    833 Line: 583 
    834 Stack unwinding: <<beginning of stack>> 
    835 10:29:18: An exception has been thrown! 
    836  
    837 ----------------------------------- 
    838 Details: 
    839 ----------------------------------- 
    840 Error #: 8 
    841 Function: ResourceGroupManager::openResource 
    842 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    843 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    844 Line: 583 
    845 Stack unwinding: <<beginning of stack>> 
    846 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    847  
    848 ----------------------------------- 
    849 Details: 
    850 ----------------------------------- 
    851 Error #: 8 
    852 Function: ResourceGroupManager::openResource 
    853 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    854 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    855 Line: 583 
    856 Stack unwinding: <<beginning of stack>> 
    857 10:29:18: An exception has been thrown! 
    858  
    859 ----------------------------------- 
    860 Details: 
    861 ----------------------------------- 
    862 Error #: 8 
    863 Function: ResourceGroupManager::openResource 
    864 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    865 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    866 Line: 583 
    867 Stack unwinding: <<beginning of stack>> 
    868 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    869  
    870 ----------------------------------- 
    871 Details: 
    872 ----------------------------------- 
    873 Error #: 8 
    874 Function: ResourceGroupManager::openResource 
    875 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    876 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    877 Line: 583 
    878 Stack unwinding: <<beginning of stack>> 
    879 10:29:18: An exception has been thrown! 
    880  
    881 ----------------------------------- 
    882 Details: 
    883 ----------------------------------- 
    884 Error #: 8 
    885 Function: ResourceGroupManager::openResource 
    886 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    887 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    888 Line: 583 
    889 Stack unwinding: <<beginning of stack>> 
    890 10:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    891  
    892 ----------------------------------- 
    893 Details: 
    894 ----------------------------------- 
    895 Error #: 8 
    896 Function: ResourceGroupManager::openResource 
    897 Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
    898 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    899 Line: 583 
    900 Stack unwinding: <<beginning of stack>> 
    901 10:29:59: Unregistering ResourceManager for type BspLevel 
    902 10:29:59: Render Target 'rtt/3173344' Average FPS: 39.8856 Best FPS: 275.174 Worst FPS: 28.1827 
    903 10:29:59: Render Target 'rtt/3129536' Average FPS: 39.8676 Best FPS: 275.174 Worst FPS: 28.1827 
    904 10:29:59: Render Target 'rtt/3110848' Average FPS: 39.867 Best FPS: 274.725 Worst FPS: 28.1827 
    905 10:29:59: Render Target 'rtt/3133280' Average FPS: 39.8701 Best FPS: 276.171 Worst FPS: 28.1827 
    906 10:29:59: Render Target 'rtt/3173408' Average FPS: 39.8856 Best FPS: 275.174 Worst FPS: 28.1553 
    907 10:29:59: Render Target 'rtt/3169312' Average FPS: 39.8441 Best FPS: 303.393 Worst FPS: 26.9784 
    908 10:29:59: Render Target 'rtt/3168960' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    909 10:29:59: Render Target 'rtt/44978144' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    910 10:29:59: Render Target 'rtt/44978080' Average FPS: 39.8468 Best FPS: 303.091 Worst FPS: 26.9784 
    911 10:29:59: Render Target 'rtt/44978016' Average FPS: 39.8468 Best FPS: 303.393 Worst FPS: 26.9784 
    912 10:29:59: *-*-* OGRE Shutdown 
    913 10:29:59: Unregistering ResourceManager for type Compositor 
    914 10:29:59: Unregistering ResourceManager for type Font 
    915 10:29:59: Unregistering ResourceManager for type Skeleton 
    916 10:29:59: Unregistering ResourceManager for type Mesh 
    917 10:29:59: Unregistering ResourceManager for type HighLevelGpuProgram 
    918 10:29:59: Unloading library .\Plugin_CgProgramManager 
    919 10:29:59: Unloading library .\Plugin_OctreeSceneManager 
    920 10:29:59: Unloading library .\Plugin_BSPSceneManager 
    921 10:29:59: Unloading library .\Plugin_ParticleFX 
    922 10:29:59: Render Target 'OGRE Render Window' Average FPS: 39.8641 Best FPS: 305.777 Worst FPS: 26.9784 
    923 10:29:59: D3D9 : Shutting down cleanly. 
    924 10:29:59: Unregistering ResourceManager for type Texture 
    925 10:29:59: Unregistering ResourceManager for type GpuProgram 
    926 10:29:59: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    927 10:29:59: Unloading library .\RenderSystem_Direct3D9 
    928 10:29:59: Unregistering ResourceManager for type Material 
    929 10:29:59: Unloading library OgrePlatform.dll 
     79610:16:26: Mesh: Loading atlascube.mesh. 
     79710:16:26: Texture: cubbe.jpg: Loading 1 faces(PF_B8G8R8,556x556x1) with 9 generated mipmaps from Image. Internal format is PF_X8R8G8B8,556x556x1. 
     79810:16:26: Creating viewport on target 'rtt/22132512', 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 
     79910:16:26: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80010:16:26: Creating viewport on target 'rtt/22132576', 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 
     80110:16:26: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80210:16:26: Creating viewport on target 'rtt/22132640', 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 
     80310:16:26: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80410:16:26: Creating viewport on target 'rtt/22132704', 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 
     80510:16:26: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80610:16:26: Creating viewport on target 'rtt/22132768', 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 
     80710:16:26: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80810:16:26: Creating viewport on target 'rtt/22132832', 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 
     80910:16:26: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     81010:16:26: 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. 
     81110:16:26: Creating viewport on target 'rtt/22134112', 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 
     81210:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81310:16:26: Creating viewport on target 'rtt/22134176', 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 
     81410:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81510:16:26: Creating viewport on target 'rtt/22134240', 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 
     81610:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81710:16:26: Creating viewport on target 'rtt/22134304', 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 
     81810:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81910:16:26: Creating viewport on target 'rtt/22134368', 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 
     82010:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     82110:16:26: Creating viewport on target 'rtt/22134432', 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 
     82210:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     82310:16:26: Creating viewport on target 'rtt/22135456', 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 
     82410:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82510:16:26: Creating viewport on target 'rtt/22135520', 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 
     82610:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82710:16:26: Creating viewport on target 'rtt/22135584', 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 
     82810:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82910:16:26: Creating viewport on target 'rtt/22135648', 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 
     83010:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83110:16:26: Creating viewport on target 'rtt/22135712', 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 
     83210:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83310:16:26: Creating viewport on target 'rtt/22135776', 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 
     83410:16:26: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83510:16:26: 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. 
     83610:16:26: Win32Input8: DirectInput Activation Starts 
     83710:16:26: Win32Input8: Establishing keyboard input. 
     83810:16:26: Win32Input8: Keyboard input established. 
     83910:16:26: Win32Input8: Initializing mouse input in immediate mode. 
     84010:16:26: Win32Input8: Mouse input in immediate mode initialized. 
     84110:16:26: Win32Input8: DirectInput OK. 
     84210:16:26: 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. 
     84310:16:58: Unregistering ResourceManager for type BspLevel 
     84410:16:58: Render Target 'rtt/22135456' Average FPS: 30.858 Best FPS: 36.8893 Worst FPS: 25.974 
     84510:16:58: Render Target 'rtt/22135520' Average FPS: 30.858 Best FPS: 36.8893 Worst FPS: 25.974 
     84610:16:58: Render Target 'rtt/22135584' Average FPS: 30.858 Best FPS: 36.8893 Worst FPS: 25.974 
     84710:16:58: Render Target 'rtt/22135648' Average FPS: 30.562 Best FPS: 35.9281 Worst FPS: 26.4901 
     84810:16:58: Render Target 'rtt/22135712' Average FPS: 30.5634 Best FPS: 35.9281 Worst FPS: 26.4901 
     84910:16:58: Render Target 'rtt/22135776' Average FPS: 30.5634 Best FPS: 35.8923 Worst FPS: 26.4901 
     85010:16:58: Render Target 'rtt/22134112' Average FPS: 30.8564 Best FPS: 36.8893 Worst FPS: 25.95 
     85110:16:58: Render Target 'rtt/22134176' Average FPS: 30.851 Best FPS: 36.8893 Worst FPS: 25.95 
     85210:16:58: Render Target 'rtt/22134240' Average FPS: 30.857 Best FPS: 36.8526 Worst FPS: 25.95 
     85310:16:58: Render Target 'rtt/22134304' Average FPS: 30.857 Best FPS: 36.8526 Worst FPS: 25.974 
     85410:16:58: Render Target 'rtt/22134368' Average FPS: 30.857 Best FPS: 36.8893 Worst FPS: 25.974 
     85510:16:58: Render Target 'rtt/22134432' Average FPS: 30.857 Best FPS: 36.8893 Worst FPS: 25.974 
     85610:16:58: Render Target 'rtt/22132512' Average FPS: 5.0822 Best FPS: 6.34633 Worst FPS: 3.96825 
     85710:16:58: Render Target 'rtt/22132576' Average FPS: 5.18283 Best FPS: 6.18921 Worst FPS: 3.87597 
     85810:16:58: Render Target 'rtt/22132640' Average FPS: 5.10833 Best FPS: 6.03969 Worst FPS: 4.22654 
     85910:16:58: Render Target 'rtt/22132704' Average FPS: 4.97187 Best FPS: 5.98802 Worst FPS: 4.48029 
     86010:16:58: Render Target 'rtt/22132768' Average FPS: 5.17106 Best FPS: 5.99401 Worst FPS: 4.39754 
     86110:16:58: Render Target 'rtt/22132832' Average FPS: 5.17415 Best FPS: 5.98802 Worst FPS: 4.31406 
     86210:16:58: *-*-* OGRE Shutdown 
     86310:16:58: Unregistering ResourceManager for type Compositor 
     86410:16:58: Unregistering ResourceManager for type Font 
     86510:16:58: Unregistering ResourceManager for type Skeleton 
     86610:16:58: Unregistering ResourceManager for type Mesh 
     86710:16:58: Unregistering ResourceManager for type HighLevelGpuProgram 
     86810:16:58: Unloading library .\Plugin_CgProgramManager 
     86910:16:58: Unloading library .\Plugin_OctreeSceneManager 
     87010:16:58: Unloading library .\Plugin_BSPSceneManager 
     87110:16:58: Unloading library .\Plugin_ParticleFX 
     87210:16:58: Render Target 'OGRE Render Window' Average FPS: 30.5628 Best FPS: 35.9281 Worst FPS: 26.4706 
     87310:16:58: D3D9 : Shutting down cleanly. 
     87410:16:58: Unregistering ResourceManager for type Texture 
     87510:16:58: Unregistering ResourceManager for type GpuProgram 
     87610:16:58: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     87710:16:58: Unloading library .\RenderSystem_Direct3D9 
     87810:16:58: Unregistering ResourceManager for type Material 
     87910:16:58: Unloading library OgrePlatform.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/ogre.cfg

    r1519 r1525  
    66Floating-point mode=Fastest 
    77Full Screen=No 
    8 Rendering Device=NVIDIA GeForce 7800 GT 
     8Rendering Device=NVIDIA GeForce 6800 GT 
    99VSync=No 
    1010Video Mode=800 x 600 @ 32-bit colour 
  • GTP/trunk/App/Demos/Illum/Ogre/src/DiffuseTest/include/DiffuseTest.h

    r1519 r1525  
    257257 
    258258        Entity* object = mSceneMgr->createEntity("object", "ogrehead.mesh"); 
    259                 object->setMaterialName("GameTools/CubeMap/Diffuse"); 
     259                object->setMaterialName("GameTools/Diffuse/use"); 
     260                //object->setMaterialName("GameTools/Diffuse2"); 
    260261                objectNode = rootNode->createChildSceneNode(); 
    261262                objectNode->attachObject(object); 
     
    264265                Entity* room = mSceneMgr->createEntity("atlascube", "atlascube.mesh"); 
    265266                SceneNode* roomNode = rootNode->createChildSceneNode(); 
    266                 roomNode->setScale(2.5,2.5,2.5); 
     267                //roomNode->setScale(2.5,2.5,2.5); 
    267268                roomNode->attachObject(room); 
    268269                roomNode->_updateBounds(); 
Note: See TracChangeset for help on using the changeset viewer.