Changeset 1885


Ignore:
Timestamp:
12/13/06 16:36:29 (17 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum/Ogre
Files:
11 edited

Legend:

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

    r1882 r1885  
    333333  
    334334 float4 Color = float4(0, 0, 0, 0); 
    335  Color = float4(length(IN.cPos), 0,0,length(IN.cPos)); 
     335 Color = float4(1.0/length(IN.cPos), length(IN.cPos),0,0); 
    336336 return Color; 
    337337} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/MetalTeapotNew.hlsl

    r1870 r1885  
    7070 
    7171void linearSearch(  float3 x, float3 R, float3 N, samplerCUBE mp, 
     72                                        float min,                                       
    7273                    out float3 p, 
    7374                    out float dl, 
     
    8788 dt = max(dt, MIN_LIN_ITERATIONCOUNT); 
    8889 dt = 1.0 / dt; 
    89      
     90   
    9091 float t = 0.01;//dt; 
     92 if(min > length(x)) 
     93 { 
     94        float a = 1; 
     95        float b = 2 * dot(R, x); 
     96        float c = dot(x,x) - min * min;  
     97         
     98        float dis = b*b - 4*a*c; 
     99        float t1 = (-b + sqrt(dis))/ 2 * a; 
     100        float t2 = (-b - sqrt(dis))/ 2 * a; 
     101         
     102        if(t1 > 0 && (t2 < 0 || t1 < t2)) 
     103         t =  t1 / ( a + t1); 
     104        else if(t2 > 0) 
     105         t =  t2 / ( a + t2);    
     106  } 
     107  
    91108 float pa; 
    92109  
     
    156173           samplerCUBE mp3Color, 
    157174           samplerCUBE mp3Dist, 
     175           float min1, 
     176                   float min2,              
    158177           out float4 Il, out float3 Nl) 
    159178{ 
    160179 float dl1 = 0, dp1, llp1, ppp1; 
    161180 float3 p1; 
    162  linearSearch(x, R, N, mp1, p1, dl1, dp1, llp1, ppp1); 
     181 linearSearch(x, R, N, mp1, min1, p1, dl1, dp1, llp1, ppp1); 
    163182 float dl2 = 0, dp2, llp2, ppp2; 
    164183 float3 p2; 
    165  linearSearch(x, R, N, mp2, p2, dl2, dp2, llp2, ppp2); 
     184 linearSearch(x, R, N, mp2, min2, p2, dl2, dp2, llp2, ppp2); 
    166185  
    167186 bool valid1 = dot(p1,p1) != 0; 
     
    173192 if(!valid1 && ! valid2) 
    174193 { 
    175     linearSearch(x, R, N, mp3Dist, p, dl, dp, llp, ppp); 
     194    linearSearch(x, R, N, mp3Dist, 0, p, dl, dp, llp, ppp); 
    176195    Il.a = 1;  
    177196    secantSearch(x, R, mp3Dist, dl, dp, llp, ppp, p); 
     
    232251                                                        uniform samplerCUBE NormDistMap2 : register(s3), 
    233252                                                        uniform float3 lastCenter, 
    234                                                         uniform float refIndex) 
     253                                                        uniform float refIndex, 
     254                                                        float min1, 
     255                                                        float min2 
     256                                                        ) 
    235257{ 
    236258 float4 Color = float4(1,1,1,1); 
     
    254276 float3 Nl; 
    255277 float4 Il; 
    256  float3 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, Il, Nl); 
     278 float3 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 
    257279 if(Il.a == 0) 
    258280  Il = readCubeMap(CubeMap, l); 
     
    261283} 
    262284 
     285#define REFRACTION 0 
    263286 
    264287float4 MultipleReflectionPS(VertOut IN, 
     
    269292                                                        uniform samplerCUBE NormDistMap2 : register(s3), 
    270293                                                        uniform float3 lastCenter, 
    271                                                         uniform float refIndex) 
     294                                                        uniform float refIndex, 
     295                                                        float min1, 
     296                                                        float min2) 
    272297{ 
    273298         float4 I = float4(0,0,0,0); 
     
    282307         V = normalize(V); 
    283308         float3 l; 
    284          float4 Irefr; 
     309         float4 Irefl; 
    285310         int depth = 0; 
     311         
     312         
    286313         while(depth < MAX_RAY_DEPTH) 
    287314         { 
    288            float3 R;   
    289            //R = normalize(reflect( V, N)); 
    290               
    291            
    292           float ri = refIndex; 
    293            
    294           if(dot(V,N) > 0) 
    295           { 
    296             ri = 1.0 / ri; 
    297             N = -N;          
    298           } 
    299           R = refract( V, N, ri); 
    300           if(dot(R,R) == 0) R = reflect( V, N);  
    301            
    302                                  
    303            float3 Nl; 
    304            float4 Il; 
    305            l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, Il, Nl); 
    306            if(Il.a == 0) 
    307            { 
    308                    depth += 1;            
    309            } 
    310            else 
    311            { 
    312                    I = Il; 
    313                    depth = MAX_RAY_DEPTH; 
    314            } 
    315            x = l;           
    316            N = normalize(Nl); 
    317            V = R;                   
    318         } 
    319         if(I.a == 0) 
    320        I = readCubeMap(CubeMap, l); 
    321         Irefr = I; 
    322          
    323         float4 Irefl; 
    324         N = normalize(IN.mNormal); 
    325         x = IN.wPos - lastCenter; 
    326         V  = (IN.wPos - cameraPos); 
    327         depth = 0; 
    328         while(depth < MAX_RAY_DEPTH) 
    329          { 
    330            float3 R;   
     315            float3 R;   
    331316           R = normalize(reflect( V, N));          
    332317                 
    333318           float3 Nl; 
    334319           float4 Il; 
    335            l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, Il, Nl); 
     320           l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 
    336321           if(Il.a == 0) 
    337322           { 
     
    346331           N = Nl; 
    347332           V = R;    
     333            
    348334        } 
     335        if(I.a == 0) 
     336           I = readCubeMap(CubeMap, l); 
     337        Irefl = I; 
    349338         
    350         if(I.a == 0) 
    351        I = readCubeMap(CubeMap, l); 
    352     Irefl = I; 
    353      
    354     I = Irefl * F + (1.0 - F) * Irefr; 
     339        if(REFRACTION) 
     340        { 
     341                float4 Irefr; 
     342                N = normalize(IN.mNormal); 
     343                x = IN.wPos - lastCenter; 
     344                V  = (IN.wPos - cameraPos); 
     345                depth = 0; 
     346                while(depth < MAX_RAY_DEPTH) 
     347                { 
     348                  float3 R;   
     349                   //R = normalize(reflect( V, N)); 
     350                      
     351                   
     352                  float ri = refIndex; 
     353                   
     354                  if(dot(V,N) > 0) 
     355                  { 
     356                        ri = 1.0 / ri; 
     357                        N = -N;      
     358                  } 
     359                  R = refract( V, N, ri); 
     360                  if(dot(R,R) == 0) R = reflect( V, N);  
     361                   
     362                                         
     363                   float3 Nl; 
     364                   float4 Il; 
     365                   l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 
     366                   if(Il.a == 0) 
     367                   { 
     368                           depth += 1;            
     369                   } 
     370                   else 
     371                   { 
     372                           I = Il; 
     373                           depth = MAX_RAY_DEPTH; 
     374                   } 
     375                   x = l;           
     376                   N = normalize(Nl); 
     377                   V = R;                   
     378                } 
     379                 
     380                if(I.a == 0) 
     381                   I = readCubeMap(CubeMap, l); 
     382                Irefr = I; 
     383             
     384                I = Irefl * F + (1.0 - F) * Irefr; 
     385    } 
    355386        return I; 
    356387} 
     
    364395                                                        uniform float3 lastCenter, 
    365396                                                        uniform float SingleBounce, 
    366                                                         uniform float refIndex):COLOR 
    367 { 
     397                                                        uniform float refIndex, 
     398                                                        uniform float4 min1, 
     399                                                        uniform float4 min2 
     400                                                        ):COLOR 
     401{ 
     402    min1.x = 1.0 / min1.x; 
     403    min2.x = 1.0 / min2.x; 
    368404        float4 Color = 1.0; 
    369405        if(SingleBounce == 1) 
    370          Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex); 
     406         Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min1.x, min2.x); 
    371407        else 
    372          Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex); 
     408         Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min1.x, min2.x); 
    373409          
    374410        return Color; 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/MetalTeapot.material

    r1882 r1885  
    131131  {  
    132132    cull_hardware clockwise 
    133     scene_blend min 
    134     scene_blend_alpha max 
     133    scene_blend max 
     134    depth_test off 
    135135     
    136136        vertex_program_ref DefaultVS 
     
    155155  {  
    156156    cull_hardware anticlockwise 
    157     scene_blend min 
    158     scene_blend_alpha max 
     157    scene_blend max 
     158    depth_test off 
    159159     
    160160        vertex_program_ref DefaultVS 
     
    213213                                layer 1 
    214214                                texture_unit_id 2 
     215                                get_minmax true 
     216                                min_var_name min1 
    215217                                update_interval         0 
    216218                                distance_calc false 
     
    226228                                layer 2 
    227229                                texture_unit_id 3 
     230                                get_minmax true 
     231                                min_var_name min2 
    228232                                update_interval         0 
    229233                                distance_calc false 
     
    233237                                render_self true 
    234238                                self_material NormalDistanceCW 
    235                         } 
    236                         RenderTechnique ColorCubeMap 
    237                         { 
    238                                 resolution 1 
    239                                 layer 3 
    240                                 texture_unit_id 4 
    241                                 update_interval         0 
    242                                 distance_calc false 
    243                                 face_angle_calc false 
    244                                 update_all_face true 
    245                                 render_env false 
    246                                 render_self true 
    247                                 self_material DistanceMinMaxCCW 
    248                         } 
    249                         RenderTechnique ColorCubeMap 
    250                         { 
    251                                 resolution 1 
    252                                 layer 4 
    253                                 texture_unit_id 5 
    254                                 update_interval         0 
    255                                 distance_calc false 
    256                                 face_angle_calc false 
    257                                 update_all_face true 
    258                                 render_env false 
    259                                 render_self true 
    260                                 self_material DistanceMinMaxCW 
    261                         } 
    262                  
     239                        }                
    263240                 } 
    264241                 vertex_program_ref DefaultVS 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log

    r1879 r1885  
    1 14:59:06: Creating resource group General 
    2 14:59:06: Creating resource group Internal 
    3 14:59:06: Creating resource group Autodetect 
    4 14:59:06: Registering ResourceManager for type Material 
    5 14:59:06: Registering ResourceManager for type Mesh 
    6 14:59:06: Registering ResourceManager for type Skeleton 
    7 14:59:06: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 14:59:06: Loading library OgrePlatform_d.dll 
    9 14:59:06: OverlayElementFactory for type Panel registered. 
    10 14:59:06: OverlayElementFactory for type BorderPanel registered. 
    11 14:59:06: OverlayElementFactory for type TextArea registered. 
    12 14:59:06: Registering ResourceManager for type Font 
    13 14:59:06: ArchiveFactory for archive type FileSystem registered. 
    14 14:59:06: ArchiveFactory for archive type Zip registered. 
    15 14:59:06: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 14:59:06: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
    17 14:59:06: Registering ResourceManager for type HighLevelGpuProgram 
    18 14:59:06: Registering ResourceManager for type Compositor 
    19 14:59:06: MovableObjectFactory for type 'Entity' registered. 
    20 14:59:06: MovableObjectFactory for type 'Light' registered. 
    21 14:59:06: MovableObjectFactory for type 'BillboardSet' registered. 
    22 14:59:06: MovableObjectFactory for type 'ManualObject' registered. 
    23 14:59:06: MovableObjectFactory for type 'BillboardChain' registered. 
    24 14:59:06: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 14:59:06: Loading library .\RenderSystem_Direct3D9 
    26 14:59:06: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 14:59:06: D3D9: Driver Detection Starts 
    28 14:59:06: D3D9: Driver Detection Ends 
    29 14:59:06: Loading library .\Plugin_ParticleFX 
    30 14:59:06: Particle Emitter Type 'Point' registered 
    31 14:59:06: Particle Emitter Type 'Box' registered 
    32 14:59:06: Particle Emitter Type 'Ellipsoid' registered 
    33 14:59:06: Particle Emitter Type 'Cylinder' registered 
    34 14:59:06: Particle Emitter Type 'Ring' registered 
    35 14:59:06: Particle Emitter Type 'HollowEllipsoid' registered 
    36 14:59:06: Particle Affector Type 'LinearForce' registered 
    37 14:59:06: Particle Affector Type 'ColourFader' registered 
    38 14:59:06: Particle Affector Type 'ColourFader2' registered 
    39 14:59:06: Particle Affector Type 'ColourImage' registered 
    40 14:59:06: Particle Affector Type 'ColourInterpolator' registered 
    41 14:59:06: Particle Affector Type 'Scaler' registered 
    42 14:59:06: Particle Affector Type 'Rotator' registered 
    43 14:59:06: Particle Affector Type 'DirectionRandomiser' registered 
    44 14:59:06: Particle Affector Type 'DeflectorPlane' registered 
    45 14:59:06: Loading library .\Plugin_BSPSceneManager 
    46 14:59:06: Registering ResourceManager for type BspLevel 
    47 14:59:06: Loading library .\Plugin_OctreeSceneManager 
    48 14:59:06: Loading library .\Plugin_CgProgramManager 
    49 14:59:06: *-*-* OGRE Initialising 
    50 14:59:06: *-*-* Version 1.2.0 (Dagon) 
    51 14:59:06: Creating resource group Bootstrap 
    52 14:59:06: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 14:59:06: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 14:59:06: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 14:59:06: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 14:59:06: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 14:59:06: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 14:59:06: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 14:59:06: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 14:59:06: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 14:59:06: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 14:59:06: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 14:59:06: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 14:59:06: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 14:59:06: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 14:59:06: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 14:59:06: D3D9 : RenderSystem Option: Full Screen = No 
    68 14:59:06: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    69 14:59:06: D3D9 : RenderSystem Option: VSync = No 
    70 14:59:06: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 14:59:07: D3D9 : Subsystem Initialising 
    72 14:59:07: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 14:59:07: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 14:59:07: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 14:59:07: Registering ResourceManager for type Texture 
    76 14:59:07: Registering ResourceManager for type GpuProgram 
    77 14:59:07: RenderSystem capabilities 
    78 14:59:07: ------------------------- 
    79 14:59:07:  * Hardware generation of mipmaps: yes 
    80 14:59:07:  * Texture blending: yes 
    81 14:59:07:  * Anisotropic texture filtering: yes 
    82 14:59:07:  * Dot product texture operation: yes 
    83 14:59:07:  * Cube mapping: yes 
    84 14:59:07:  * Hardware stencil buffer: yes 
    85 14:59:07:    - Stencil depth: 8 
    86 14:59:07:    - Two sided stencil support: yes 
    87 14:59:07:    - Wrap stencil values: yes 
    88 14:59:07:  * Hardware vertex / index buffers: yes 
    89 14:59:07:  * Vertex programs: yes 
    90 14:59:07:    - Max vertex program version: vs_3_0 
    91 14:59:07:  * Fragment programs: yes 
    92 14:59:07:    - Max fragment program version: ps_3_0 
    93 14:59:07:  * Texture Compression: yes 
    94 14:59:07:    - DXT: yes 
    95 14:59:07:    - VTC: no 
    96 14:59:07:  * Scissor Rectangle: yes 
    97 14:59:07:  * Hardware Occlusion Query: yes 
    98 14:59:07:  * User clip planes: yes 
    99 14:59:07:  * VET_UBYTE4 vertex element type: yes 
    100 14:59:07:  * Infinite far plane projection: yes 
    101 14:59:07:  * Hardware render-to-texture: yes 
    102 14:59:07:  * Floating point textures: yes 
    103 14:59:07:  * Non-power-of-two textures: yes 
    104 14:59:07:  * Volume textures: yes 
    105 14:59:07:  * Multiple Render Targets: 4 
    106 14:59:07:  * Max Point Size: 8192 
    107 14:59:07: *************************************** 
    108 14:59:07: *** D3D9 : Subsystem Initialised OK *** 
    109 14:59:07: *************************************** 
    110 14:59:07: ResourceBackgroundQueue - threading disabled 
    111 14:59:07: Particle Renderer Type 'billboard' registered 
    112 14:59:07: Particle Renderer Type 'sprite' registered 
    113 14:59:07: TerrainSceneManager: Registered a new PageSource for type Heightmap 
    114 14:59:07: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    115 14:59:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    116 14:59:07: Parsing scripts for resource group Autodetect 
    117 14:59:07: Finished parsing scripts for resource group Autodetect 
    118 14:59:07: Parsing scripts for resource group Bootstrap 
    119 14:59:07: Parsing script OgreCore.material 
    120 14:59:07: Parsing script OgreProfiler.material 
    121 14:59:07: Parsing script Ogre.fontdef 
    122 14:59:07: Parsing script OgreDebugPanel.overlay 
    123 14:59:07: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    124 14:59:07: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    125 14:59:07: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    126 14:59:07: Font TrebuchetMSBoldusing texture size 512x512 
    127 14:59:07: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    128 14:59:07: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    129 14:59:07: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    130 14:59:07: Parsing script OgreLoadingPanel.overlay 
    131 14:59:07: Finished parsing scripts for resource group Bootstrap 
    132 14:59:07: Parsing scripts for resource group General 
    133 14:59:07: Parsing script GameTools.program 
    134 14:59:07: Parsing script atlascube.material 
    135 14:59:07: Parsing script colorcube.material 
    136 14:59:07: Parsing script difflab.material 
    137 14:59:08: An exception has been thrown! 
     115:08:26: Creating resource group General 
     215:08:26: Creating resource group Internal 
     315:08:26: Creating resource group Autodetect 
     415:08:26: Registering ResourceManager for type Material 
     515:08:26: Registering ResourceManager for type Mesh 
     615:08:26: Registering ResourceManager for type Skeleton 
     715:08:26: MovableObjectFactory for type 'ParticleSystem' registered. 
     815:08:26: Loading library OgrePlatform_d.dll 
     915:08:26: OverlayElementFactory for type Panel registered. 
     1015:08:26: OverlayElementFactory for type BorderPanel registered. 
     1115:08:26: OverlayElementFactory for type TextArea registered. 
     1215:08:26: Registering ResourceManager for type Font 
     1315:08:26: ArchiveFactory for archive type FileSystem registered. 
     1415:08:26: ArchiveFactory for archive type Zip registered. 
     1515:08:26: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1615:08:26: 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  
     1715:08:26: Registering ResourceManager for type HighLevelGpuProgram 
     1815:08:26: Registering ResourceManager for type Compositor 
     1915:08:26: MovableObjectFactory for type 'Entity' registered. 
     2015:08:26: MovableObjectFactory for type 'Light' registered. 
     2115:08:26: MovableObjectFactory for type 'BillboardSet' registered. 
     2215:08:26: MovableObjectFactory for type 'ManualObject' registered. 
     2315:08:26: MovableObjectFactory for type 'BillboardChain' registered. 
     2415:08:26: MovableObjectFactory for type 'RibbonTrail' registered. 
     2515:08:26: Loading library .\RenderSystem_Direct3D9 
     2615:08:26: D3D9 : Direct3D9 Rendering Subsystem created. 
     2715:08:26: D3D9: Driver Detection Starts 
     2815:08:26: D3D9: Driver Detection Ends 
     2915:08:26: Loading library .\Plugin_ParticleFX 
     3015:08:26: Particle Emitter Type 'Point' registered 
     3115:08:26: Particle Emitter Type 'Box' registered 
     3215:08:26: Particle Emitter Type 'Ellipsoid' registered 
     3315:08:26: Particle Emitter Type 'Cylinder' registered 
     3415:08:26: Particle Emitter Type 'Ring' registered 
     3515:08:26: Particle Emitter Type 'HollowEllipsoid' registered 
     3615:08:26: Particle Affector Type 'LinearForce' registered 
     3715:08:26: Particle Affector Type 'ColourFader' registered 
     3815:08:26: Particle Affector Type 'ColourFader2' registered 
     3915:08:26: Particle Affector Type 'ColourImage' registered 
     4015:08:26: Particle Affector Type 'ColourInterpolator' registered 
     4115:08:26: Particle Affector Type 'Scaler' registered 
     4215:08:26: Particle Affector Type 'Rotator' registered 
     4315:08:26: Particle Affector Type 'DirectionRandomiser' registered 
     4415:08:26: Particle Affector Type 'DeflectorPlane' registered 
     4515:08:26: Loading library .\Plugin_BSPSceneManager 
     4615:08:26: Registering ResourceManager for type BspLevel 
     4715:08:26: Loading library .\Plugin_OctreeSceneManager 
     4815:08:26: Loading library .\Plugin_CgProgramManager 
     4915:08:26: *-*-* OGRE Initialising 
     5015:08:26: *-*-* Version 1.2.0 (Dagon) 
     5115:08:26: Creating resource group Bootstrap 
     5215:08:26: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5315:08:26: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5415:08:26: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5515:08:26: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5615:08:26: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5715:08:26: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5815:08:26: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5915:08:26: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6015:08:26: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6115:08:26: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6215:08:26: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6315:08:26: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6415:08:26: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6515:08:26: D3D9 : RenderSystem Option: Anti aliasing = None 
     6615:08:26: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6715:08:26: D3D9 : RenderSystem Option: Full Screen = No 
     6815:08:26: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     6915:08:26: D3D9 : RenderSystem Option: VSync = No 
     7015:08:26: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7115:08:26: D3D9 : Subsystem Initialising 
     7215:08:26: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7315:08:26: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7415:08:26: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7515:08:26: Registering ResourceManager for type Texture 
     7615:08:26: Registering ResourceManager for type GpuProgram 
     7715:08:26: RenderSystem capabilities 
     7815:08:26: ------------------------- 
     7915:08:26:  * Hardware generation of mipmaps: yes 
     8015:08:26:  * Texture blending: yes 
     8115:08:26:  * Anisotropic texture filtering: yes 
     8215:08:26:  * Dot product texture operation: yes 
     8315:08:26:  * Cube mapping: yes 
     8415:08:26:  * Hardware stencil buffer: yes 
     8515:08:26:    - Stencil depth: 8 
     8615:08:26:    - Two sided stencil support: yes 
     8715:08:26:    - Wrap stencil values: yes 
     8815:08:26:  * Hardware vertex / index buffers: yes 
     8915:08:26:  * Vertex programs: yes 
     9015:08:26:    - Max vertex program version: vs_3_0 
     9115:08:26:  * Fragment programs: yes 
     9215:08:26:    - Max fragment program version: ps_3_0 
     9315:08:26:  * Texture Compression: yes 
     9415:08:26:    - DXT: yes 
     9515:08:26:    - VTC: no 
     9615:08:26:  * Scissor Rectangle: yes 
     9715:08:26:  * Hardware Occlusion Query: yes 
     9815:08:26:  * User clip planes: yes 
     9915:08:26:  * VET_UBYTE4 vertex element type: yes 
     10015:08:26:  * Infinite far plane projection: yes 
     10115:08:26:  * Hardware render-to-texture: yes 
     10215:08:26:  * Floating point textures: yes 
     10315:08:26:  * Non-power-of-two textures: yes 
     10415:08:26:  * Volume textures: yes 
     10515:08:26:  * Multiple Render Targets: 4 
     10615:08:26:  * Max Point Size: 8192 
     10715:08:26: *************************************** 
     10815:08:26: *** D3D9 : Subsystem Initialised OK *** 
     10915:08:26: *************************************** 
     11015:08:26: ResourceBackgroundQueue - threading disabled 
     11115:08:26: Particle Renderer Type 'billboard' registered 
     11215:08:26: Particle Renderer Type 'sprite' registered 
     11315:08:26: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     11415:08:26: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11515:08:26: Parsing scripts for resource group Autodetect 
     11615:08:26: Finished parsing scripts for resource group Autodetect 
     11715:08:26: Parsing scripts for resource group Bootstrap 
     11815:08:26: Parsing script OgreCore.material 
     11915:08:26: Parsing script OgreProfiler.material 
     12015:08:26: Parsing script Ogre.fontdef 
     12115:08:26: Parsing script OgreDebugPanel.overlay 
     12215:08:26: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12315:08:26: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12415:08:27: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12515:08:27: Font TrebuchetMSBoldusing texture size 512x512 
     12615:08:27: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12715:08:27: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12815:08:27: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12915:08:27: Parsing script OgreLoadingPanel.overlay 
     13015:08:27: Finished parsing scripts for resource group Bootstrap 
     13115:08:27: Parsing scripts for resource group General 
     13215:08:27: Parsing script GameTools.program 
     13315:08:27: Parsing script atlascube.material 
     13415:08:27: Parsing script colorcube.material 
     13515:08:27: Parsing script difflab.material 
     13615:08:27: An exception has been thrown! 
    138137 
    139138----------------------------------- 
     
    146145Line: 779 
    147146Stack unwinding: <<beginning of stack>> 
    148 14:59:08: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14715:08:27: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    149148 
    150149----------------------------------- 
     
    157156Line: 779 
    158157Stack unwinding: <<beginning of stack>> 
    159 14:59:08: An exception has been thrown! 
     15815:08:27: An exception has been thrown! 
    160159 
    161160----------------------------------- 
     
    168167Line: 779 
    169168Stack unwinding: <<beginning of stack>> 
    170 14:59:08: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16915:08:27: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    171170 
    172171----------------------------------- 
     
    179178Line: 779 
    180179Stack unwinding: <<beginning of stack>> 
    181 14:59:08: An exception has been thrown! 
     18015:08:27: An exception has been thrown! 
    182181 
    183182----------------------------------- 
     
    190189Line: 779 
    191190Stack unwinding: <<beginning of stack>> 
    192 14:59:08: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19115:08:27: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    193192 
    194193----------------------------------- 
     
    201200Line: 779 
    202201Stack unwinding: <<beginning of stack>> 
    203 14:59:08: An exception has been thrown! 
     20215:08:27: An exception has been thrown! 
    204203 
    205204----------------------------------- 
     
    212211Line: 779 
    213212Stack unwinding: <<beginning of stack>> 
    214 14:59:08: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21315:08:27: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    215214 
    216215----------------------------------- 
     
    223222Line: 779 
    224223Stack unwinding: <<beginning of stack>> 
    225 14:59:08: An exception has been thrown! 
     22415:08:27: An exception has been thrown! 
    226225 
    227226----------------------------------- 
     
    234233Line: 779 
    235234Stack unwinding: <<beginning of stack>> 
    236 14:59:08: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23515:08:27: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    237236 
    238237----------------------------------- 
     
    245244Line: 779 
    246245Stack unwinding: <<beginning of stack>> 
    247 14:59:08: An exception has been thrown! 
     24615:08:27: An exception has been thrown! 
    248247 
    249248----------------------------------- 
     
    256255Line: 779 
    257256Stack unwinding: <<beginning of stack>> 
    258 14:59:08: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25715:08:27: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    259258 
    260259----------------------------------- 
     
    267266Line: 779 
    268267Stack unwinding: <<beginning of stack>> 
    269 14:59:08: An exception has been thrown! 
     26815:08:27: An exception has been thrown! 
    270269 
    271270----------------------------------- 
     
    278277Line: 779 
    279278Stack unwinding: <<beginning of stack>> 
    280 14:59:08: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27915:08:27: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    281280 
    282281----------------------------------- 
     
    289288Line: 779 
    290289Stack unwinding: <<beginning of stack>> 
    291 14:59:08: An exception has been thrown! 
     29015:08:27: An exception has been thrown! 
    292291 
    293292----------------------------------- 
     
    300299Line: 779 
    301300Stack unwinding: <<beginning of stack>> 
    302 14:59:08: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30115:08:27: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    303302 
    304303----------------------------------- 
     
    311310Line: 779 
    312311Stack unwinding: <<beginning of stack>> 
    313 14:59:08: An exception has been thrown! 
     31215:08:27: An exception has been thrown! 
    314313 
    315314----------------------------------- 
     
    322321Line: 779 
    323322Stack unwinding: <<beginning of stack>> 
    324 14:59:08: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32315:08:27: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    325324 
    326325----------------------------------- 
     
    333332Line: 779 
    334333Stack unwinding: <<beginning of stack>> 
    335 14:59:08: An exception has been thrown! 
     33415:08:27: An exception has been thrown! 
    336335 
    337336----------------------------------- 
     
    344343Line: 779 
    345344Stack unwinding: <<beginning of stack>> 
    346 14:59:08: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34515:08:27: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    347346 
    348347----------------------------------- 
     
    355354Line: 779 
    356355Stack unwinding: <<beginning of stack>> 
    357 14:59:08: An exception has been thrown! 
     35615:08:27: An exception has been thrown! 
    358357 
    359358----------------------------------- 
     
    366365Line: 779 
    367366Stack unwinding: <<beginning of stack>> 
    368 14:59:08: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     36715:08:27: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    369368 
    370369----------------------------------- 
     
    377376Line: 779 
    378377Stack unwinding: <<beginning of stack>> 
    379 14:59:08: An exception has been thrown! 
     37815:08:27: An exception has been thrown! 
    380379 
    381380----------------------------------- 
     
    388387Line: 779 
    389388Stack unwinding: <<beginning of stack>> 
    390 14:59:08: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     38915:08:27: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    391390 
    392391----------------------------------- 
     
    399398Line: 779 
    400399Stack unwinding: <<beginning of stack>> 
    401 14:59:08: An exception has been thrown! 
     40015:08:27: An exception has been thrown! 
    402401 
    403402----------------------------------- 
     
    410409Line: 779 
    411410Stack unwinding: <<beginning of stack>> 
    412 14:59:08: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41115:08:27: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    413412 
    414413----------------------------------- 
     
    421420Line: 779 
    422421Stack unwinding: <<beginning of stack>> 
    423 14:59:08: An exception has been thrown! 
     42215:08:27: An exception has been thrown! 
    424423 
    425424----------------------------------- 
     
    432431Line: 779 
    433432Stack unwinding: <<beginning of stack>> 
    434 14:59:08: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43315:08:27: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    435434 
    436435----------------------------------- 
     
    443442Line: 779 
    444443Stack unwinding: <<beginning of stack>> 
    445 14:59:08: An exception has been thrown! 
     44415:08:27: An exception has been thrown! 
    446445 
    447446----------------------------------- 
     
    454453Line: 779 
    455454Stack unwinding: <<beginning of stack>> 
    456 14:59:08: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45515:08:27: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    457456 
    458457----------------------------------- 
     
    465464Line: 779 
    466465Stack unwinding: <<beginning of stack>> 
    467 14:59:08: An exception has been thrown! 
     46615:08:27: An exception has been thrown! 
    468467 
    469468----------------------------------- 
     
    476475Line: 779 
    477476Stack unwinding: <<beginning of stack>> 
    478 14:59:08: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     47715:08:27: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    479478 
    480479----------------------------------- 
     
    487486Line: 779 
    488487Stack unwinding: <<beginning of stack>> 
    489 14:59:08: An exception has been thrown! 
     48815:08:27: An exception has been thrown! 
    490489 
    491490----------------------------------- 
     
    498497Line: 779 
    499498Stack unwinding: <<beginning of stack>> 
    500 14:59:08: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     49915:08:27: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    501500 
    502501----------------------------------- 
     
    509508Line: 779 
    510509Stack unwinding: <<beginning of stack>> 
    511 14:59:08: An exception has been thrown! 
     51015:08:27: An exception has been thrown! 
    512511 
    513512----------------------------------- 
     
    520519Line: 779 
    521520Stack unwinding: <<beginning of stack>> 
    522 14:59:08: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52115:08:27: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    523522 
    524523----------------------------------- 
     
    531530Line: 779 
    532531Stack unwinding: <<beginning of stack>> 
    533 14:59:08: An exception has been thrown! 
     53215:08:27: An exception has been thrown! 
    534533 
    535534----------------------------------- 
     
    542541Line: 779 
    543542Stack unwinding: <<beginning of stack>> 
    544 14:59:08: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54315:08:27: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    545544 
    546545----------------------------------- 
     
    553552Line: 779 
    554553Stack unwinding: <<beginning of stack>> 
    555 14:59:08: An exception has been thrown! 
     55415:08:27: An exception has been thrown! 
    556555 
    557556----------------------------------- 
     
    564563Line: 779 
    565564Stack unwinding: <<beginning of stack>> 
    566 14:59:08: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56515:08:27: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    567566 
    568567----------------------------------- 
     
    575574Line: 779 
    576575Stack unwinding: <<beginning of stack>> 
    577 14:59:08: An exception has been thrown! 
     57615:08:27: An exception has been thrown! 
    578577 
    579578----------------------------------- 
     
    586585Line: 779 
    587586Stack unwinding: <<beginning of stack>> 
    588 14:59:08: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     58715:08:27: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    589588 
    590589----------------------------------- 
     
    597596Line: 779 
    598597Stack unwinding: <<beginning of stack>> 
    599 14:59:08: Parsing script diffscene.material 
    600 14:59:08: An exception has been thrown! 
     59815:08:27: Parsing script diffscene.material 
     59915:08:27: An exception has been thrown! 
    601600 
    602601----------------------------------- 
     
    609608Line: 779 
    610609Stack unwinding: <<beginning of stack>> 
    611 14:59:08: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     61015:08:27: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    612611 
    613612----------------------------------- 
     
    620619Line: 779 
    621620Stack unwinding: <<beginning of stack>> 
    622 14:59:08: An exception has been thrown! 
     62115:08:27: An exception has been thrown! 
    623622 
    624623----------------------------------- 
     
    631630Line: 779 
    632631Stack unwinding: <<beginning of stack>> 
    633 14:59:08: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63215:08:27: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    634633 
    635634----------------------------------- 
     
    642641Line: 779 
    643642Stack unwinding: <<beginning of stack>> 
    644 14:59:08: An exception has been thrown! 
     64315:08:27: An exception has been thrown! 
    645644 
    646645----------------------------------- 
     
    653652Line: 779 
    654653Stack unwinding: <<beginning of stack>> 
    655 14:59:08: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65415:08:27: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    656655 
    657656----------------------------------- 
     
    664663Line: 779 
    665664Stack unwinding: <<beginning of stack>> 
    666 14:59:08: An exception has been thrown! 
     66515:08:27: An exception has been thrown! 
    667666 
    668667----------------------------------- 
     
    675674Line: 779 
    676675Stack unwinding: <<beginning of stack>> 
    677 14:59:08: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67615:08:27: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    678677 
    679678----------------------------------- 
     
    686685Line: 779 
    687686Stack unwinding: <<beginning of stack>> 
    688 14:59:08: An exception has been thrown! 
     68715:08:27: An exception has been thrown! 
    689688 
    690689----------------------------------- 
     
    697696Line: 779 
    698697Stack unwinding: <<beginning of stack>> 
    699 14:59:08: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69815:08:27: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    700699 
    701700----------------------------------- 
     
    708707Line: 779 
    709708Stack unwinding: <<beginning of stack>> 
    710 14:59:08: An exception has been thrown! 
     70915:08:27: An exception has been thrown! 
    711710 
    712711----------------------------------- 
     
    719718Line: 779 
    720719Stack unwinding: <<beginning of stack>> 
    721 14:59:08: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     72015:08:27: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    722721 
    723722----------------------------------- 
     
    730729Line: 779 
    731730Stack unwinding: <<beginning of stack>> 
    732 14:59:08: An exception has been thrown! 
     73115:08:27: An exception has been thrown! 
    733732 
    734733----------------------------------- 
     
    741740Line: 779 
    742741Stack unwinding: <<beginning of stack>> 
    743 14:59:08: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74215:08:27: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    744743 
    745744----------------------------------- 
     
    752751Line: 779 
    753752Stack unwinding: <<beginning of stack>> 
    754 14:59:08: An exception has been thrown! 
     75315:08:27: An exception has been thrown! 
    755754 
    756755----------------------------------- 
     
    763762Line: 779 
    764763Stack unwinding: <<beginning of stack>> 
    765 14:59:08: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76415:08:27: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    766765 
    767766----------------------------------- 
     
    774773Line: 779 
    775774Stack unwinding: <<beginning of stack>> 
    776 14:59:08: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    777 14:59:08: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    778 14:59:08: Parsing script Diffuse.material 
    779 14:59:08: An exception has been thrown! 
     77515:08:27: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77615:08:27: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77715:08:27: Parsing script Diffuse.material 
     77815:08:28: An exception has been thrown! 
    780779 
    781780----------------------------------- 
     
    788787Line: 779 
    789788Stack unwinding: <<beginning of stack>> 
    790 14:59:08: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     78915:08:28: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    791790 
    792791----------------------------------- 
     
    799798Line: 779 
    800799Stack unwinding: <<beginning of stack>> 
    801 14:59:09: An exception has been thrown! 
     80015:08:28: An exception has been thrown! 
    802801 
    803802----------------------------------- 
     
    810809Line: 779 
    811810Stack unwinding: <<beginning of stack>> 
    812 14:59:09: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     81115:08:28: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    813812 
    814813----------------------------------- 
     
    821820Line: 779 
    822821Stack unwinding: <<beginning of stack>> 
    823 14:59:13: An exception has been thrown! 
     82215:08:32: An exception has been thrown! 
    824823 
    825824----------------------------------- 
     
    832831Line: 779 
    833832Stack unwinding: <<beginning of stack>> 
    834 14:59:13: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83315:08:32: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    835834 
    836835----------------------------------- 
     
    843842Line: 779 
    844843Stack unwinding: <<beginning of stack>> 
    845 14:59:13: An exception has been thrown! 
     84415:08:32: An exception has been thrown! 
    846845 
    847846----------------------------------- 
     
    854853Line: 779 
    855854Stack unwinding: <<beginning of stack>> 
    856 14:59:13: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     85515:08:32: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    857856 
    858857----------------------------------- 
     
    865864Line: 779 
    866865Stack unwinding: <<beginning of stack>> 
    867 14:59:13: Parsing script EnvMetals.material 
    868 14:59:13: An exception has been thrown! 
     86615:08:32: Parsing script EnvMetals.material 
     86715:08:32: An exception has been thrown! 
    869868 
    870869----------------------------------- 
     
    877876Line: 779 
    878877Stack unwinding: <<beginning of stack>> 
    879 14:59:13: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     87815:08:32: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    880879 
    881880----------------------------------- 
     
    888887Line: 779 
    889888Stack unwinding: <<beginning of stack>> 
    890 14:59:13: An exception has been thrown! 
     88915:08:32: An exception has been thrown! 
    891890 
    892891----------------------------------- 
     
    899898Line: 779 
    900899Stack unwinding: <<beginning of stack>> 
    901 14:59:13: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     90015:08:32: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    902901 
    903902----------------------------------- 
     
    910909Line: 779 
    911910Stack unwinding: <<beginning of stack>> 
    912 14:59:13: An exception has been thrown! 
     91115:08:32: An exception has been thrown! 
    913912 
    914913----------------------------------- 
     
    921920Line: 779 
    922921Stack unwinding: <<beginning of stack>> 
    923 14:59:13: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     92215:08:32: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    924923 
    925924----------------------------------- 
     
    932931Line: 779 
    933932Stack unwinding: <<beginning of stack>> 
    934 14:59:13: An exception has been thrown! 
     93315:08:32: An exception has been thrown! 
    935934 
    936935----------------------------------- 
     
    943942Line: 779 
    944943Stack unwinding: <<beginning of stack>> 
    945 14:59:13: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     94415:08:32: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    946945 
    947946----------------------------------- 
     
    954953Line: 779 
    955954Stack unwinding: <<beginning of stack>> 
    956 14:59:13: Parsing script GameTools.material 
    957 14:59:13: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    958 14:59:13: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    959 14:59:13: An exception has been thrown! 
     95515:08:32: Parsing script GameTools.material 
     95615:08:32: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     95715:08:32: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     95815:08:32: An exception has been thrown! 
    960959 
    961960----------------------------------- 
     
    968967Line: 779 
    969968Stack unwinding: <<beginning of stack>> 
    970 14:59:13: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     96915:08:32: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    971970 
    972971----------------------------------- 
     
    979978Line: 779 
    980979Stack unwinding: <<beginning of stack>> 
    981 14:59:13: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    982 14:59:13: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    983 14:59:13: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    984 14:59:13: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
    985 14:59:13: Parsing script GameTools_HPS.material 
    986 14:59:13: An exception has been thrown! 
     98015:08:32: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     98115:08:32: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     98215:08:32: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     98315:08:32: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
     98415:08:32: Parsing script GameTools_HPS.material 
     98515:08:32: An exception has been thrown! 
    987986 
    988987----------------------------------- 
     
    995994Line: 779 
    996995Stack unwinding: <<beginning of stack>> 
    997 14:59:13: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     99615:08:32: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    998997 
    999998----------------------------------- 
     
    10061005Line: 779 
    10071006Stack unwinding: <<beginning of stack>> 
    1008 14:59:13: An exception has been thrown! 
     100715:08:32: An exception has been thrown! 
    10091008 
    10101009----------------------------------- 
     
    10171016Line: 779 
    10181017Stack unwinding: <<beginning of stack>> 
    1019 14:59:13: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     101815:08:32: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10201019 
    10211020----------------------------------- 
     
    10281027Line: 779 
    10291028Stack unwinding: <<beginning of stack>> 
    1030 14:59:13: An exception has been thrown! 
     102915:08:32: An exception has been thrown! 
    10311030 
    10321031----------------------------------- 
     
    10391038Line: 779 
    10401039Stack unwinding: <<beginning of stack>> 
    1041 14:59:13: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     104015:08:32: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10421041 
    10431042----------------------------------- 
     
    10501049Line: 779 
    10511050Stack unwinding: <<beginning of stack>> 
    1052 14:59:13: An exception has been thrown! 
     105115:08:32: An exception has been thrown! 
    10531052 
    10541053----------------------------------- 
     
    10611060Line: 779 
    10621061Stack unwinding: <<beginning of stack>> 
    1063 14:59:13: Error in material HPS_SMOKE_L_Depth at line 144 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     106215:08:32: Error in material HPS_SMOKE_L_Depth at line 144 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10641063 
    10651064----------------------------------- 
     
    10721071Line: 779 
    10731072Stack unwinding: <<beginning of stack>> 
    1074 14:59:13: An exception has been thrown! 
     107315:08:32: An exception has been thrown! 
    10751074 
    10761075----------------------------------- 
     
    10831082Line: 779 
    10841083Stack unwinding: <<beginning of stack>> 
    1085 14:59:13: Error in material HPS_SMOKE_L_Depth at line 146 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     108415:08:32: Error in material HPS_SMOKE_L_Depth at line 146 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10861085 
    10871086----------------------------------- 
     
    10941093Line: 779 
    10951094Stack unwinding: <<beginning of stack>> 
    1096 14:59:13: An exception has been thrown! 
     109515:08:32: An exception has been thrown! 
    10971096 
    10981097----------------------------------- 
     
    11051104Line: 779 
    11061105Stack unwinding: <<beginning of stack>> 
    1107 14:59:13: Error in material HPS_SMOKE_L_Depth at line 148 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     110615:08:32: Error in material HPS_SMOKE_L_Depth at line 148 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11081107 
    11091108----------------------------------- 
     
    11161115Line: 779 
    11171116Stack unwinding: <<beginning of stack>> 
    1118 14:59:13: An exception has been thrown! 
     111715:08:32: An exception has been thrown! 
    11191118 
    11201119----------------------------------- 
     
    11271126Line: 779 
    11281127Stack unwinding: <<beginning of stack>> 
    1129 14:59:13: Error in material HPS_SMOKE_L_Depth at line 149 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     112815:08:32: Error in material HPS_SMOKE_L_Depth at line 149 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11301129 
    11311130----------------------------------- 
     
    11381137Line: 779 
    11391138Stack unwinding: <<beginning of stack>> 
    1140 14:59:13: An exception has been thrown! 
     113915:08:32: An exception has been thrown! 
    11411140 
    11421141----------------------------------- 
     
    11491148Line: 779 
    11501149Stack unwinding: <<beginning of stack>> 
    1151 14:59:13: Error in material HPS_SMOKE_L_Depth at line 153 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     115015:08:32: Error in material HPS_SMOKE_L_Depth at line 153 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11521151 
    11531152----------------------------------- 
     
    11601159Line: 779 
    11611160Stack unwinding: <<beginning of stack>> 
    1162 14:59:13: An exception has been thrown! 
     116115:08:32: An exception has been thrown! 
     1162 
     1163----------------------------------- 
     1164Details: 
     1165----------------------------------- 
     1166Error #: 7 
     1167Function: GpuProgramParameters::getParamIndex 
     1168Description: Cannot find a parameter named worldViewProj.  
     1169File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1170Line: 779 
     1171Stack unwinding: <<beginning of stack>> 
     117215:08:32: Error in material HPS_SMOKE_L_Depth_Illum at line 222 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     1173 
     1174----------------------------------- 
     1175Details: 
     1176----------------------------------- 
     1177Error #: 7 
     1178Function: GpuProgramParameters::getParamIndex 
     1179Description: Cannot find a parameter named worldViewProj.  
     1180File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1181Line: 779 
     1182Stack unwinding: <<beginning of stack>> 
     118315:08:32: An exception has been thrown! 
     1184 
     1185----------------------------------- 
     1186Details: 
     1187----------------------------------- 
     1188Error #: 7 
     1189Function: GpuProgramParameters::getParamIndex 
     1190Description: Cannot find a parameter named Proj.  
     1191File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1192Line: 779 
     1193Stack unwinding: <<beginning of stack>> 
     119415:08:32: Error in material HPS_SMOKE_L_Depth_Illum at line 231 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     1195 
     1196----------------------------------- 
     1197Details: 
     1198----------------------------------- 
     1199Error #: 7 
     1200Function: GpuProgramParameters::getParamIndex 
     1201Description: Cannot find a parameter named Proj.  
     1202File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1203Line: 779 
     1204Stack unwinding: <<beginning of stack>> 
     120515:08:32: An exception has been thrown! 
    11631206 
    11641207----------------------------------- 
     
    11711214Line: 779 
    11721215Stack unwinding: <<beginning of stack>> 
    1173 14:59:13: Error in material HPS_SMOKE_L_Depth at line 154 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     121615:08:32: Error in material HPS_SMOKE_L_Depth_Illum at line 232 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11741217 
    11751218----------------------------------- 
     
    11821225Line: 779 
    11831226Stack unwinding: <<beginning of stack>> 
    1184 14:59:13: An exception has been thrown! 
     122715:08:32: An exception has been thrown! 
    11851228 
    11861229----------------------------------- 
     
    11931236Line: 779 
    11941237Stack unwinding: <<beginning of stack>> 
    1195 14:59:13: Error in material HPS_SMOKE_L_Depth_Illum at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     123815:08:32: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11961239 
    11971240----------------------------------- 
     
    12041247Line: 779 
    12051248Stack unwinding: <<beginning of stack>> 
    1206 14:59:13: An exception has been thrown! 
    1207  
    1208 ----------------------------------- 
    1209 Details: 
    1210 ----------------------------------- 
    1211 Error #: 7 
    1212 Function: GpuProgramParameters::getParamIndex 
    1213 Description: Cannot find a parameter named Proj.  
    1214 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1215 Line: 779 
    1216 Stack unwinding: <<beginning of stack>> 
    1217 14:59:13: Error in material HPS_SMOKE_L_Depth_Illum at line 230 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    1218  
    1219 ----------------------------------- 
    1220 Details: 
    1221 ----------------------------------- 
    1222 Error #: 7 
    1223 Function: GpuProgramParameters::getParamIndex 
    1224 Description: Cannot find a parameter named Proj.  
    1225 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1226 Line: 779 
    1227 Stack unwinding: <<beginning of stack>> 
    1228 14:59:13: An exception has been thrown! 
    1229  
    1230 ----------------------------------- 
    1231 Details: 
    1232 ----------------------------------- 
    1233 Error #: 7 
    1234 Function: GpuProgramParameters::getParamIndex 
    1235 Description: Cannot find a parameter named farplane.  
    1236 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1237 Line: 779 
    1238 Stack unwinding: <<beginning of stack>> 
    1239 14:59:13: Error in material HPS_SMOKE_L_Depth_Illum at line 231 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    1240  
    1241 ----------------------------------- 
    1242 Details: 
    1243 ----------------------------------- 
    1244 Error #: 7 
    1245 Function: GpuProgramParameters::getParamIndex 
    1246 Description: Cannot find a parameter named farplane.  
    1247 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1248 Line: 779 
    1249 Stack unwinding: <<beginning of stack>> 
    1250 14:59:13: An exception has been thrown! 
     124915:08:32: Parsing script GlassHead.material 
     125015:08:32: An exception has been thrown! 
     1251 
     1252----------------------------------- 
     1253Details: 
     1254----------------------------------- 
     1255Error #: 7 
     1256Function: GpuProgramParameters::getParamIndex 
     1257Description: Cannot find a parameter named worldIT.  
     1258File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1259Line: 779 
     1260Stack unwinding: <<beginning of stack>> 
     126115:08:32: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     1262 
     1263----------------------------------- 
     1264Details: 
     1265----------------------------------- 
     1266Error #: 7 
     1267Function: GpuProgramParameters::getParamIndex 
     1268Description: Cannot find a parameter named worldIT.  
     1269File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1270Line: 779 
     1271Stack unwinding: <<beginning of stack>> 
     127215:08:32: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     127315:08:32: An exception has been thrown! 
    12511274 
    12521275----------------------------------- 
     
    12591282Line: 779 
    12601283Stack unwinding: <<beginning of stack>> 
    1261 14:59:13: Error in material Smoke_IllumVolume at line 290 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     128415:08:32: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12621285 
    12631286----------------------------------- 
     
    12701293Line: 779 
    12711294Stack unwinding: <<beginning of stack>> 
    1272 14:59:13: Parsing script GlassHead.material 
    1273 14:59:13: An exception has been thrown! 
    1274  
    1275 ----------------------------------- 
    1276 Details: 
    1277 ----------------------------------- 
    1278 Error #: 7 
    1279 Function: GpuProgramParameters::getParamIndex 
    1280 Description: Cannot find a parameter named worldIT.  
    1281 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1282 Line: 779 
    1283 Stack unwinding: <<beginning of stack>> 
    1284 14:59:13: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    1285  
    1286 ----------------------------------- 
    1287 Details: 
    1288 ----------------------------------- 
    1289 Error #: 7 
    1290 Function: GpuProgramParameters::getParamIndex 
    1291 Description: Cannot find a parameter named worldIT.  
    1292 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1293 Line: 779 
    1294 Stack unwinding: <<beginning of stack>> 
    1295 14:59:13: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    1296 14:59:13: An exception has been thrown! 
     129515:08:32: An exception has been thrown! 
     1296 
     1297----------------------------------- 
     1298Details: 
     1299----------------------------------- 
     1300Error #: 7 
     1301Function: GpuProgramParameters::getParamIndex 
     1302Description: Cannot find a parameter named resolution.  
     1303File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1304Line: 779 
     1305Stack unwinding: <<beginning of stack>> 
     130615:08:32: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     1307 
     1308----------------------------------- 
     1309Details: 
     1310----------------------------------- 
     1311Error #: 7 
     1312Function: GpuProgramParameters::getParamIndex 
     1313Description: Cannot find a parameter named resolution.  
     1314File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1315Line: 779 
     1316Stack unwinding: <<beginning of stack>> 
     131715:08:32: An exception has been thrown! 
     1318 
     1319----------------------------------- 
     1320Details: 
     1321----------------------------------- 
     1322Error #: 7 
     1323Function: GpuProgramParameters::getParamIndex 
     1324Description: Cannot find a parameter named resolution.  
     1325File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1326Line: 779 
     1327Stack unwinding: <<beginning of stack>> 
     132815:08:32: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     1329 
     1330----------------------------------- 
     1331Details: 
     1332----------------------------------- 
     1333Error #: 7 
     1334Function: GpuProgramParameters::getParamIndex 
     1335Description: Cannot find a parameter named resolution.  
     1336File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1337Line: 779 
     1338Stack unwinding: <<beginning of stack>> 
     133915:08:33: Parsing script Glow.material 
     134015:08:33: An exception has been thrown! 
     1341 
     1342----------------------------------- 
     1343Details: 
     1344----------------------------------- 
     1345Error #: 7 
     1346Function: GpuProgramParameters::getParamIndex 
     1347Description: Cannot find a parameter named Gain.  
     1348File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1349Line: 779 
     1350Stack unwinding: <<beginning of stack>> 
     135115:08:33: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     1352 
     1353----------------------------------- 
     1354Details: 
     1355----------------------------------- 
     1356Error #: 7 
     1357Function: GpuProgramParameters::getParamIndex 
     1358Description: Cannot find a parameter named Gain.  
     1359File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1360Line: 779 
     1361Stack unwinding: <<beginning of stack>> 
     136215:08:33: Parsing script hangar.material 
     136315:08:33: Parsing script kupola.material 
     136415:08:33: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     136515:08:33: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     136615:08:33: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     136715:08:33: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     136815:08:33: Parsing script MetalTeapot.material 
     136915:08:33: An exception has been thrown! 
     1370 
     1371----------------------------------- 
     1372Details: 
     1373----------------------------------- 
     1374Error #: 7 
     1375Function: GpuProgramParameters::getParamIndex 
     1376Description: Cannot find a parameter named refIndex.  
     1377File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1378Line: 779 
     1379Stack unwinding: <<beginning of stack>> 
     138015:08:33: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     1381 
     1382----------------------------------- 
     1383Details: 
     1384----------------------------------- 
     1385Error #: 7 
     1386Function: GpuProgramParameters::getParamIndex 
     1387Description: Cannot find a parameter named refIndex.  
     1388File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1389Line: 779 
     1390Stack unwinding: <<beginning of stack>> 
     139115:08:33: An exception has been thrown! 
     1392 
     1393----------------------------------- 
     1394Details: 
     1395----------------------------------- 
     1396Error #: 7 
     1397Function: GpuProgramParameters::getParamIndex 
     1398Description: Cannot find a parameter named refIndex.  
     1399File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1400Line: 779 
     1401Stack unwinding: <<beginning of stack>> 
     140215:08:33: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     1403 
     1404----------------------------------- 
     1405Details: 
     1406----------------------------------- 
     1407Error #: 7 
     1408Function: GpuProgramParameters::getParamIndex 
     1409Description: Cannot find a parameter named refIndex.  
     1410File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1411Line: 779 
     1412Stack unwinding: <<beginning of stack>> 
     141315:08:33: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
     141415:08:33: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 
     141515:08:33: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
     141615:08:33: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 
     141715:08:42: An exception has been thrown! 
     1418 
     1419----------------------------------- 
     1420Details: 
     1421----------------------------------- 
     1422Error #: 7 
     1423Function: GpuProgramParameters::getParamIndex 
     1424Description: Cannot find a parameter named F0.  
     1425File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1426Line: 779 
     1427Stack unwinding: <<beginning of stack>> 
     142815:08:42: Error in material MetalTeapotMultipleBounce at line 254 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     1429 
     1430----------------------------------- 
     1431Details: 
     1432----------------------------------- 
     1433Error #: 7 
     1434Function: GpuProgramParameters::getParamIndex 
     1435Description: Cannot find a parameter named F0.  
     1436File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1437Line: 779 
     1438Stack unwinding: <<beginning of stack>> 
     143915:08:42: An exception has been thrown! 
     1440 
     1441----------------------------------- 
     1442Details: 
     1443----------------------------------- 
     1444Error #: 7 
     1445Function: GpuProgramParameters::getParamIndex 
     1446Description: Cannot find a parameter named refIndex.  
     1447File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1448Line: 779 
     1449Stack unwinding: <<beginning of stack>> 
     145015:08:42: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     1451 
     1452----------------------------------- 
     1453Details: 
     1454----------------------------------- 
     1455Error #: 7 
     1456Function: GpuProgramParameters::getParamIndex 
     1457Description: Cannot find a parameter named refIndex.  
     1458File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     1459Line: 779 
     1460Stack unwinding: <<beginning of stack>> 
     146115:08:42: Parsing script Ogre.material 
     146215:08:42: Parsing script Particles.material 
     146315:08:42: An exception has been thrown! 
    12971464 
    12981465----------------------------------- 
     
    13051472Line: 779 
    13061473Stack unwinding: <<beginning of stack>> 
    1307 14:59:13: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     147415:08:42: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13081475 
    13091476----------------------------------- 
     
    13161483Line: 779 
    13171484Stack unwinding: <<beginning of stack>> 
    1318 14:59:13: An exception has been thrown! 
    1319  
    1320 ----------------------------------- 
    1321 Details: 
    1322 ----------------------------------- 
    1323 Error #: 7 
    1324 Function: GpuProgramParameters::getParamIndex 
    1325 Description: Cannot find a parameter named resolution.  
    1326 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1327 Line: 779 
    1328 Stack unwinding: <<beginning of stack>> 
    1329 14:59:13: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    1330  
    1331 ----------------------------------- 
    1332 Details: 
    1333 ----------------------------------- 
    1334 Error #: 7 
    1335 Function: GpuProgramParameters::getParamIndex 
    1336 Description: Cannot find a parameter named resolution.  
    1337 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1338 Line: 779 
    1339 Stack unwinding: <<beginning of stack>> 
    1340 14:59:13: An exception has been thrown! 
    1341  
    1342 ----------------------------------- 
    1343 Details: 
    1344 ----------------------------------- 
    1345 Error #: 7 
    1346 Function: GpuProgramParameters::getParamIndex 
    1347 Description: Cannot find a parameter named resolution.  
    1348 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1349 Line: 779 
    1350 Stack unwinding: <<beginning of stack>> 
    1351 14:59:13: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    1352  
    1353 ----------------------------------- 
    1354 Details: 
    1355 ----------------------------------- 
    1356 Error #: 7 
    1357 Function: GpuProgramParameters::getParamIndex 
    1358 Description: Cannot find a parameter named resolution.  
    1359 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1360 Line: 779 
    1361 Stack unwinding: <<beginning of stack>> 
    1362 14:59:13: Parsing script Glow.material 
    1363 14:59:13: An exception has been thrown! 
    1364  
    1365 ----------------------------------- 
    1366 Details: 
    1367 ----------------------------------- 
    1368 Error #: 7 
    1369 Function: GpuProgramParameters::getParamIndex 
    1370 Description: Cannot find a parameter named Gain.  
    1371 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1372 Line: 779 
    1373 Stack unwinding: <<beginning of stack>> 
    1374 14:59:13: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    1375  
    1376 ----------------------------------- 
    1377 Details: 
    1378 ----------------------------------- 
    1379 Error #: 7 
    1380 Function: GpuProgramParameters::getParamIndex 
    1381 Description: Cannot find a parameter named Gain.  
    1382 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1383 Line: 779 
    1384 Stack unwinding: <<beginning of stack>> 
    1385 14:59:13: Parsing script hangar.material 
    1386 14:59:13: Parsing script kupola.material 
    1387 14:59:13: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1388 14:59:13: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1389 14:59:13: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1390 14:59:13: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1391 14:59:13: Parsing script MetalTeapot.material 
    1392 14:59:13: An exception has been thrown! 
    1393  
    1394 ----------------------------------- 
    1395 Details: 
    1396 ----------------------------------- 
    1397 Error #: 7 
    1398 Function: GpuProgramParameters::getParamIndex 
    1399 Description: Cannot find a parameter named refIndex.  
    1400 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1401 Line: 779 
    1402 Stack unwinding: <<beginning of stack>> 
    1403 14:59:13: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    1404  
    1405 ----------------------------------- 
    1406 Details: 
    1407 ----------------------------------- 
    1408 Error #: 7 
    1409 Function: GpuProgramParameters::getParamIndex 
    1410 Description: Cannot find a parameter named refIndex.  
    1411 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1412 Line: 779 
    1413 Stack unwinding: <<beginning of stack>> 
    1414 14:59:13: An exception has been thrown! 
    1415  
    1416 ----------------------------------- 
    1417 Details: 
    1418 ----------------------------------- 
    1419 Error #: 7 
    1420 Function: GpuProgramParameters::getParamIndex 
    1421 Description: Cannot find a parameter named refIndex.  
    1422 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1423 Line: 779 
    1424 Stack unwinding: <<beginning of stack>> 
    1425 14:59:13: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    1426  
    1427 ----------------------------------- 
    1428 Details: 
    1429 ----------------------------------- 
    1430 Error #: 7 
    1431 Function: GpuProgramParameters::getParamIndex 
    1432 Description: Cannot find a parameter named refIndex.  
    1433 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1434 Line: 779 
    1435 Stack unwinding: <<beginning of stack>> 
    1436 14:59:40: An exception has been thrown! 
    1437  
    1438 ----------------------------------- 
    1439 Details: 
    1440 ----------------------------------- 
    1441 Error #: 7 
    1442 Function: GpuProgramParameters::getParamIndex 
    1443 Description: Cannot find a parameter named F0.  
    1444 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1445 Line: 779 
    1446 Stack unwinding: <<beginning of stack>> 
    1447 14:59:40: Error in material MetalTeapotMultipleBounce at line 196 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    1448  
    1449 ----------------------------------- 
    1450 Details: 
    1451 ----------------------------------- 
    1452 Error #: 7 
    1453 Function: GpuProgramParameters::getParamIndex 
    1454 Description: Cannot find a parameter named F0.  
    1455 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1456 Line: 779 
    1457 Stack unwinding: <<beginning of stack>> 
    1458 14:59:40: Parsing script Ogre.material 
    1459 14:59:40: Parsing script Particles.material 
    1460 14:59:40: An exception has been thrown! 
     148515:08:42: An exception has been thrown! 
    14611486 
    14621487----------------------------------- 
     
    14691494Line: 779 
    14701495Stack unwinding: <<beginning of stack>> 
    1471 14:59:40: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     149615:08:42: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14721497 
    14731498----------------------------------- 
     
    14801505Line: 779 
    14811506Stack unwinding: <<beginning of stack>> 
    1482 14:59:40: An exception has been thrown! 
    1483  
    1484 ----------------------------------- 
    1485 Details: 
    1486 ----------------------------------- 
    1487 Error #: 7 
    1488 Function: GpuProgramParameters::getParamIndex 
    1489 Description: Cannot find a parameter named worldViewProj.  
    1490 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1491 Line: 779 
    1492 Stack unwinding: <<beginning of stack>> 
    1493 14:59:40: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    1494  
    1495 ----------------------------------- 
    1496 Details: 
    1497 ----------------------------------- 
    1498 Error #: 7 
    1499 Function: GpuProgramParameters::getParamIndex 
    1500 Description: Cannot find a parameter named worldViewProj.  
    1501 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    1502 Line: 779 
    1503 Stack unwinding: <<beginning of stack>> 
    1504 14:59:40: Parsing script RaytraceDemo.material 
    1505 14:59:40: Parsing script stairs.material 
    1506 14:59:40: Parsing script terito.material 
    1507 14:59:40: Parsing script uvegfolyoso2.material 
    1508 14:59:40: An exception has been thrown! 
     150715:08:42: Parsing script RaytraceDemo.material 
     150815:08:42: Parsing script stairs.material 
     150915:08:42: Parsing script terito.material 
     151015:08:42: Parsing script uvegfolyoso2.material 
     151115:08:42: An exception has been thrown! 
    15091512 
    15101513----------------------------------- 
     
    15171520Line: 779 
    15181521Stack unwinding: <<beginning of stack>> 
    1519 14:59:40: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     152215:08:42: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15201523 
    15211524----------------------------------- 
     
    15281531Line: 779 
    15291532Stack unwinding: <<beginning of stack>> 
    1530 14:59:40: An exception has been thrown! 
     153315:08:42: An exception has been thrown! 
    15311534 
    15321535----------------------------------- 
     
    15391542Line: 779 
    15401543Stack unwinding: <<beginning of stack>> 
    1541 14:59:40: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     154415:08:42: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15421545 
    15431546----------------------------------- 
     
    15501553Line: 779 
    15511554Stack unwinding: <<beginning of stack>> 
    1552 14:59:40: An exception has been thrown! 
     155515:08:42: An exception has been thrown! 
    15531556 
    15541557----------------------------------- 
     
    15611564Line: 779 
    15621565Stack unwinding: <<beginning of stack>> 
    1563 14:59:40: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     156615:08:42: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15641567 
    15651568----------------------------------- 
     
    15721575Line: 779 
    15731576Stack unwinding: <<beginning of stack>> 
    1574 14:59:40: An exception has been thrown! 
     157715:08:42: An exception has been thrown! 
    15751578 
    15761579----------------------------------- 
     
    15831586Line: 779 
    15841587Stack unwinding: <<beginning of stack>> 
    1585 14:59:40: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     158815:08:42: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15861589 
    15871590----------------------------------- 
     
    15941597Line: 779 
    15951598Stack unwinding: <<beginning of stack>> 
    1596 14:59:40: An exception has been thrown! 
     159915:08:42: An exception has been thrown! 
    15971600 
    15981601----------------------------------- 
     
    16051608Line: 779 
    16061609Stack unwinding: <<beginning of stack>> 
    1607 14:59:40: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     161015:08:42: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16081611 
    16091612----------------------------------- 
     
    16161619Line: 779 
    16171620Stack unwinding: <<beginning of stack>> 
    1618 14:59:40: An exception has been thrown! 
     162115:08:42: An exception has been thrown! 
    16191622 
    16201623----------------------------------- 
     
    16271630Line: 779 
    16281631Stack unwinding: <<beginning of stack>> 
    1629 14:59:40: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     163215:08:42: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16301633 
    16311634----------------------------------- 
     
    16381641Line: 779 
    16391642Stack unwinding: <<beginning of stack>> 
    1640 14:59:40: An exception has been thrown! 
     164315:08:42: An exception has been thrown! 
    16411644 
    16421645----------------------------------- 
     
    16491652Line: 779 
    16501653Stack unwinding: <<beginning of stack>> 
    1651 14:59:40: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     165415:08:42: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16521655 
    16531656----------------------------------- 
     
    16601663Line: 779 
    16611664Stack unwinding: <<beginning of stack>> 
    1662 14:59:40: An exception has been thrown! 
     166515:08:42: An exception has been thrown! 
    16631666 
    16641667----------------------------------- 
     
    16711674Line: 779 
    16721675Stack unwinding: <<beginning of stack>> 
    1673 14:59:40: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     167615:08:42: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16741677 
    16751678----------------------------------- 
     
    16821685Line: 779 
    16831686Stack unwinding: <<beginning of stack>> 
    1684 14:59:40: An exception has been thrown! 
     168715:08:42: An exception has been thrown! 
    16851688 
    16861689----------------------------------- 
     
    16931696Line: 779 
    16941697Stack unwinding: <<beginning of stack>> 
    1695 14:59:40: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     169815:08:42: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16961699 
    16971700----------------------------------- 
     
    17041707Line: 779 
    17051708Stack unwinding: <<beginning of stack>> 
    1706 14:59:40: An exception has been thrown! 
     170915:08:42: An exception has been thrown! 
    17071710 
    17081711----------------------------------- 
     
    17151718Line: 779 
    17161719Stack unwinding: <<beginning of stack>> 
    1717 14:59:40: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     172015:08:42: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17181721 
    17191722----------------------------------- 
     
    17261729Line: 779 
    17271730Stack unwinding: <<beginning of stack>> 
    1728 14:59:40: An exception has been thrown! 
     173115:08:42: An exception has been thrown! 
    17291732 
    17301733----------------------------------- 
     
    17371740Line: 779 
    17381741Stack unwinding: <<beginning of stack>> 
    1739 14:59:40: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     174215:08:42: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17401743 
    17411744----------------------------------- 
     
    17481751Line: 779 
    17491752Stack unwinding: <<beginning of stack>> 
    1750 14:59:40: An exception has been thrown! 
     175315:08:42: An exception has been thrown! 
    17511754 
    17521755----------------------------------- 
     
    17591762Line: 779 
    17601763Stack unwinding: <<beginning of stack>> 
    1761 14:59:40: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     176415:08:42: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17621765 
    17631766----------------------------------- 
     
    17701773Line: 779 
    17711774Stack unwinding: <<beginning of stack>> 
    1772 14:59:40: An exception has been thrown! 
     177515:08:42: An exception has been thrown! 
    17731776 
    17741777----------------------------------- 
     
    17811784Line: 779 
    17821785Stack unwinding: <<beginning of stack>> 
    1783 14:59:40: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     178615:08:42: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17841787 
    17851788----------------------------------- 
     
    17921795Line: 779 
    17931796Stack unwinding: <<beginning of stack>> 
    1794 14:59:40: An exception has been thrown! 
     179715:08:42: An exception has been thrown! 
    17951798 
    17961799----------------------------------- 
     
    18031806Line: 779 
    18041807Stack unwinding: <<beginning of stack>> 
    1805 14:59:40: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     180815:08:42: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18061809 
    18071810----------------------------------- 
     
    18141817Line: 779 
    18151818Stack unwinding: <<beginning of stack>> 
    1816 14:59:40: An exception has been thrown! 
     181915:08:42: An exception has been thrown! 
    18171820 
    18181821----------------------------------- 
     
    18251828Line: 779 
    18261829Stack unwinding: <<beginning of stack>> 
    1827 14:59:40: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     183015:08:42: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18281831 
    18291832----------------------------------- 
     
    18361839Line: 779 
    18371840Stack unwinding: <<beginning of stack>> 
    1838 14:59:40: An exception has been thrown! 
     184115:08:42: An exception has been thrown! 
    18391842 
    18401843----------------------------------- 
     
    18471850Line: 779 
    18481851Stack unwinding: <<beginning of stack>> 
    1849 14:59:40: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     185215:08:42: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18501853 
    18511854----------------------------------- 
     
    18581861Line: 779 
    18591862Stack unwinding: <<beginning of stack>> 
    1860 14:59:40: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1861 14:59:40: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1862 14:59:40: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1863 14:59:40: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1864 14:59:40: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1865 14:59:40: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1866 14:59:40: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1867 14:59:40: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1868 14:59:40: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1869 14:59:40: Parsing script X3D.material 
    1870 14:59:40: Parsing script GameTools_Glow.compositor 
    1871 14:59:40: Parsing script GameTools_ToneMap.compositor 
    1872 14:59:40: Parsing script sample.fontdef 
    1873 14:59:40: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1874 14:59:40: Parsing script GameTools.particle 
    1875 14:59:40: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1876 14:59:40: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1877 14:59:40: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1878 14:59:40: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
    1879 14:59:40: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
    1880 14:59:40: Parsing script Compositor.overlay 
    1881 14:59:40: Parsing script DP3.overlay 
    1882 14:59:41: Parsing script Example-CubeMapping.overlay 
    1883 14:59:41: Parsing script Example-DynTex.overlay 
    1884 14:59:41: Parsing script Example-Water.overlay 
    1885 14:59:41: Parsing script FullScreen.overlay 
    1886 14:59:41: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1887 14:59:41: Parsing script Shadows.overlay 
    1888 14:59:41: Finished parsing scripts for resource group General 
    1889 14:59:41: Parsing scripts for resource group Internal 
    1890 14:59:41: Finished parsing scripts for resource group Internal 
    1891 14:59:41: Texture: stormy_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1892 14:59:41: Texture: stormy_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1893 14:59:41: Texture: stormy_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1894 14:59:41: Texture: stormy_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1895 14:59:41: Texture: stormy_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1896 14:59:41: Texture: stormy_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1897 14:59:41: TerrainSceneManager: Activated PageSource Heightmap 
    1898 14:59:41: Texture: terrain_texture.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1899 14:59:41: Texture: terrain_detail.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1900 14:59:41: Creating viewport on target 'rtt/3221440', rendering from camera 'psys1_HPP_IMPOSTOR_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1901 14:59:41: Viewport for camera 'psys1_HPP_IMPOSTOR_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1902 14:59:41: 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. 
    1903 14:59:41: Creating viewport on target 'rtt/3221504', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1904 14:59:41: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    1905 14:59:41: Creating viewport on target 'rtt/3221568', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1906 14:59:41: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1907 14:59:41: Creating viewport on target 'rtt/3221632', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1908 14:59:41: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1909 14:59:41: 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. 
    1910 14:59:41: Win32Input8: DirectInput Activation Starts 
    1911 14:59:41: Win32Input8: Establishing keyboard input. 
    1912 14:59:41: Win32Input8: Keyboard input established. 
    1913 14:59:41: Win32Input8: Initializing mouse input in immediate mode. 
    1914 14:59:41: Win32Input8: Mouse input in immediate mode initialized. 
    1915 14:59:41: Win32Input8: DirectInput OK. 
    1916 14:59:41: Texture: smoke2.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1917 14:59:48: Unregistering ResourceManager for type BspLevel 
    1918 14:59:48: Render Target 'rtt/3221632' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1919 14:59:48: Render Target 'rtt/3221568' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1920 14:59:48: Render Target 'rtt/3221504' Average FPS: 34.4004 Best FPS: 36.5252 Worst FPS: 0.712251 
    1921 14:59:48: Render Target 'rtt/3221440' Average FPS: 34.3884 Best FPS: 36.5252 Worst FPS: 0.719942 
    1922 14:59:48: *-*-* OGRE Shutdown 
    1923 14:59:48: Unregistering ResourceManager for type Compositor 
    1924 14:59:48: Unregistering ResourceManager for type Font 
    1925 14:59:48: Unregistering ResourceManager for type Skeleton 
    1926 14:59:48: Unregistering ResourceManager for type Mesh 
    1927 14:59:48: Unregistering ResourceManager for type HighLevelGpuProgram 
    1928 14:59:48: Unloading library .\Plugin_CgProgramManager 
    1929 14:59:48: Unloading library .\Plugin_OctreeSceneManager 
    1930 14:59:48: Unloading library .\Plugin_BSPSceneManager 
    1931 14:59:48: Unloading library .\Plugin_ParticleFX 
    1932 14:59:48: Render Target 'OGRE Render Window' Average FPS: 40.2786 Best FPS: 159.046 Worst FPS: 32.3529 
    1933 14:59:48: D3D9 : Shutting down cleanly. 
    1934 14:59:48: Unregistering ResourceManager for type Texture 
    1935 14:59:48: Unregistering ResourceManager for type GpuProgram 
    1936 14:59:48: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    1937 14:59:48: Unloading library .\RenderSystem_Direct3D9 
    1938 14:59:48: Unregistering ResourceManager for type Material 
    1939 14:59:48: Unloading library OgrePlatform_d.dll 
     186315:08:42: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     186415:08:42: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     186515:08:42: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     186615:08:42: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     186715:08:42: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     186815:08:42: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     186915:08:42: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     187015:08:42: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     187115:08:42: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     187215:08:42: Parsing script X3D.material 
     187315:08:42: Parsing script GameTools_Glow.compositor 
     187415:08:42: Parsing script GameTools_ToneMap.compositor 
     187515:08:42: Parsing script sample.fontdef 
     187615:08:42: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     187715:08:42: Parsing script GameTools.particle 
     187815:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     187915:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     188015:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     188115:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
     188215:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
     188315:08:42: Parsing script Compositor.overlay 
     188415:08:42: Parsing script DP3.overlay 
     188515:08:42: Parsing script Example-CubeMapping.overlay 
     188615:08:42: Parsing script Example-DynTex.overlay 
     188715:08:42: Parsing script Example-Water.overlay 
     188815:08:42: Parsing script FullScreen.overlay 
     188915:08:42: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     189015:08:42: Parsing script Shadows.overlay 
     189115:08:42: Finished parsing scripts for resource group General 
     189215:08:42: Parsing scripts for resource group Internal 
     189315:08:42: Finished parsing scripts for resource group Internal 
     189415:08:42: Mesh: Loading teapot.mesh. 
     189515:08:42: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 
     189615:08:42: Mesh: Loading difflab.mesh. 
     189715:08:42: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     189815:08:42: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     189915:08:42: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
     190015:08:42: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     190115:08:42: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     190215:08:42: Creating viewport on target 'rtt/48080064', 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 
     190315:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190415:08:42: Creating viewport on target 'rtt/48080160', 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 
     190515:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190615:08:42: Creating viewport on target 'rtt/48080224', 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 
     190715:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190815:08:42: Creating viewport on target 'rtt/48080320', 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 
     190915:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191015:08:42: Creating viewport on target 'rtt/48080384', 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 
     191115:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191215:08:42: Creating viewport on target 'rtt/48080480', 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 
     191315:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191415:08:42: 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. 
     191515:08:42: Creating viewport on target 'rtt/48080896', 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 
     191615:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191715:08:42: Creating viewport on target 'rtt/48080992', 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 
     191815:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191915:08:42: Creating viewport on target 'rtt/48081056', 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 
     192015:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192115:08:42: Creating viewport on target 'rtt/48082208', 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 
     192215:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192315:08:42: Creating viewport on target 'rtt/48082272', 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 
     192415:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192515:08:42: Creating viewport on target 'rtt/48082368', 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 
     192615:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192715:08:42: 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. 
     192815:08:42: Creating viewport on target 'rtt/48082912', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     192915:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193015:08:42: Creating viewport on target 'rtt/48083680', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193115:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193215:08:42: Creating viewport on target 'rtt/48083776', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193315:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193415:08:42: Creating viewport on target 'rtt/48083840', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193515:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193615:08:42: Creating viewport on target 'rtt/48083936', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193715:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193815:08:42: Creating viewport on target 'rtt/48084000', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193915:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194015:08:42: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     194115:08:42: Creating viewport on target 'rtt/48085376', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     194215:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194315:08:42: Creating viewport on target 'rtt/48085440', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     194415:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194515:08:42: Creating viewport on target 'rtt/48085536', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     194615:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194715:08:42: Creating viewport on target 'rtt/48085600', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     194815:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194915:08:42: Creating viewport on target 'rtt/48085696', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     195015:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     195115:08:42: Creating viewport on target 'rtt/48085760', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     195215:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     195315:08:42: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     195415:08:42: Win32Input8: DirectInput Activation Starts 
     195515:08:42: Win32Input8: Establishing keyboard input. 
     195615:08:42: Win32Input8: Keyboard input established. 
     195715:08:42: Win32Input8: Initializing mouse input in immediate mode. 
     195815:08:42: Win32Input8: Mouse input in immediate mode initialized. 
     195915:08:42: Win32Input8: DirectInput OK. 
     196015:08:42: Creating viewport on target 'rtt/48152352', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196115:08:42: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     196215:08:42: Creating viewport on target 'rtt/48153088', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196315:08:42: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     196415:08:42: Creating viewport on target 'rtt/48153632', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196515:08:42: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     196615:08:42: Creating viewport on target 'rtt/48154208', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196715:08:42: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     196815:08:42: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     196915:08:42: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAPblurred' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     197015:10:55: Unregistering ResourceManager for type BspLevel 
     197115:10:55: Render Target 'rtt/48154208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     197215:10:55: Render Target 'rtt/48153632' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     197315:10:55: Render Target 'rtt/48153088' Average FPS: 8.84982 Best FPS: 12.7576 Worst FPS: 0.0801154 
     197415:10:55: Render Target 'rtt/48152352' Average FPS: 8.84833 Best FPS: 12.7576 Worst FPS: 0.0801218 
     197515:10:55: Render Target 'rtt/48085376' Average FPS: 0.079936 Best FPS: 0.079936 Worst FPS: 0.079936 
     197615:10:55: Render Target 'rtt/48085440' Average FPS: 0.0799297 Best FPS: 0.0799297 Worst FPS: 0.0799297 
     197715:10:55: Render Target 'rtt/48085536' Average FPS: 0.0799233 Best FPS: 0.0799233 Worst FPS: 0.0799233 
     197815:10:55: Render Target 'rtt/48085600' Average FPS: 0.0799169 Best FPS: 0.0799169 Worst FPS: 0.0799169 
     197915:10:55: Render Target 'rtt/48085696' Average FPS: 0.0799105 Best FPS: 0.0799105 Worst FPS: 0.0799105 
     198015:10:55: Render Target 'rtt/48085760' Average FPS: 0.0799105 Best FPS: 0.0799105 Worst FPS: 0.0799105 
     198115:10:55: Render Target 'rtt/48082912' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198215:10:55: Render Target 'rtt/48083680' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198315:10:55: Render Target 'rtt/48083776' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198415:10:55: Render Target 'rtt/48083840' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198515:10:55: Render Target 'rtt/48083936' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198615:10:55: Render Target 'rtt/48084000' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198715:10:55: Render Target 'rtt/48080896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198815:10:55: Render Target 'rtt/48080992' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198915:10:55: Render Target 'rtt/48081056' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199015:10:55: Render Target 'rtt/48082208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199115:10:55: Render Target 'rtt/48082272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199215:10:55: Render Target 'rtt/48082368' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199315:10:55: Render Target 'rtt/48080064' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199415:10:55: Render Target 'rtt/48080160' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199515:10:55: Render Target 'rtt/48080224' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199615:10:55: Render Target 'rtt/48080320' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199715:10:55: Render Target 'rtt/48080384' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199815:10:55: Render Target 'rtt/48080480' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199915:10:55: *-*-* OGRE Shutdown 
     200015:10:55: Unregistering ResourceManager for type Compositor 
     200115:10:55: Unregistering ResourceManager for type Font 
     200215:10:55: Unregistering ResourceManager for type Skeleton 
     200315:10:55: Unregistering ResourceManager for type Mesh 
     200415:10:55: Unregistering ResourceManager for type HighLevelGpuProgram 
     200515:10:55: Unloading library .\Plugin_CgProgramManager 
     200615:10:55: Unloading library .\Plugin_OctreeSceneManager 
     200715:10:55: Unloading library .\Plugin_BSPSceneManager 
     200815:10:55: Unloading library .\Plugin_ParticleFX 
     200915:10:55: Render Target 'OGRE Render Window' Average FPS: 8.84901 Best FPS: 12.5604 Worst FPS: 0.0400994 
     201015:10:55: D3D9 : Shutting down cleanly. 
     201115:10:55: Unregistering ResourceManager for type Texture 
     201215:10:55: Unregistering ResourceManager for type GpuProgram 
     201315:10:55: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     201415:10:55: Unloading library .\RenderSystem_Direct3D9 
     201515:10:55: Unregistering ResourceManager for type Material 
     201615:10:55: Unloading library OgrePlatform_d.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log

    r1879 r1885  
    11 ----------------------------------------------------------------------------------------------------------------------------------  
    2 |                                          Memory leak report for:  12/11/2006 14:59:48                                            | 
     2|                                          Memory leak report for:  12/13/2006 15:10:55                                            | 
    33 ----------------------------------------------------------------------------------------------------------------------------------  
    44 
    55 
    6 402 memory leaks found: 
     6517 memory leaks found: 
    77 
    88Alloc.   Addr       Size       Addr       Size                        BreakOn BreakOn               
    99Number Reported   Reported    Actual     Actual     Unused    Method  Dealloc Realloc Allocated by  
    1010------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------  
    11 026057 0x0211DF20 0x0000000C 0x0211DF10 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    12 026100 0x0213D700 0x00000034 0x0213D6F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    13 026101 0x0213D780 0x00000034 0x0213D770 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    14 026102 0x0213D800 0x00000034 0x0213D7F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    15 026103 0x0213D880 0x00000034 0x0213D870 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    16 026104 0x0213D900 0x0000000C 0x0213D8F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    17 026105 0x0213D958 0x000000A0 0x0213D948 0x000000C0 0x00000000 new         N       N    ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 
    18 026106 0x0213DA48 0x00000034 0x0213DA38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    19 026107 0x0213DAC8 0x00000034 0x0213DAB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    20 026108 0x0213DB48 0x00000034 0x0213DB38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    21 026109 0x0213DBC8 0x00000034 0x0213DBB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    22 026110 0x0213DC48 0x00000034 0x0213DC38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    23 026111 0x0213DCC8 0x00000034 0x0213DCB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    24 026112 0x0213DD48 0x00000034 0x0213DD38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    25 026113 0x0213DDC8 0x00000034 0x0213DDB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    26 026119 0x0213DE48 0x0000000C 0x0213DE38 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    27 026114 0x02145AF0 0x00000034 0x02145AE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    28 026115 0x02145B70 0x00000034 0x02145B60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    29 026116 0x02145BF0 0x00000034 0x02145BE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    30 026117 0x02145C70 0x00000034 0x02145C60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    31 026118 0x02145CF0 0x00000034 0x02145CE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    32 026120 0x02145D70 0x000000A4 0x02145D60 0x000000C4 0x00000000 new         N       N    ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 
    33 026121 0x02145E60 0x00000034 0x02145E50 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    34 026122 0x02145EE0 0x00000034 0x02145ED0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    35 026123 0x02145F60 0x00000034 0x02145F50 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    36 026124 0x02145FE0 0x00000034 0x02145FD0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    37 026125 0x02146060 0x00000034 0x02146050 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    38 026126 0x021460E0 0x00000034 0x021460D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    39 026127 0x02146160 0x00000034 0x02146150 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    40 026128 0x021461E0 0x00000034 0x021461D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    41 026129 0x02146260 0x00000034 0x02146250 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    42 026130 0x021462E0 0x00000034 0x021462D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    43 026131 0x02146360 0x00000034 0x02146350 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    44 026132 0x021463E0 0x00000034 0x021463D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    45 026133 0x02146460 0x00000034 0x02146450 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    46 026134 0x021464E0 0x00000034 0x021464D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    47 026135 0x02146560 0x0000000C 0x02146550 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    48 026086 0x021466A8 0x00000018 0x02146698 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    49 026087 0x02146710 0x00000018 0x02146700 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    50 026088 0x02146778 0x00000018 0x02146768 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    51 026089 0x021467E0 0x00000018 0x021467D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    52 026091 0x02146848 0x00000034 0x02146838 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    53 026064 0x02146AC0 0x00000018 0x02146AB0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    54 026066 0x02146B28 0x00000018 0x02146B18 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    55 026065 0x02158F60 0x00000008 0x02158F50 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
    56 026058 0x0215AF20 0x00000018 0x0215AF10 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    57 026083 0x021903C0 0x00000018 0x021903B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    58 026084 0x02190428 0x00000018 0x02190418 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    59 026085 0x02190490 0x00000018 0x02190480 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    60 026063 0x02190A90 0x00000034 0x02190A80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    61 026060 0x02190BA0 0x00000018 0x02190B90 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    62 007404 0x02195CE0 0x00000050 0x02195CD0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    63 007522 0x02196600 0x0000003C 0x021965F0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    64 007398 0x021966A0 0x0000003C 0x02196690 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    65 007399 0x02196728 0x00000050 0x02196718 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    66 007408 0x02196978 0x00000050 0x02196968 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    67 007412 0x02196AB8 0x00000050 0x02196AA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    68 007416 0x02196C08 0x00000050 0x02196BF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    69 007420 0x02196CA8 0x00000050 0x02196C98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    70 007523 0x02196D48 0x00000050 0x02196D38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    71 007528 0x0219F8F0 0x00000050 0x0219F8E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    72 007536 0x0219F990 0x00000050 0x0219F980 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    73 007532 0x0219FA40 0x00000050 0x0219FA30 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    74 007540 0x0219FB40 0x00000050 0x0219FB30 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    75 007544 0x0219FCA0 0x00000050 0x0219FC90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    76 007737 0x021A8570 0x00000050 0x021A8560 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    77 007731 0x021A86A0 0x0000003C 0x021A8690 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    78 007732 0x021AAC08 0x00000050 0x021AABF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    79 007749 0x021AACF8 0x00000050 0x021AACE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    80 007741 0x021AAE58 0x00000050 0x021AAE48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    81 007745 0x021AAF58 0x00000050 0x021AAF48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    82 007753 0x021AB0A8 0x00000050 0x021AB098 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    83 008068 0x021AE2F0 0x00000050 0x021AE2E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    84 008062 0x021AE420 0x0000003C 0x021AE410 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    85 026075 0x021B0158 0x00000018 0x021B0148 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    86 026076 0x021B01C0 0x00000018 0x021B01B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    87 026067 0x021B02D8 0x00000018 0x021B02C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    88 026068 0x021B0340 0x00000018 0x021B0330 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    89 026071 0x021B14C0 0x00000018 0x021B14B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    90 026072 0x021B1528 0x00000018 0x021B1518 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    91 026090 0x021B16A8 0x000000A0 0x021B1698 0x000000C0 0x00000000 new         N       N    ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 
    92 026092 0x021B1798 0x00000034 0x021B1788 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    93 026093 0x021B1818 0x00000034 0x021B1808 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    94 026094 0x021B1898 0x00000034 0x021B1888 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    95 026095 0x021B1918 0x00000034 0x021B1908 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    96 026096 0x021B1998 0x00000034 0x021B1988 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    97 026097 0x021B1A18 0x00000034 0x021B1A08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    98 026098 0x021B1A98 0x00000034 0x021B1A88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    99 026099 0x021B1B18 0x00000034 0x021B1B08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    100 026136 0x021B22B0 0x0000009C 0x021B22A0 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 
    101 026137 0x021B2398 0x00000034 0x021B2388 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    102 026138 0x021B2418 0x00000034 0x021B2408 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    103 026139 0x021B2498 0x00000034 0x021B2488 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    104 026140 0x021B2518 0x00000034 0x021B2508 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    105 026141 0x021B2598 0x00000034 0x021B2588 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    106 026142 0x021B2618 0x00000034 0x021B2608 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    107 026143 0x021B26E8 0x00000034 0x021B26D8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    108 026144 0x021B27B8 0x00000034 0x021B27A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    109 026145 0x021B2888 0x00000034 0x021B2878 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    110 026146 0x021B2958 0x00000034 0x021B2948 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    111 026147 0x021B29D8 0x00000034 0x021B29C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    112 026148 0x021B2A58 0x00000034 0x021B2A48 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    113 026149 0x021B2AD8 0x00000034 0x021B2AC8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    114 026150 0x021B2BA8 0x0000000C 0x021B2B98 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    115 026151 0x021B2C00 0x00000084 0x021B2BF0 0x000000A4 0x00000000 new         N       N    ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 
    116 026152 0x021B2CD0 0x00000034 0x021B2CC0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    117 026153 0x021B2D50 0x00000034 0x021B2D40 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    118 026154 0x021B2E20 0x00000034 0x021B2E10 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    119 026155 0x021B2EF0 0x00000034 0x021B2EE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    120 008063 0x021B39A0 0x00000050 0x021B3990 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    121 008080 0x021B3A90 0x00000050 0x021B3A80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    122 008072 0x021B3BF0 0x00000050 0x021B3BE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    123 008076 0x021B3CF0 0x00000050 0x021B3CE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    124 008084 0x021B3F90 0x00000050 0x021B3F80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    125 009317 0x021CE008 0x0000003C 0x021CDFF8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    126 009318 0x021CF488 0x00000050 0x021CF478 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    127 009323 0x021CF528 0x00000050 0x021CF518 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    128 009327 0x021CF5C8 0x00000050 0x021CF5B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    129 009337 0x021CF668 0x00000050 0x021CF658 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    130 009331 0x021CF708 0x0000003C 0x021CF6F8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    131 009332 0x02F09028 0x00000050 0x02F09018 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    132 009345 0x02F090C8 0x00000050 0x02F090B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    133 009341 0x02F09228 0x00000050 0x02F09218 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    134 009349 0x02F092C8 0x00000050 0x02F092B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    135 009353 0x02F09368 0x00000050 0x02F09358 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    136 009357 0x02F09408 0x00000050 0x02F093F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    137 009598 0x02F097B0 0x00000050 0x02F097A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    138 009606 0x02F09850 0x00000050 0x02F09840 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    139 009610 0x02F098F0 0x00000050 0x02F098E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    140 009614 0x02F09990 0x00000050 0x02F09980 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    141 010665 0x02F0B820 0x0000003C 0x02F0B810 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    142 010666 0x02F0B8A8 0x00000050 0x02F0B898 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    143 010671 0x02F0B998 0x00000050 0x02F0B988 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    144 010675 0x02F0BA38 0x00000050 0x02F0BA28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    145 010679 0x02F0BAD8 0x00000050 0x02F0BAC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    146 010683 0x02F0BB78 0x0000003C 0x02F0BB68 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    147 010684 0x02F0BC00 0x00000050 0x02F0BBF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    148 010689 0x02F0BCF8 0x00000050 0x02F0BCE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    149 010693 0x02F0BD98 0x00000050 0x02F0BD88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    150 010697 0x02F0BE38 0x00000050 0x02F0BE28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    151 009562 0x02F158E0 0x0000003C 0x02F158D0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    152 009563 0x02F15C50 0x00000050 0x02F15C40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    153 009568 0x02F16990 0x00000050 0x02F16980 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    154 009572 0x02F16A30 0x00000050 0x02F16A20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    155 009576 0x02F16AD0 0x00000050 0x02F16AC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    156 009580 0x02F16B70 0x00000050 0x02F16B60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    157 009584 0x02F16C10 0x00000050 0x02F16C00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    158 009594 0x02F16CB0 0x00000050 0x02F16CA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    159 009588 0x02F16D50 0x0000003C 0x02F16D40 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    160 009589 0x02F16DD8 0x00000050 0x02F16DC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    161 009602 0x02F16ED0 0x00000050 0x02F16EC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    162 009785 0x02F1BFB8 0x00000050 0x02F1BFA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    163 009790 0x02F1C058 0x00000050 0x02F1C048 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    164 009794 0x02F1C0F8 0x00000050 0x02F1C0E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    165 009798 0x02F1C198 0x00000050 0x02F1C188 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    166 009802 0x02F1C238 0x00000050 0x02F1C228 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    167 009806 0x02F1C2D8 0x00000050 0x02F1C2C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    168 009810 0x02F1C408 0x0000003C 0x02F1C3F8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    169 009811 0x02F1C490 0x00000050 0x02F1C480 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    170 009824 0x02F1C588 0x00000050 0x02F1C578 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    171 009820 0x02F1C6E8 0x00000050 0x02F1C6D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    172 009828 0x02F1C788 0x00000050 0x02F1C778 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    173 009832 0x02F1C828 0x00000050 0x02F1C818 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    174 009836 0x02F1C8C8 0x00000050 0x02F1C8B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    175 009816 0x02F205F8 0x00000050 0x02F205E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    176 009784 0x02F208C0 0x0000003C 0x02F208B0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    177 009980 0x02F25BE0 0x00000050 0x02F25BD0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    178 010005 0x02F25C80 0x0000003C 0x02F25C70 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    179 010006 0x02F25D08 0x00000050 0x02F25CF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    180 010019 0x02F25E00 0x00000050 0x02F25DF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    181 010023 0x02F25FA0 0x00000050 0x02F25F90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    182 010027 0x02F26040 0x00000050 0x02F26030 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    183 010031 0x02F260E0 0x00000050 0x02F260D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    184 009979 0x02F2A4A8 0x0000003C 0x02F2A498 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    185 010015 0x02F2AA98 0x00000050 0x02F2AA88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    186 009985 0x02F32C48 0x00000050 0x02F32C38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    187 009989 0x02F32CE8 0x00000050 0x02F32CD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    188 009993 0x02F32D88 0x00000050 0x02F32D78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    189 009997 0x02F32E28 0x00000050 0x02F32E18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    190 010001 0x02F32EC8 0x00000050 0x02F32EB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    191 010011 0x02F32F68 0x00000050 0x02F32F58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    192 010138 0x02F335D0 0x0000003C 0x02F335C0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    193 010144 0x02F336C0 0x00000050 0x02F336B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    194 010139 0x02F33F10 0x00000050 0x02F33F00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    195 010156 0x02F33FB0 0x0000003C 0x02F33FA0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    196 010162 0x02F37C08 0x00000050 0x02F37BF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    197 010148 0x02F37CD0 0x00000050 0x02F37CC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    198 010152 0x02F37D70 0x00000050 0x02F37D60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    199 010157 0x02F37E10 0x00000050 0x02F37E00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    200 010166 0x02F37FD0 0x00000050 0x02F37FC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    201 010170 0x02F38070 0x00000050 0x02F38060 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    202 010319 0x02F3D068 0x0000003C 0x02F3D058 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    203 010320 0x02F3D0F0 0x00000050 0x02F3D0E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    204 010325 0x02F3D1E0 0x00000050 0x02F3D1D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    205 010329 0x02F3D280 0x00000050 0x02F3D270 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    206 010333 0x02F3D320 0x00000050 0x02F3D310 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    207 010337 0x02F3D3C0 0x0000003C 0x02F3D3B0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    208 010338 0x02F3D448 0x00000050 0x02F3D438 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    209 010343 0x02F3D540 0x00000050 0x02F3D530 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    210 010347 0x02F3D5E0 0x00000050 0x02F3D5D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    211 010351 0x02F3D680 0x00000050 0x02F3D670 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    212 010493 0x02F416A0 0x00000050 0x02F41690 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    213 010492 0x02F41F78 0x0000003C 0x02F41F68 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    214 010498 0x02F428B0 0x00000050 0x02F428A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    215 010502 0x02F42950 0x00000050 0x02F42940 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    216 010506 0x02F429F0 0x00000050 0x02F429E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    217 010510 0x02F42A90 0x0000003C 0x02F42A80 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    218 010511 0x02F42C20 0x00000050 0x02F42C10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    219 010516 0x02F42CC0 0x00000050 0x02F42CB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    220 010520 0x02F42D60 0x00000050 0x02F42D50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    221 010524 0x02F42E00 0x00000050 0x02F42DF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    222 011188 0x02F4F3A0 0x00000050 0x02F4F390 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    223 011182 0x02F4FA68 0x0000003C 0x02F4FA58 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    224 011183 0x02F4FAF0 0x00000050 0x02F4FAE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    225 012206 0x02F6DE88 0x0000003C 0x02F6DE78 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    226 012207 0x02F6DF10 0x00000050 0x02F6DF00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    227 012212 0x02F6E090 0x00000050 0x02F6E080 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    228 012216 0x02F6E130 0x00000050 0x02F6E120 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    229 012220 0x02F6E1D0 0x00000050 0x02F6E1C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    230 012385 0x02F6F038 0x0000003C 0x02F6F028 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    231 012386 0x02F6F6B0 0x00000050 0x02F6F6A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    232 012391 0x02F6F7E0 0x00000050 0x02F6F7D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    233 012395 0x02F6F880 0x00000050 0x02F6F870 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    234 012399 0x02F6F920 0x00000050 0x02F6F910 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    235 028838 0x02F70538 0x00000004 0x02F70528 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    236 012403 0x02F79CC8 0x00000050 0x02F79CB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    237 012407 0x02F79D68 0x0000003C 0x02F79D58 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    238 012408 0x02F79DF0 0x00000050 0x02F79DE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    239 012413 0x02F79EE8 0x00000050 0x02F79ED8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    240 012637 0x02F79F88 0x0000003C 0x02F79F78 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    241 012638 0x02F7A010 0x00000050 0x02F7A000 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    242 012643 0x02F7A108 0x00000050 0x02F7A0F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    243 012647 0x02F7A1A8 0x0000003C 0x02F7A198 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    244 012648 0x02F7A230 0x00000050 0x02F7A220 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    245 012653 0x02F7A328 0x00000050 0x02F7A318 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    246 012657 0x02F7A3C8 0x00000050 0x02F7A3B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    247 012615 0x02F80F78 0x0000003C 0x02F80F68 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    248 012616 0x02F81C38 0x00000050 0x02F81C28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    249 012621 0x02F81D68 0x00000050 0x02F81D58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    250 012625 0x02F81E08 0x00000050 0x02F81DF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    251 012629 0x02F81EA8 0x00000050 0x02F81E98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    252 012633 0x02F81F48 0x00000050 0x02F81F38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    253 013470 0x02F89FA8 0x00000050 0x02F89F98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    254 013474 0x02F8A048 0x0000003C 0x02F8A038 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    255 013475 0x02F8A0D0 0x00000050 0x02F8A0C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    256 013480 0x02F8A170 0x00000050 0x02F8A160 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    257 013484 0x02F8A210 0x00000050 0x02F8A200 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    258 013488 0x02F8A3B0 0x00000050 0x02F8A3A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    259 013492 0x02F8A4A0 0x00000050 0x02F8A490 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    260 013496 0x02F8A590 0x00000050 0x02F8A580 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    261 013500 0x02F8A630 0x00000050 0x02F8A620 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    262 013438 0x02F8BA50 0x0000003C 0x02F8BA40 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    263 013439 0x02F8D020 0x00000050 0x02F8D010 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    264 013444 0x02F8D0C0 0x00000050 0x02F8D0B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    265 013448 0x02F8D160 0x00000050 0x02F8D150 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    266 013452 0x02F8D200 0x00000050 0x02F8D1F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    267 013456 0x02F8D2A0 0x0000003C 0x02F8D290 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    268 013457 0x02F8D328 0x00000050 0x02F8D318 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    269 013462 0x02F8D420 0x00000050 0x02F8D410 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    270 013466 0x02F8D4C0 0x00000050 0x02F8D4B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    271 014499 0x02FC2F48 0x0000003C 0x02FC2F38 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    272 014500 0x02FC4748 0x00000050 0x02FC4738 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    273 014505 0x02FC47E8 0x00000050 0x02FC47D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    274 014509 0x02FC4978 0x00000050 0x02FC4968 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    275 014513 0x02FC4B08 0x00000050 0x02FC4AF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    276 014517 0x02FC4C08 0x00000050 0x02FC4BF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    277 014521 0x02FC4CA8 0x00000050 0x02FC4C98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    278 015073 0x02FD22F0 0x0000003C 0x02FD22E0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    279 015074 0x02FD2378 0x00000050 0x02FD2368 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    280 015079 0x02FD2468 0x00000050 0x02FD2458 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    281 015083 0x02FD2508 0x00000050 0x02FD24F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    282 015087 0x02FD25A8 0x00000050 0x02FD2598 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    283 015091 0x02FD2648 0x0000003C 0x02FD2638 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    284 015092 0x02FD26D0 0x00000050 0x02FD26C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    285 015097 0x02FD27C8 0x00000050 0x02FD27B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    286 015101 0x02FD2868 0x00000050 0x02FD2858 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    287 015105 0x02FD2908 0x00000050 0x02FD28F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    288 015492 0x02FD4BE0 0x0000003C 0x02FD4BD0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    289 015493 0x02FD4C68 0x00000050 0x02FD4C58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    290 015498 0x02FDB008 0x00000050 0x02FDAFF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    291 015502 0x02FDB0A8 0x00000050 0x02FDB098 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    292 015506 0x02FDB148 0x00000050 0x02FDB138 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    293 015510 0x02FDB1E8 0x00000050 0x02FDB1D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    294 015514 0x02FDB288 0x00000050 0x02FDB278 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    295 015518 0x02FDB328 0x0000003C 0x02FDB318 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    296 015524 0x02FDB3B0 0x00000050 0x02FDB3A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    297 015519 0x02FDB4B8 0x00000050 0x02FDB4A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    298 015528 0x02FDB558 0x00000050 0x02FDB548 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    299 015532 0x02FDB5F8 0x00000050 0x02FDB5E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    300 015536 0x02FDB698 0x00000050 0x02FDB688 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    301 015540 0x02FDB738 0x00000050 0x02FDB728 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    302 015544 0x02FDB7D8 0x0000003C 0x02FDB7C8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    303 015550 0x02FDB860 0x00000050 0x02FDB850 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    304 015545 0x02FDB968 0x00000050 0x02FDB958 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    305 015554 0x02FDBA08 0x00000050 0x02FDB9F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    306 015558 0x02FDBAA8 0x00000050 0x02FDBA98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    307 015562 0x02FDBB48 0x00000050 0x02FDBB38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    308 015566 0x02FDBBE8 0x00000050 0x02FDBBD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    309 015570 0x02FDBC88 0x00000050 0x02FDBC78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    310 015574 0x02FDBD28 0x00000050 0x02FDBD18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    311 015578 0x02FDBDC8 0x00000050 0x02FDBDB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    312 015582 0x02FDBE68 0x00000050 0x02FDBE58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    313 015586 0x02FDBF08 0x00000050 0x02FDBEF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    314 015590 0x02FDBFA8 0x0000003C 0x02FDBF98 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    315 015596 0x02FDC030 0x00000050 0x02FDC020 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    316 015591 0x02FDC138 0x00000050 0x02FDC128 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    317 015600 0x02FDC1D8 0x00000050 0x02FDC1C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    318 015604 0x02FDC278 0x00000050 0x02FDC268 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    319 015608 0x02FDC318 0x00000050 0x02FDC308 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    320 015612 0x02FDC3B8 0x00000050 0x02FDC3A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    321 015616 0x02FDC458 0x00000050 0x02FDC448 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    322 015620 0x02FDC4F8 0x00000050 0x02FDC4E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    323 015624 0x02FDC598 0x00000050 0x02FDC588 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    324 015628 0x02FDC638 0x00000050 0x02FDC628 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    325 015632 0x02FDC6D8 0x00000050 0x02FDC6C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    326 016427 0x02FF6448 0x0000003C 0x02FF6438 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    327 016428 0x02FF64D0 0x00000050 0x02FF64C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    328 016433 0x02FF6610 0x00000050 0x02FF6600 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    329 016437 0x02FF6700 0x00000050 0x02FF66F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    330 026073 0x02FF6A08 0x00000018 0x02FF69F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    331 026074 0x02FF6A70 0x00000018 0x02FF6A60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    332 026156 0x03022880 0x0000000C 0x03022870 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    333 026157 0x030228D8 0x000000E8 0x030228C8 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 
    334 026158 0x03022A10 0x00000034 0x03022A00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    335 026159 0x03022A90 0x00000034 0x03022A80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    336 026160 0x03022B60 0x00000034 0x03022B50 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    337 026161 0x03022C30 0x00000034 0x03022C20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    338 026162 0x03022D00 0x00000034 0x03022CF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    339 026163 0x03022DD0 0x00000034 0x03022DC0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    340 026164 0x03022E50 0x00000034 0x03022E40 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    341 026165 0x03022F20 0x0000000C 0x03022F10 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    342 026166 0x03022F78 0x00000044 0x03022F68 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 
    343 026167 0x03023008 0x00000034 0x03022FF8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    344 026168 0x03023088 0x00000034 0x03023078 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    345 026169 0x03023108 0x0000000C 0x030230F8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    346 026170 0x03023160 0x00000044 0x03023150 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 
    347 026171 0x030231F0 0x00000034 0x030231E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    348 026172 0x03023270 0x00000034 0x03023260 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    349 026173 0x030232F0 0x0000000C 0x030232E0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    350 026174 0x03023348 0x000000D8 0x03023338 0x000000F8 0x00000000 new         N       N    ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 
    351 026175 0x03023470 0x00000034 0x03023460 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    352 026176 0x030234F0 0x00000034 0x030234E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    353 026177 0x03023570 0x00000034 0x03023560 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    354 026178 0x030235F0 0x00000034 0x030235E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    355 026179 0x03023670 0x00000034 0x03023660 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    356 026180 0x030236F0 0x00000034 0x030236E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    357 026181 0x03023770 0x00000034 0x03023760 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    358 026186 0x030237F0 0x0000000C 0x030237E0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    359 026069 0x0306A730 0x00000018 0x0306A720 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    360 026070 0x0306A798 0x00000018 0x0306A788 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    361 026080 0x0306BCB8 0x00000018 0x0306BCA8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    362 026081 0x0306BD20 0x00000018 0x0306BD10 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    363 026082 0x0306BD88 0x00000018 0x0306BD78 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    364 026061 0x0306BF18 0x00000018 0x0306BF08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    365 026056 0x0306CC98 0x000001F8 0x0306CC88 0x00000218 0x00000000 new         N       N    ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 
    366 026077 0x0306CEE0 0x00000018 0x0306CED0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    367 026078 0x0306CF48 0x00000018 0x0306CF38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    368 026079 0x0306CFB0 0x00000018 0x0306CFA0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    369 026182 0x0306D018 0x00000034 0x0306D008 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    370 026183 0x0306D098 0x00000034 0x0306D088 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    371 026184 0x0306D118 0x00000034 0x0306D108 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    372 026185 0x0306D198 0x00000034 0x0306D188 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    373 026187 0x0306D218 0x0000009C 0x0306D208 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 
    374 026188 0x0306D300 0x00000034 0x0306D2F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    375 026189 0x0306D380 0x00000034 0x0306D370 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    376 026190 0x0306D400 0x00000034 0x0306D3F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    377 026191 0x0306D480 0x00000034 0x0306D470 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    378 026192 0x0306D500 0x00000034 0x0306D4F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    379 026193 0x0306D580 0x00000034 0x0306D570 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    380 026194 0x0306D650 0x00000034 0x0306D640 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    381 026195 0x0306D720 0x00000034 0x0306D710 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    382 026196 0x0306D7A0 0x00000034 0x0306D790 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    383 026197 0x0306D820 0x00000034 0x0306D810 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    384 026198 0x0306D8A0 0x00000034 0x0306D890 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    385 026199 0x0306D970 0x0000000C 0x0306D960 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    386 026062 0x0307D7D8 0x00000034 0x0307D7C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    387 026059 0x0307E278 0x0000000C 0x0307E268 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    388 028830 0x03D90DA0 0x000000C4 0x03D90D90 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(270) OgreIlluminationManager::initTechniques 
    389 028832 0x03D90F08 0x00000020 0x03D90EF8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(271) OgreIlluminationManager::initTechniques 
    390 028833 0x03D90F78 0x00000104 0x03D90F68 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(276) OgreIlluminationManager::initTechniques 
    391 028834 0x03D910C8 0x00000018 0x03D910B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    392 028835 0x03D91130 0x00000018 0x03D91120 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    393 028836 0x03D91198 0x00000034 0x03D91188 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    394 028837 0x03D91218 0x0000000C 0x03D91208 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    395 028839 0x03D91270 0x00000018 0x03D91260 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    396 028846 0x03D912D8 0x000000E4 0x03D912C8 0x00000104 0x00000000 new         N       N    ogrehierarchicalparticlesystemtechnique(211) OgreHierarchicalParticleSystemTechnique 
    397 028908 0x03D92F30 0x00000124 0x03D92F20 0x00000144 0x00000000 new         N       N    ogrehierarchicalparticlesystemtechnique(65) OgreHierarchicalParticleSystemTechnique 
    398 028909 0x03D93190 0x00000034 0x03D93180 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    399 028933 0x03D94830 0x00000018 0x03D94820 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    400 028938 0x03D94908 0x0000003C 0x03D948F8 0x0000005C 0x00000000 new         N       N    ogresbbrendertechnique.cpp(94) OgreSBBRenderTechniqueFactory::createIn 
    401 028939 0x03D94990 0x000000B4 0x03D94980 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(519) OgreIlluminationManager::createGlobalRu 
    402 028940 0x03D94A90 0x00000034 0x03D94A80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    403 028955 0x03D95530 0x00000018 0x03D95520 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    404 028956 0x03D95598 0x000000E8 0x03D95588 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 
    405 028957 0x03D956D0 0x00000034 0x03D956C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    406 028981 0x03D96D28 0x00000018 0x03D96D18 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    407 028982 0x03D96D90 0x000000D4 0x03D96D80 0x000000F4 0x00000000 new         N       N    ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 
    408 028983 0x03D96EB0 0x00000034 0x03D96EA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    409 029009 0x03D97808 0x00000004 0x03D977F8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    410 029007 0x03D983C0 0x00000018 0x03D983B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    411 029011 0x03D984E8 0x00000008 0x03D984D8 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    412 032666 0x03DEFD50 0x00000004 0x03DEFD40 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     11026360 0x02155E40 0x00000034 0x02155E30 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     12026361 0x02155ED0 0x00000034 0x02155EC0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     13026362 0x02155F60 0x00000034 0x02155F50 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     14026363 0x02155FF0 0x00000034 0x02155FE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     15026364 0x02156080 0x00000034 0x02156070 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     16026366 0x02156110 0x000000E4 0x02156100 0x00000104 0x00000000 new         N       N    ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 
     17026367 0x02156250 0x00000034 0x02156240 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     18026368 0x021562E0 0x00000034 0x021562D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     19026369 0x02156370 0x00000034 0x02156360 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     20026370 0x02156400 0x00000034 0x021563F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     21026351 0x0215E100 0x00000034 0x0215E0F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     22026352 0x0215E190 0x00000034 0x0215E180 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     23026353 0x0215E220 0x00000034 0x0215E210 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     24026354 0x0215E2B0 0x00000034 0x0215E2A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     25026355 0x0215E340 0x00000034 0x0215E330 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     26026356 0x0215E3D0 0x00000034 0x0215E3C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     27026357 0x0215E460 0x00000034 0x0215E450 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     28026358 0x0215E4F0 0x00000034 0x0215E4E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     29026359 0x0215E580 0x00000034 0x0215E570 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     30026384 0x0215E610 0x0000000C 0x0215E600 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     31026334 0x0215EB70 0x00000018 0x0215EB60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     32026335 0x0215EBE8 0x00000018 0x0215EBD8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     33026336 0x0215EC60 0x00000018 0x0215EC50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     34026337 0x0215ECD8 0x00000018 0x0215ECC8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     35026338 0x0215ED50 0x00000018 0x0215ED40 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     36026339 0x0215EDC8 0x00000018 0x0215EDB8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     37026340 0x0215EE40 0x00000018 0x0215EE30 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     38026341 0x0215EEB8 0x00000018 0x0215EEA8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     39026342 0x0215EF30 0x00000018 0x0215EF20 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     40026343 0x0215F030 0x00000018 0x0215F020 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     41026344 0x0215F0A8 0x00000018 0x0215F098 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     42026345 0x0215F120 0x00000018 0x0215F110 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     43026346 0x0215F198 0x00000018 0x0215F188 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     44026347 0x0215F210 0x000000E4 0x0215F200 0x00000104 0x00000000 new         N       N    ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 
     45026348 0x0215F350 0x00000034 0x0215F340 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     46026349 0x0215F3E0 0x00000034 0x0215F3D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     47026350 0x0215F470 0x00000034 0x0215F460 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     48026365 0x0215F500 0x0000000C 0x0215F4F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     49026315 0x0215F678 0x00000018 0x0215F668 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     50026319 0x0215FA30 0x00000034 0x0215FA20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     51026328 0x02167038 0x00000018 0x02167028 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     52026329 0x021670B0 0x00000018 0x021670A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     53026320 0x021671F8 0x00000034 0x021671E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     54029619 0x02168B68 0x00000034 0x02168B58 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     55026314 0x0216D388 0x0000000C 0x0216D378 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     56026424 0x0218E8B0 0x00000034 0x0218E8A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     57026425 0x0218E9A0 0x0000000C 0x0218E990 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     58026426 0x0218EA08 0x000000E8 0x0218E9F8 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 
     59026427 0x0218EB50 0x00000034 0x0218EB40 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     60026428 0x0218EBE0 0x00000034 0x0218EBD0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     61026429 0x0218ECD0 0x00000034 0x0218ECC0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     62026430 0x0218EDC0 0x00000034 0x0218EDB0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     63026431 0x0218EEB0 0x00000034 0x0218EEA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     64026432 0x0218EFA0 0x00000034 0x0218EF90 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     65026433 0x0218F030 0x00000034 0x0218F020 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     66026434 0x0218F120 0x0000000C 0x0218F110 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     67026435 0x0218F188 0x00000044 0x0218F178 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 
     68026436 0x0218F228 0x00000034 0x0218F218 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     69026437 0x0218F2B8 0x00000034 0x0218F2A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     70026438 0x0218F348 0x0000000C 0x0218F338 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     71026439 0x0218F3B0 0x00000044 0x0218F3A0 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 
     72026440 0x0218F450 0x00000034 0x0218F440 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     73026441 0x0218F4E0 0x00000034 0x0218F4D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     74026442 0x0218F570 0x0000000C 0x0218F560 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     75026443 0x0218F5D8 0x000000D8 0x0218F5C8 0x000000F8 0x00000000 new         N       N    ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 
     76026444 0x0218F710 0x00000034 0x0218F700 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     77026445 0x0218F7A0 0x00000034 0x0218F790 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     78026446 0x0218F830 0x00000034 0x0218F820 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     79026447 0x0218F8C0 0x00000034 0x0218F8B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     80026448 0x0218F950 0x00000034 0x0218F940 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     81026449 0x0218F9E0 0x00000034 0x0218F9D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     82026450 0x0218FA70 0x00000034 0x0218FA60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     83026451 0x0218FB00 0x00000034 0x0218FAF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     84026452 0x0218FB90 0x00000034 0x0218FB80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     85026453 0x0218FC20 0x00000034 0x0218FC10 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     86026454 0x0218FCB0 0x00000034 0x0218FCA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     87026455 0x0218FD40 0x0000000C 0x0218FD30 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     88026456 0x0218FDA8 0x0000009C 0x0218FD98 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 
     89026468 0x0218FEA0 0x0000000C 0x0218FE90 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     90007410 0x021B5C70 0x00000050 0x021B5C60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     91007404 0x021B5D30 0x0000003C 0x021B5D20 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     92007405 0x021B5DC8 0x00000050 0x021B5DB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     93007422 0x021B5F38 0x00000050 0x021B5F28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     94007414 0x021B60D8 0x00000050 0x021B60C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     95007418 0x021B61F8 0x00000050 0x021B61E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     96007426 0x021B6378 0x00000050 0x021B6368 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     97007534 0x021B6428 0x00000050 0x021B6418 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     98007528 0x021B6558 0x0000003C 0x021B6548 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     99007529 0x021BFA40 0x00000050 0x021BFA30 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     100007538 0x021BFB50 0x00000050 0x021BFB40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     101007542 0x021C7A88 0x00000050 0x021C7A78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     102007546 0x021C7BA8 0x00000050 0x021C7B98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     103007550 0x021C7C58 0x00000050 0x021C7C48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     104007743 0x021C8960 0x00000050 0x021C8950 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     105007737 0x021C8AC0 0x0000003C 0x021C8AB0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     106007738 0x021CB3A8 0x00000050 0x021CB398 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     107007755 0x021CB4B8 0x00000050 0x021CB4A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     108007747 0x021CB658 0x00000050 0x021CB648 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     109007751 0x021CB778 0x00000050 0x021CB768 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     110007759 0x021CB8F8 0x00000050 0x021CB8E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     111026313 0x021CDBD8 0x000001F8 0x021CDBC8 0x00000218 0x00000000 new         N       N    ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 
     112026330 0x021CDE30 0x00000018 0x021CDE20 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     113026331 0x021CDEA8 0x00000018 0x021CDE98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     114026332 0x021CDF20 0x00000018 0x021CDF10 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     115026333 0x021CDF98 0x00000018 0x021CDF88 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     116008074 0x021D1008 0x00000050 0x021D0FF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     117008068 0x021D1168 0x0000003C 0x021D1158 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     118008069 0x021D3A30 0x00000050 0x021D3A20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     119008078 0x021D3CE0 0x00000050 0x021D3CD0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     120008082 0x021D3E00 0x00000050 0x021D3DF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     121008086 0x021D3F20 0x00000050 0x021D3F10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     122008090 0x021D3FD0 0x00000050 0x021D3FC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     123029551 0x021DE200 0x00000034 0x021DE1F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     124009329 0x02F28950 0x00000050 0x02F28940 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     125009333 0x02F28A00 0x00000050 0x02F289F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     126009343 0x02F28AB0 0x00000050 0x02F28AA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     127009347 0x02F28B60 0x00000050 0x02F28B50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     128009337 0x02F28C10 0x0000003C 0x02F28C00 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     129009338 0x02F28CA8 0x00000050 0x02F28C98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     130009351 0x02F28DC0 0x00000050 0x02F28DB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     131009355 0x02F28FC0 0x00000050 0x02F28FB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     132009359 0x02F29070 0x00000050 0x02F29060 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     133009363 0x02F29120 0x00000050 0x02F29110 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     134009323 0x02F2BE80 0x0000003C 0x02F2BE70 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     135009324 0x02F2BF18 0x00000050 0x02F2BF08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     136010349 0x02F2C090 0x00000050 0x02F2C080 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     137010353 0x02F2C140 0x00000050 0x02F2C130 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     138010357 0x02F2C1F0 0x00000050 0x02F2C1E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     139010498 0x02F2E1F8 0x0000003C 0x02F2E1E8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     140010499 0x02F2E290 0x00000050 0x02F2E280 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     141010504 0x02F2E340 0x00000050 0x02F2E330 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     142010508 0x02F2E3F0 0x00000050 0x02F2E3E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     143010512 0x02F2E4A0 0x00000050 0x02F2E490 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     144010516 0x02F2E550 0x0000003C 0x02F2E540 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     145010517 0x02F2E5E8 0x00000050 0x02F2E5D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     146010522 0x02F2E700 0x00000050 0x02F2E6F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     147010526 0x02F2E7B0 0x00000050 0x02F2E7A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     148010530 0x02F2E860 0x00000050 0x02F2E850 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     149010671 0x02F304B0 0x0000003C 0x02F304A0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     150009568 0x02F372C8 0x0000003C 0x02F372B8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     151009569 0x02F37360 0x00000050 0x02F37350 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     152009574 0x02F387A8 0x00000050 0x02F38798 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     153009578 0x02F38858 0x00000050 0x02F38848 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     154009582 0x02F38908 0x00000050 0x02F388F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     155009586 0x02F389B8 0x00000050 0x02F389A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     156009590 0x02F38A68 0x00000050 0x02F38A58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     157009600 0x02F38B18 0x00000050 0x02F38B08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     158009594 0x02F38BD8 0x0000003C 0x02F38BC8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     159009595 0x02F38C70 0x00000050 0x02F38C60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     160009608 0x02F38D88 0x00000050 0x02F38D78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     161009604 0x02F38F28 0x00000050 0x02F38F18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     162009612 0x02F38FD8 0x00000050 0x02F38FC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     163009616 0x02F39088 0x00000050 0x02F39078 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     164009620 0x02F39138 0x00000050 0x02F39128 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     165009790 0x02F3E4B8 0x0000003C 0x02F3E4A8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     166009791 0x02F42DC8 0x00000050 0x02F42DB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     167009796 0x02F42E78 0x00000050 0x02F42E68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     168009800 0x02F42F28 0x00000050 0x02F42F18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     169009804 0x02F42FD8 0x00000050 0x02F42FC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     170009808 0x02F43088 0x00000050 0x02F43078 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     171009812 0x02F43138 0x00000050 0x02F43128 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     172009816 0x02F43248 0x0000003C 0x02F43238 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     173009817 0x02F432E0 0x00000050 0x02F432D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     174009822 0x02F433F8 0x00000050 0x02F433E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     175009826 0x02F434A8 0x00000050 0x02F43498 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     176009830 0x02F435B8 0x00000050 0x02F435A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     177009834 0x02F43668 0x00000050 0x02F43658 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     178009838 0x02F43718 0x00000050 0x02F43708 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     179009842 0x02F437C8 0x00000050 0x02F437B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     180009985 0x02F449D0 0x0000003C 0x02F449C0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     181010011 0x02F48768 0x0000003C 0x02F48758 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     182010012 0x02F48800 0x00000050 0x02F487F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     183010025 0x02F48918 0x00000050 0x02F48908 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     184010029 0x02F48B18 0x00000050 0x02F48B08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     185010033 0x02F48BC8 0x00000050 0x02F48BB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     186010037 0x02F48C78 0x00000050 0x02F48C68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     187010021 0x02F4D378 0x00000050 0x02F4D368 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     188009986 0x02F55B58 0x00000050 0x02F55B48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     189009991 0x02F55C08 0x00000050 0x02F55BF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     190009995 0x02F55CB8 0x00000050 0x02F55CA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     191009999 0x02F55D68 0x00000050 0x02F55D58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     192010003 0x02F55E18 0x00000050 0x02F55E08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     193010007 0x02F55EC8 0x00000050 0x02F55EB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     194010017 0x02F55F78 0x00000050 0x02F55F68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     195010144 0x02F567B8 0x0000003C 0x02F567A8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     196010145 0x02F5ACF0 0x00000050 0x02F5ACE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     197010150 0x02F5ADA0 0x00000050 0x02F5AD90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     198010154 0x02F5AE50 0x00000050 0x02F5AE40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     199010158 0x02F5AF00 0x00000050 0x02F5AEF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     200010162 0x02F5AFB0 0x0000003C 0x02F5AFA0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     201010163 0x02F5B048 0x00000050 0x02F5B038 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     202010168 0x02F5B160 0x00000050 0x02F5B150 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     203010172 0x02F5B210 0x00000050 0x02F5B200 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     204010176 0x02F5B2C0 0x00000050 0x02F5B2B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     205010344 0x02F631D0 0x00000050 0x02F631C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     206010325 0x02F63B10 0x0000003C 0x02F63B00 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     207010326 0x02F63BA8 0x00000050 0x02F63B98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     208010331 0x02F63CB8 0x00000050 0x02F63CA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     209010335 0x02F63D68 0x00000050 0x02F63D58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     210010339 0x02F63E18 0x00000050 0x02F63E08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     211010343 0x02F63EC8 0x0000003C 0x02F63EB8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     212010672 0x02F641A0 0x00000050 0x02F64190 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     213010677 0x02F642B0 0x00000050 0x02F642A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     214010681 0x02F64360 0x00000050 0x02F64350 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     215010685 0x02F64410 0x00000050 0x02F64400 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     216010689 0x02F644C0 0x0000003C 0x02F644B0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     217010690 0x02F64558 0x00000050 0x02F64548 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     218010695 0x02F64670 0x00000050 0x02F64660 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     219010699 0x02F64720 0x00000050 0x02F64710 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     220010703 0x02F647D0 0x00000050 0x02F647C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     221029617 0x02F71EA8 0x00000018 0x02F71E98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     222011188 0x02F73440 0x0000003C 0x02F73430 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     223011194 0x02F73BB8 0x00000050 0x02F73BA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     224011189 0x02F74000 0x00000050 0x02F73FF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     225029591 0x02F778C0 0x00000018 0x02F778B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     226029893 0x02F87480 0x00000220 0x02F87470 0x00000240 0x00000000 new         N       N    ogrerenderingrun.cpp(204) OgreRenderingRun::renderFullscreenQuad 
     227012212 0x02F940F0 0x0000003C 0x02F940E0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     228012213 0x02F94188 0x00000050 0x02F94178 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     229012218 0x02F942F8 0x00000050 0x02F942E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     230012222 0x02F94408 0x00000050 0x02F943F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     231012226 0x02F944B8 0x00000050 0x02F944A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     232012401 0x02F96048 0x00000050 0x02F96038 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     233012413 0x02F964F0 0x0000003C 0x02F964E0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     234012409 0x02F965D0 0x00000050 0x02F965C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     235012414 0x02F96780 0x00000050 0x02F96770 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     236012391 0x02F97760 0x0000003C 0x02F97750 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     237012392 0x02F9FC78 0x00000050 0x02F9FC68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     238012397 0x02F9FDE8 0x00000050 0x02F9FDD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     239012405 0x02F9FEF8 0x00000050 0x02F9FEE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     240012419 0x02F9FFA8 0x00000050 0x02F9FF98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     241012657 0x02FA04C0 0x0000003C 0x02FA04B0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     242012658 0x02FA0558 0x00000050 0x02FA0548 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     243012663 0x02FA0670 0x00000050 0x02FA0660 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     244012667 0x02FA0720 0x0000003C 0x02FA0710 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     245012668 0x02FA07B8 0x00000050 0x02FA07A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     246012673 0x02FA0868 0x00000050 0x02FA0858 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     247012677 0x02FA0918 0x00000050 0x02FA0908 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     248012635 0x02FA5A98 0x0000003C 0x02FA5A88 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     249012636 0x02FA8BA0 0x00000050 0x02FA8B90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     250012641 0x02FA8CB0 0x00000050 0x02FA8CA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     251012645 0x02FA8DC0 0x00000050 0x02FA8DB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     252012649 0x02FA8E70 0x00000050 0x02FA8E60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     253012653 0x02FA8F20 0x00000050 0x02FA8F10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     254013458 0x02FB29A8 0x0000003C 0x02FB2998 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     255013459 0x02FC1358 0x00000050 0x02FC1348 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     256013464 0x02FC1408 0x00000050 0x02FC13F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     257013468 0x02FC14B8 0x00000050 0x02FC14A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     258013472 0x02FC1568 0x00000050 0x02FC1558 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     259013476 0x02FC1618 0x0000003C 0x02FC1608 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     260013477 0x02FC16B0 0x00000050 0x02FC16A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     261013494 0x02FC17C8 0x0000003C 0x02FC17B8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     262013482 0x02FC1868 0x00000050 0x02FC1858 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     263013486 0x02FC1918 0x00000050 0x02FC1908 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     264013490 0x02FC19C8 0x00000050 0x02FC19B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     265013495 0x02FC1A78 0x00000050 0x02FC1A68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     266013500 0x02FC1B28 0x00000050 0x02FC1B18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     267013504 0x02FC1BD8 0x00000050 0x02FC1BC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     268013508 0x02FC1DB8 0x00000050 0x02FC1DA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     269013512 0x02FC1EC8 0x00000050 0x02FC1EB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     270013516 0x02FC1FD8 0x00000050 0x02FC1FC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     271013520 0x02FC2088 0x00000050 0x02FC2078 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     272026324 0x02FCBD90 0x00000018 0x02FCBD80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     273026325 0x02FCBE08 0x00000018 0x02FCBDF8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     274029550 0x02FD1BB8 0x00000034 0x02FD1BA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     275029553 0x02FD78F0 0x00000034 0x02FD78E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     276029529 0x02FE85A8 0x00000234 0x02FE8598 0x00000254 0x00000000 new         N       N    ??(0) ?? 
     277014519 0x02FECDF0 0x0000003C 0x02FECDE0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     278014520 0x02FECE88 0x00000050 0x02FECE78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     279014525 0x02FEE6C8 0x00000050 0x02FEE6B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     280014529 0x02FEE848 0x00000050 0x02FEE838 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     281014533 0x02FEE9D8 0x00000050 0x02FEE9C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     282014537 0x02FEEAF8 0x00000050 0x02FEEAE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     283014541 0x02FEEBA8 0x00000050 0x02FEEB98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     284029549 0x02FEEC58 0x00000018 0x02FEEC48 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     285030589 0x02FFAF48 0x00000034 0x02FFAF38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     286015093 0x02FFCD78 0x0000003C 0x02FFCD68 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     287015094 0x02FFCE10 0x00000050 0x02FFCE00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     288015099 0x02FFCF20 0x00000050 0x02FFCF10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     289015103 0x02FFCFD0 0x00000050 0x02FFCFC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     290015107 0x02FFD080 0x00000050 0x02FFD070 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     291015111 0x02FFD130 0x0000003C 0x02FFD120 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     292015112 0x02FFD1C8 0x00000050 0x02FFD1B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     293015117 0x02FFD2E0 0x00000050 0x02FFD2D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     294015121 0x02FFD390 0x00000050 0x02FFD380 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     295015125 0x02FFD440 0x00000050 0x02FFD430 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     296015839 0x0300AA88 0x0000003C 0x0300AA78 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     297015734 0x0300AB28 0x00000050 0x0300AB18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     298015739 0x0300ABD8 0x00000050 0x0300ABC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     299015743 0x0300AC88 0x00000050 0x0300AC78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     300015747 0x0300AD38 0x00000050 0x0300AD28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     301015751 0x0300ADE8 0x00000050 0x0300ADD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     302015755 0x0300AE98 0x00000050 0x0300AE88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     303015760 0x0300AF48 0x00000050 0x0300AF38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     304015765 0x0300B060 0x00000050 0x0300B050 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     305015769 0x0300B110 0x00000050 0x0300B100 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     306015773 0x0300B1C0 0x00000050 0x0300B1B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     307015777 0x0300B270 0x00000050 0x0300B260 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     308015781 0x0300B320 0x00000050 0x0300B310 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     309015785 0x0300B3D0 0x0000003C 0x0300B3C0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     310015786 0x0300B468 0x00000050 0x0300B458 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     311015791 0x0300B580 0x00000050 0x0300B570 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     312015795 0x0300B630 0x00000050 0x0300B620 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     313015799 0x0300B6E0 0x00000050 0x0300B6D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     314015803 0x0300B790 0x00000050 0x0300B780 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     315015807 0x0300B840 0x00000050 0x0300B830 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     316015811 0x0300B8F0 0x00000050 0x0300B8E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     317015831 0x0300B9A0 0x00000050 0x0300B990 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     318015840 0x0300BAF0 0x00000050 0x0300BAE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     319015845 0x0300BBA0 0x00000050 0x0300BB90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     320015849 0x0300BC50 0x00000050 0x0300BC40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     321015853 0x0300BD00 0x00000050 0x0300BCF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     322015857 0x0300BDB0 0x00000050 0x0300BDA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     323015861 0x0300BE60 0x00000050 0x0300BE50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     324015865 0x0300BF10 0x00000050 0x0300BF00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     325015869 0x0300BFC0 0x00000050 0x0300BFB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     326015873 0x0300C070 0x00000050 0x0300C060 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     327015877 0x0300C120 0x00000050 0x0300C110 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     328015881 0x0300C1D0 0x00000050 0x0300C1C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     329015885 0x0300C280 0x00000050 0x0300C270 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     330015889 0x0300C330 0x00000050 0x0300C320 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     331015733 0x0300F850 0x0000003C 0x0300F840 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     332015759 0x0300F8E8 0x0000003C 0x0300F8D8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     333015815 0x03017C38 0x00000050 0x03017C28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     334015819 0x03017CE8 0x00000050 0x03017CD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     335015823 0x03017D98 0x00000050 0x03017D88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     336015827 0x03017E48 0x00000050 0x03017E38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     337015835 0x03017EF8 0x00000050 0x03017EE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     338029547 0x03018078 0x00000104 0x03018068 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight 
     339029618 0x03019AE8 0x000000D4 0x03019AD8 0x000000F4 0x00000000 new         N       N    ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 
     340029643 0x0301B5D8 0x00000018 0x0301B5C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     341027557 0x0301E2F0 0x00000034 0x0301E2E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     342016684 0x03031808 0x0000003C 0x030317F8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     343016685 0x03031948 0x00000050 0x03031938 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     344016690 0x03031A58 0x00000050 0x03031A48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     345016694 0x03031B68 0x00000050 0x03031B58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     346029548 0x03037818 0x00000018 0x03037808 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     347029552 0x03038F18 0x00000104 0x03038F08 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight 
     348026404 0x03062230 0x0000000C 0x03062220 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     349026395 0x03066EB8 0x00000034 0x03066EA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     350026396 0x03066F48 0x00000034 0x03066F38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     351026397 0x03066FD8 0x00000034 0x03066FC8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     352026398 0x03067068 0x00000034 0x03067058 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     353026399 0x030670F8 0x00000034 0x030670E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     354026400 0x03067188 0x00000034 0x03067178 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     355026401 0x03067218 0x00000034 0x03067208 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     356026402 0x030672A8 0x00000034 0x03067298 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     357026403 0x03067338 0x00000034 0x03067328 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     358026409 0x030673C8 0x00000034 0x030673B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     359026410 0x03067458 0x00000034 0x03067448 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     360026411 0x03067548 0x00000034 0x03067538 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     361026412 0x03067638 0x00000034 0x03067628 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     362026413 0x03067728 0x00000034 0x03067718 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     363026414 0x03067818 0x00000034 0x03067808 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     364026415 0x03067908 0x00000034 0x030678F8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     365026416 0x03067998 0x00000034 0x03067988 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     366026417 0x03067A28 0x00000034 0x03067A18 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     367026418 0x03067AB8 0x00000034 0x03067AA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     368026419 0x03067BA8 0x0000000C 0x03067B98 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     369026420 0x03067C10 0x00000084 0x03067C00 0x000000A4 0x00000000 new         N       N    ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 
     370026421 0x03067CF0 0x00000034 0x03067CE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     371026422 0x03067D80 0x00000034 0x03067D70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     372026423 0x03067E70 0x00000034 0x03067E60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     373026321 0x030A3518 0x00000018 0x030A3508 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     374026323 0x030A3590 0x00000018 0x030A3580 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     375026322 0x030A4D90 0x00000008 0x030A4D80 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
     376026326 0x030A4EC0 0x00000018 0x030A4EB0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     377026327 0x030A4F38 0x00000018 0x030A4F28 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     378026371 0x030A5280 0x00000034 0x030A5270 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     379026372 0x030A5310 0x00000034 0x030A5300 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     380026373 0x030A53A0 0x00000034 0x030A5390 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     381026374 0x030A5430 0x00000034 0x030A5420 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     382026375 0x030A54C0 0x00000034 0x030A54B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     383026376 0x030A5550 0x00000034 0x030A5540 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     384026377 0x030A55E0 0x00000034 0x030A55D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     385026378 0x030A5670 0x00000034 0x030A5660 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     386026379 0x030A5700 0x00000034 0x030A56F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     387026380 0x030A5790 0x00000034 0x030A5780 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     388026381 0x030A5820 0x00000034 0x030A5810 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     389026382 0x030A58B0 0x00000034 0x030A58A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     390026383 0x030A5940 0x00000034 0x030A5930 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     391026385 0x030A59D0 0x000000E8 0x030A59C0 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 
     392026386 0x030A5B18 0x00000034 0x030A5B08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     393026387 0x030A5BA8 0x00000034 0x030A5B98 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     394026388 0x030A5C38 0x00000034 0x030A5C28 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     395026389 0x030A5CC8 0x00000034 0x030A5CB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     396026390 0x030A5D58 0x00000034 0x030A5D48 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     397026391 0x030A5DE8 0x00000034 0x030A5DD8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     398026392 0x030A5E78 0x00000034 0x030A5E68 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     399026393 0x030A5F08 0x00000034 0x030A5EF8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     400026394 0x030A5F98 0x00000034 0x030A5F88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     401027068 0x030ADC68 0x00000018 0x030ADC58 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     402026405 0x030ADD10 0x0000009C 0x030ADD00 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 
     403026406 0x030ADE08 0x00000034 0x030ADDF8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     404026407 0x030ADE98 0x00000034 0x030ADE88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     405026408 0x030ADF28 0x00000034 0x030ADF18 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     406026457 0x030AE018 0x00000034 0x030AE008 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     407026458 0x030AE0A8 0x00000034 0x030AE098 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     408026459 0x030AE138 0x00000034 0x030AE128 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     409026460 0x030AE1C8 0x00000034 0x030AE1B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     410026461 0x030AE258 0x00000034 0x030AE248 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     411026462 0x030AE2E8 0x00000034 0x030AE2D8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     412026463 0x030AE378 0x00000034 0x030AE368 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     413026464 0x030AE468 0x00000034 0x030AE458 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     414026465 0x030AE4F8 0x00000034 0x030AE4E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     415026466 0x030AE588 0x00000034 0x030AE578 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     416026467 0x030AE618 0x00000034 0x030AE608 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     417026469 0x030AE708 0x00000034 0x030AE6F8 0x00000054 0x00000000 new         N       N    reflectiontest.h(302) RaytraceDemoApplication::createScene 
     418026589 0x030B0760 0x00000030 0x030B0750 0x00000050 0x00000000 new         N       N    framecapture.h(87) FrameCapture::addAnimableNode 
     419026591 0x030B07F0 0x00000030 0x030B07E0 0x00000050 0x00000000 new         N       N    framecapture.h(87) FrameCapture::addAnimableNode 
     420026592 0x030B0880 0x00000008 0x030B0870 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     421026316 0x030B6640 0x0000000C 0x030B6630 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     422029592 0x030F9058 0x000000E8 0x030F9048 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 
     423029593 0x030F91A0 0x00000034 0x030F9190 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     424027097 0x030FB0B0 0x00000034 0x030FB0A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     425027072 0x03109C58 0x00000004 0x03109C48 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     426027073 0x03109CB8 0x00000018 0x03109CA8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     427027095 0x03109D30 0x00000108 0x03109D20 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
     428027096 0x03109E98 0x00000134 0x03109E88 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
     429027064 0x0310CAE8 0x000000C4 0x0310CAD8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     430027066 0x0310CC08 0x00000020 0x0310CBF8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     431027067 0x0310CC88 0x00000104 0x0310CC78 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 
     432027069 0x0310CE98 0x00000018 0x0310CE88 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     433027070 0x0310CF10 0x00000034 0x0310CF00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     434027071 0x0310CFA0 0x0000000C 0x0310CF90 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     435027217 0x0310E008 0x00000018 0x0310DFF8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     436027240 0x0310E100 0x00000108 0x0310E0F0 0x00000128 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(110) OgreDistanceCubeMapRenderTechniqueFacto 
     437027241 0x0310E328 0x00000134 0x0310E318 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
     438027242 0x0310E5D8 0x00000034 0x0310E5C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     439026317 0x03110078 0x00000018 0x03110068 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     440026318 0x031109A0 0x00000018 0x03110990 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     441027360 0x0314F560 0x00000018 0x0314F550 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     442027397 0x0315BC78 0x00000108 0x0315BC68 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
     443027398 0x0315BDE0 0x00000134 0x0315BDD0 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
     444027399 0x0315BF70 0x00000034 0x0315BF60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     445027517 0x0315F308 0x00000018 0x0315F2F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     446027681 0x0315F400 0x00000020 0x0315F3F0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     447027555 0x0315F4B0 0x00000108 0x0315F4A0 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
     448027556 0x0315F618 0x00000134 0x0315F608 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
     449027770 0x03163EE8 0x0000000C 0x03163ED8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     450027686 0x03164BA8 0x0000000C 0x03164B98 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     451027678 0x03166250 0x00000010 0x03166240 0x00000030 0x00000000 new         N       N    ??(0) ?? 
     452027675 0x031664B0 0x00000018 0x031664A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     453027679 0x03166680 0x000000C4 0x03166670 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     454027682 0x031667A0 0x00000104 0x03166790 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 
     455027683 0x03166900 0x00000018 0x031668F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     456027684 0x03166978 0x00000018 0x03166968 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     457027685 0x031669F0 0x00000034 0x031669E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     458027688 0x03166A80 0x00000018 0x03166A70 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     459027700 0x03166AF8 0x000000E4 0x03166AE8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     460027796 0x03166C38 0x00000004 0x03166C28 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     461027797 0x031674C0 0x000000C4 0x031674B0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     462027801 0x031675E0 0x00000018 0x031675D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     463027813 0x03167658 0x000000E4 0x03167648 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     464027900 0x03167798 0x00000004 0x03167788 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     465027903 0x031677F8 0x00000020 0x031677E8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     466027874 0x03167B70 0x0000000C 0x03167B60 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     467027977 0x03169808 0x0000000C 0x031697F8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     468027799 0x03175F60 0x00000020 0x03175F50 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     469027901 0x03176E20 0x000000C4 0x03176E10 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     470027905 0x03176FA8 0x00000018 0x03176F98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     471027917 0x03177020 0x000000E4 0x03177010 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     472028003 0x03177160 0x00000004 0x03177150 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     473028004 0x0317A078 0x000000C4 0x0317A068 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     474028006 0x0317A198 0x00000020 0x0317A188 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     475028008 0x0317A218 0x00000018 0x0317A208 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     476028020 0x0317A290 0x000000E4 0x0317A280 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     477028108 0x0317A3D0 0x00000004 0x0317A3C0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     478028111 0x0317A430 0x00000020 0x0317A420 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     479028082 0x0317B680 0x0000000C 0x0317B670 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     480028109 0x0317D2A0 0x000000C4 0x0317D290 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     481028321 0x0317D3C0 0x00000018 0x0317D3B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     482028113 0x0317D438 0x00000018 0x0317D428 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     483028125 0x0317D4B0 0x000000E4 0x0317D4A0 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     484028212 0x03185250 0x00000004 0x03185240 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     485028186 0x031855B8 0x0000000C 0x031855A8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     486028213 0x03188170 0x000000C4 0x03188160 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     487028215 0x03188290 0x00000020 0x03188280 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     488028216 0x03188310 0x00000018 0x03188300 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     489028228 0x03188388 0x000000E4 0x03188378 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     490028316 0x031884C8 0x00000004 0x031884B8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     491028290 0x03189778 0x0000000C 0x03189768 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     492028317 0x0318B398 0x000000C4 0x0318B388 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     493028319 0x0318B4B8 0x00000020 0x0318B4A8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     494028631 0x0318B538 0x00000018 0x0318B528 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     495028333 0x0318B5B8 0x000000E4 0x0318B5A8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     496028421 0x0318B6F8 0x00000004 0x0318B6E8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     497028395 0x0318C9D8 0x0000000C 0x0318C9C8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     498028422 0x0318E5F8 0x000000C4 0x0318E5E8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     499028424 0x0318E718 0x00000020 0x0318E708 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     500028425 0x0318E798 0x00000018 0x0318E788 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     501028437 0x0318E810 0x000000E4 0x0318E800 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     502028524 0x0318E950 0x00000004 0x0318E940 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     503028498 0x0318ECB8 0x0000000C 0x0318ECA8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     504028600 0x03190B58 0x0000000C 0x03190B48 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     505028525 0x031994A8 0x000000C4 0x03199498 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     506028527 0x031995C8 0x00000020 0x031995B8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     507028528 0x03199648 0x00000018 0x03199638 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     508028540 0x031996C0 0x000000E4 0x031996B0 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     509028626 0x03199800 0x00000004 0x031997F0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     510028627 0x0319C760 0x000000C4 0x0319C750 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     511028629 0x0319C880 0x00000020 0x0319C870 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     512028630 0x0319C900 0x00000034 0x0319C8F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     513028643 0x0319C990 0x000000E4 0x0319C980 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     514028731 0x0319CAD0 0x00000004 0x0319CAC0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     515028705 0x0319DDB0 0x0000000C 0x0319DDA0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     516028732 0x0319F9D0 0x000000C4 0x0319F9C0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     517028734 0x0319FAF0 0x00000020 0x0319FAE0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     518028735 0x0319FB70 0x00000018 0x0319FB60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     519028747 0x0319FBE8 0x000000E4 0x0319FBD8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     520028834 0x0319FD28 0x00000004 0x0319FD18 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     521028808 0x031A0090 0x0000000C 0x031A0080 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     522028910 0x031A1F30 0x0000000C 0x031A1F20 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     523028835 0x031A2C48 0x000000C4 0x031A2C38 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     524028837 0x031A2D68 0x00000020 0x031A2D58 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     525028838 0x031A2DE8 0x00000018 0x031A2DD8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     526028850 0x031A2E60 0x000000E4 0x031A2E50 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     527028936 0x031A2FA0 0x00000004 0x031A2F90 0x00000024 0x00000000 new         N       N    ??(0) ?? 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log

    r1879 r1885  
    11-------------------------------------------------------------------------------- 
    22 
    3       OgreMemory.log - Memory logging file created on Mon Dec 11 14:59:06 2006 
     3      OgreMemory.log - Memory logging file created on Wed Dec 13 15:08:25 2006 
    44 
    55-------------------------------------------------------------------------------- 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log

    r1882 r1885  
    1 13:03:28: Creating resource group General 
    2 13:03:28: Creating resource group Internal 
    3 13:03:28: Creating resource group Autodetect 
    4 13:03:28: Registering ResourceManager for type Material 
    5 13:03:28: Registering ResourceManager for type Mesh 
    6 13:03:28: Registering ResourceManager for type Skeleton 
    7 13:03:28: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 13:03:28: Loading library OgrePlatform.dll 
    9 13:03:28: OverlayElementFactory for type Panel registered. 
    10 13:03:28: OverlayElementFactory for type BorderPanel registered. 
    11 13:03:28: OverlayElementFactory for type TextArea registered. 
    12 13:03:28: Registering ResourceManager for type Font 
    13 13:03:28: ArchiveFactory for archive type FileSystem registered. 
    14 13:03:28: ArchiveFactory for archive type Zip registered. 
    15 13:03:28: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 13:03:28: 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 13:03:28: Registering ResourceManager for type HighLevelGpuProgram 
    18 13:03:28: Registering ResourceManager for type Compositor 
    19 13:03:28: MovableObjectFactory for type 'Entity' registered. 
    20 13:03:28: MovableObjectFactory for type 'Light' registered. 
    21 13:03:28: MovableObjectFactory for type 'BillboardSet' registered. 
    22 13:03:28: MovableObjectFactory for type 'ManualObject' registered. 
    23 13:03:28: MovableObjectFactory for type 'BillboardChain' registered. 
    24 13:03:28: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 13:03:28: Loading library .\RenderSystem_Direct3D9 
    26 13:03:28: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 13:03:28: D3D9: Driver Detection Starts 
    28 13:03:28: D3D9: Driver Detection Ends 
    29 13:03:28: Loading library .\Plugin_ParticleFX 
    30 13:03:28: Particle Emitter Type 'Point' registered 
    31 13:03:28: Particle Emitter Type 'Box' registered 
    32 13:03:28: Particle Emitter Type 'Ellipsoid' registered 
    33 13:03:28: Particle Emitter Type 'Cylinder' registered 
    34 13:03:28: Particle Emitter Type 'Ring' registered 
    35 13:03:28: Particle Emitter Type 'HollowEllipsoid' registered 
    36 13:03:28: Particle Affector Type 'LinearForce' registered 
    37 13:03:28: Particle Affector Type 'ColourFader' registered 
    38 13:03:28: Particle Affector Type 'ColourFader2' registered 
    39 13:03:28: Particle Affector Type 'ColourImage' registered 
    40 13:03:28: Particle Affector Type 'ColourInterpolator' registered 
    41 13:03:28: Particle Affector Type 'Scaler' registered 
    42 13:03:28: Particle Affector Type 'Rotator' registered 
    43 13:03:28: Particle Affector Type 'DirectionRandomiser' registered 
    44 13:03:28: Particle Affector Type 'DeflectorPlane' registered 
    45 13:03:28: Loading library .\Plugin_BSPSceneManager 
    46 13:03:28: Registering ResourceManager for type BspLevel 
    47 13:03:28: Loading library .\Plugin_OctreeSceneManager 
    48 13:03:28: Loading library .\Plugin_CgProgramManager 
    49 13:03:28: *-*-* OGRE Initialising 
    50 13:03:28: *-*-* Version 1.2.0 (Dagon) 
    51 13:03:28: Creating resource group Bootstrap 
    52 13:03:28: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 13:03:28: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 13:03:28: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 13:03:28: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 13:03:28: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 13:03:28: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 13:03:28: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 13:03:28: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 13:03:28: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 13:03:28: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 13:03:28: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 13:03:28: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 13:03:28: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 13:03:28: D3D9 : RenderSystem Option: Anti aliasing = Level 4 
    66 13:03:28: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 13:03:28: D3D9 : RenderSystem Option: Full Screen = No 
    68 13:03:28: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    69 13:03:28: D3D9 : RenderSystem Option: VSync = No 
    70 13:03:28: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 13:03:29: D3D9 : Subsystem Initialising 
    72 13:03:29: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 13:03:29: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 13:03:29: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 13:03:29: Registering ResourceManager for type Texture 
    76 13:03:29: Registering ResourceManager for type GpuProgram 
    77 13:03:29: RenderSystem capabilities 
    78 13:03:29: ------------------------- 
    79 13:03:29:  * Hardware generation of mipmaps: yes 
    80 13:03:29:  * Texture blending: yes 
    81 13:03:29:  * Anisotropic texture filtering: yes 
    82 13:03:29:  * Dot product texture operation: yes 
    83 13:03:29:  * Cube mapping: yes 
    84 13:03:29:  * Hardware stencil buffer: yes 
    85 13:03:29:    - Stencil depth: 8 
    86 13:03:29:    - Two sided stencil support: yes 
    87 13:03:29:    - Wrap stencil values: yes 
    88 13:03:29:  * Hardware vertex / index buffers: yes 
    89 13:03:29:  * Vertex programs: yes 
    90 13:03:29:    - Max vertex program version: vs_3_0 
    91 13:03:29:  * Fragment programs: yes 
    92 13:03:29:    - Max fragment program version: ps_3_0 
    93 13:03:29:  * Texture Compression: yes 
    94 13:03:29:    - DXT: yes 
    95 13:03:29:    - VTC: no 
    96 13:03:29:  * Scissor Rectangle: yes 
    97 13:03:29:  * Hardware Occlusion Query: yes 
    98 13:03:29:  * User clip planes: yes 
    99 13:03:29:  * VET_UBYTE4 vertex element type: yes 
    100 13:03:29:  * Infinite far plane projection: yes 
    101 13:03:29:  * Hardware render-to-texture: yes 
    102 13:03:29:  * Floating point textures: yes 
    103 13:03:29:  * Non-power-of-two textures: yes 
    104 13:03:29:  * Volume textures: yes 
    105 13:03:29:  * Multiple Render Targets: 4 
    106 13:03:29:  * Max Point Size: 8192 
    107 13:03:29: *************************************** 
    108 13:03:29: *** D3D9 : Subsystem Initialised OK *** 
    109 13:03:29: *************************************** 
    110 13:03:29: ResourceBackgroundQueue - threading disabled 
    111 13:03:29: Particle Renderer Type 'billboard' registered 
    112 13:03:29: Particle Renderer Type 'sprite' registered 
    113 13:03:29: 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 13:03:29: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 13:03:29: Parsing scripts for resource group Autodetect 
    116 13:03:29: Finished parsing scripts for resource group Autodetect 
    117 13:03:29: Parsing scripts for resource group Bootstrap 
    118 13:03:29: Parsing script OgreCore.material 
    119 13:03:29: Parsing script OgreProfiler.material 
    120 13:03:29: Parsing script Ogre.fontdef 
    121 13:03:29: Parsing script OgreDebugPanel.overlay 
    122 13:03:29: 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 13:03:29: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    124 13:03:29: 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 13:03:29: Font TrebuchetMSBoldusing texture size 512x512 
    126 13:03:29: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 13:03:29: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 13:03:29: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 13:03:29: Parsing script OgreLoadingPanel.overlay 
    130 13:03:29: Finished parsing scripts for resource group Bootstrap 
    131 13:03:29: Parsing scripts for resource group General 
    132 13:03:29: Parsing script GameTools.program 
    133 13:03:29: Parsing script atlascube.material 
    134 13:03:29: Parsing script colorcube.material 
    135 13:03:29: Parsing script difflab.material 
    136 13:03:30: An exception has been thrown! 
     116:19:17: Creating resource group General 
     216:19:17: Creating resource group Internal 
     316:19:17: Creating resource group Autodetect 
     416:19:17: Registering ResourceManager for type Material 
     516:19:17: Registering ResourceManager for type Mesh 
     616:19:17: Registering ResourceManager for type Skeleton 
     716:19:17: MovableObjectFactory for type 'ParticleSystem' registered. 
     816:19:17: Loading library OgrePlatform.dll 
     916:19:17: OverlayElementFactory for type Panel registered. 
     1016:19:17: OverlayElementFactory for type BorderPanel registered. 
     1116:19:17: OverlayElementFactory for type TextArea registered. 
     1216:19:17: Registering ResourceManager for type Font 
     1316:19:17: ArchiveFactory for archive type FileSystem registered. 
     1416:19:17: ArchiveFactory for archive type Zip registered. 
     1516:19:17: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1616:19:17: 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  
     1716:19:17: Registering ResourceManager for type HighLevelGpuProgram 
     1816:19:17: Registering ResourceManager for type Compositor 
     1916:19:17: MovableObjectFactory for type 'Entity' registered. 
     2016:19:17: MovableObjectFactory for type 'Light' registered. 
     2116:19:17: MovableObjectFactory for type 'BillboardSet' registered. 
     2216:19:17: MovableObjectFactory for type 'ManualObject' registered. 
     2316:19:17: MovableObjectFactory for type 'BillboardChain' registered. 
     2416:19:17: MovableObjectFactory for type 'RibbonTrail' registered. 
     2516:19:17: Loading library .\RenderSystem_Direct3D9 
     2616:19:17: D3D9 : Direct3D9 Rendering Subsystem created. 
     2716:19:17: D3D9: Driver Detection Starts 
     2816:19:17: D3D9: Driver Detection Ends 
     2916:19:17: Loading library .\Plugin_ParticleFX 
     3016:19:17: Particle Emitter Type 'Point' registered 
     3116:19:17: Particle Emitter Type 'Box' registered 
     3216:19:17: Particle Emitter Type 'Ellipsoid' registered 
     3316:19:17: Particle Emitter Type 'Cylinder' registered 
     3416:19:17: Particle Emitter Type 'Ring' registered 
     3516:19:17: Particle Emitter Type 'HollowEllipsoid' registered 
     3616:19:17: Particle Affector Type 'LinearForce' registered 
     3716:19:17: Particle Affector Type 'ColourFader' registered 
     3816:19:17: Particle Affector Type 'ColourFader2' registered 
     3916:19:17: Particle Affector Type 'ColourImage' registered 
     4016:19:17: Particle Affector Type 'ColourInterpolator' registered 
     4116:19:17: Particle Affector Type 'Scaler' registered 
     4216:19:17: Particle Affector Type 'Rotator' registered 
     4316:19:17: Particle Affector Type 'DirectionRandomiser' registered 
     4416:19:17: Particle Affector Type 'DeflectorPlane' registered 
     4516:19:17: Loading library .\Plugin_BSPSceneManager 
     4616:19:17: Registering ResourceManager for type BspLevel 
     4716:19:17: Loading library .\Plugin_OctreeSceneManager 
     4816:19:17: Loading library .\Plugin_CgProgramManager 
     4916:19:17: *-*-* OGRE Initialising 
     5016:19:17: *-*-* Version 1.2.0 (Dagon) 
     5116:19:17: Creating resource group Bootstrap 
     5216:19:17: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5316:19:17: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5416:19:17: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5516:19:17: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5616:19:17: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5716:19:17: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5816:19:17: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5916:19:17: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6016:19:17: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6116:19:17: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6216:19:17: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6316:19:17: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6416:19:17: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6516:19:17: D3D9 : RenderSystem Option: Anti aliasing = Level 4 
     6616:19:17: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6716:19:17: D3D9 : RenderSystem Option: Full Screen = No 
     6816:19:17: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     6916:19:17: D3D9 : RenderSystem Option: VSync = No 
     7016:19:17: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7116:19:18: D3D9 : Subsystem Initialising 
     7216:19:18: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7316:19:18: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7416:19:18: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7516:19:18: Registering ResourceManager for type Texture 
     7616:19:18: Registering ResourceManager for type GpuProgram 
     7716:19:18: RenderSystem capabilities 
     7816:19:18: ------------------------- 
     7916:19:18:  * Hardware generation of mipmaps: yes 
     8016:19:18:  * Texture blending: yes 
     8116:19:18:  * Anisotropic texture filtering: yes 
     8216:19:18:  * Dot product texture operation: yes 
     8316:19:18:  * Cube mapping: yes 
     8416:19:18:  * Hardware stencil buffer: yes 
     8516:19:18:    - Stencil depth: 8 
     8616:19:18:    - Two sided stencil support: yes 
     8716:19:18:    - Wrap stencil values: yes 
     8816:19:18:  * Hardware vertex / index buffers: yes 
     8916:19:18:  * Vertex programs: yes 
     9016:19:18:    - Max vertex program version: vs_3_0 
     9116:19:18:  * Fragment programs: yes 
     9216:19:18:    - Max fragment program version: ps_3_0 
     9316:19:18:  * Texture Compression: yes 
     9416:19:18:    - DXT: yes 
     9516:19:18:    - VTC: no 
     9616:19:18:  * Scissor Rectangle: yes 
     9716:19:18:  * Hardware Occlusion Query: yes 
     9816:19:18:  * User clip planes: yes 
     9916:19:18:  * VET_UBYTE4 vertex element type: yes 
     10016:19:18:  * Infinite far plane projection: yes 
     10116:19:18:  * Hardware render-to-texture: yes 
     10216:19:18:  * Floating point textures: yes 
     10316:19:18:  * Non-power-of-two textures: yes 
     10416:19:18:  * Volume textures: yes 
     10516:19:18:  * Multiple Render Targets: 4 
     10616:19:18:  * Max Point Size: 8192 
     10716:19:18: *************************************** 
     10816:19:18: *** D3D9 : Subsystem Initialised OK *** 
     10916:19:18: *************************************** 
     11016:19:18: ResourceBackgroundQueue - threading disabled 
     11116:19:18: Particle Renderer Type 'billboard' registered 
     11216:19:18: Particle Renderer Type 'sprite' registered 
     11316:19:18: 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 
     11416:19:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11516:19:18: Parsing scripts for resource group Autodetect 
     11616:19:18: Finished parsing scripts for resource group Autodetect 
     11716:19:18: Parsing scripts for resource group Bootstrap 
     11816:19:18: Parsing script OgreCore.material 
     11916:19:18: Parsing script OgreProfiler.material 
     12016:19:18: Parsing script Ogre.fontdef 
     12116:19:18: Parsing script OgreDebugPanel.overlay 
     12216:19:18: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12316:19:18: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12416:19:18: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12516:19:18: Font TrebuchetMSBoldusing texture size 512x512 
     12616:19:18: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12716:19:18: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12816:19:18: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12916:19:18: Parsing script OgreLoadingPanel.overlay 
     13016:19:18: Finished parsing scripts for resource group Bootstrap 
     13116:19:18: Parsing scripts for resource group General 
     13216:19:18: Parsing script GameTools.program 
     13316:19:18: Parsing script atlascube.material 
     13416:19:18: Parsing script colorcube.material 
     13516:19:18: Parsing script difflab.material 
     13616:19:19: An exception has been thrown! 
    137137 
    138138----------------------------------- 
     
    145145Line: 779 
    146146Stack unwinding: <<beginning of stack>> 
    147 13:03:30: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14716:19:19: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    148148 
    149149----------------------------------- 
     
    156156Line: 779 
    157157Stack unwinding: <<beginning of stack>> 
    158 13:03:30: An exception has been thrown! 
     15816:19:19: An exception has been thrown! 
    159159 
    160160----------------------------------- 
     
    167167Line: 779 
    168168Stack unwinding: <<beginning of stack>> 
    169 13:03:30: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16916:19:19: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    170170 
    171171----------------------------------- 
     
    178178Line: 779 
    179179Stack unwinding: <<beginning of stack>> 
    180 13:03:30: An exception has been thrown! 
     18016:19:19: An exception has been thrown! 
    181181 
    182182----------------------------------- 
     
    189189Line: 779 
    190190Stack unwinding: <<beginning of stack>> 
    191 13:03:30: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19116:19:19: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    192192 
    193193----------------------------------- 
     
    200200Line: 779 
    201201Stack unwinding: <<beginning of stack>> 
    202 13:03:30: An exception has been thrown! 
     20216:19:19: An exception has been thrown! 
    203203 
    204204----------------------------------- 
     
    211211Line: 779 
    212212Stack unwinding: <<beginning of stack>> 
    213 13:03:30: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21316:19:19: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    214214 
    215215----------------------------------- 
     
    222222Line: 779 
    223223Stack unwinding: <<beginning of stack>> 
    224 13:03:30: An exception has been thrown! 
     22416:19:19: An exception has been thrown! 
    225225 
    226226----------------------------------- 
     
    233233Line: 779 
    234234Stack unwinding: <<beginning of stack>> 
    235 13:03:30: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23516:19:19: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    236236 
    237237----------------------------------- 
     
    244244Line: 779 
    245245Stack unwinding: <<beginning of stack>> 
    246 13:03:30: An exception has been thrown! 
     24616:19:19: An exception has been thrown! 
    247247 
    248248----------------------------------- 
     
    255255Line: 779 
    256256Stack unwinding: <<beginning of stack>> 
    257 13:03:30: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25716:19:19: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    258258 
    259259----------------------------------- 
     
    266266Line: 779 
    267267Stack unwinding: <<beginning of stack>> 
    268 13:03:30: An exception has been thrown! 
     26816:19:19: An exception has been thrown! 
    269269 
    270270----------------------------------- 
     
    277277Line: 779 
    278278Stack unwinding: <<beginning of stack>> 
    279 13:03:30: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27916:19:19: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    280280 
    281281----------------------------------- 
     
    288288Line: 779 
    289289Stack unwinding: <<beginning of stack>> 
    290 13:03:30: An exception has been thrown! 
     29016:19:19: An exception has been thrown! 
    291291 
    292292----------------------------------- 
     
    299299Line: 779 
    300300Stack unwinding: <<beginning of stack>> 
    301 13:03:30: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30116:19:19: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    302302 
    303303----------------------------------- 
     
    310310Line: 779 
    311311Stack unwinding: <<beginning of stack>> 
    312 13:03:30: An exception has been thrown! 
     31216:19:19: An exception has been thrown! 
    313313 
    314314----------------------------------- 
     
    321321Line: 779 
    322322Stack unwinding: <<beginning of stack>> 
    323 13:03:30: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32316:19:19: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    324324 
    325325----------------------------------- 
     
    332332Line: 779 
    333333Stack unwinding: <<beginning of stack>> 
    334 13:03:30: An exception has been thrown! 
     33416:19:19: An exception has been thrown! 
    335335 
    336336----------------------------------- 
     
    343343Line: 779 
    344344Stack unwinding: <<beginning of stack>> 
    345 13:03:30: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34516:19:19: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    346346 
    347347----------------------------------- 
     
    354354Line: 779 
    355355Stack unwinding: <<beginning of stack>> 
    356 13:03:30: An exception has been thrown! 
     35616:19:19: An exception has been thrown! 
    357357 
    358358----------------------------------- 
     
    365365Line: 779 
    366366Stack unwinding: <<beginning of stack>> 
    367 13:03:30: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     36716:19:19: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    368368 
    369369----------------------------------- 
     
    376376Line: 779 
    377377Stack unwinding: <<beginning of stack>> 
    378 13:03:30: An exception has been thrown! 
     37816:19:19: An exception has been thrown! 
    379379 
    380380----------------------------------- 
     
    387387Line: 779 
    388388Stack unwinding: <<beginning of stack>> 
    389 13:03:30: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     38916:19:19: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    390390 
    391391----------------------------------- 
     
    398398Line: 779 
    399399Stack unwinding: <<beginning of stack>> 
    400 13:03:30: An exception has been thrown! 
     40016:19:19: An exception has been thrown! 
    401401 
    402402----------------------------------- 
     
    409409Line: 779 
    410410Stack unwinding: <<beginning of stack>> 
    411 13:03:30: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41116:19:19: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    412412 
    413413----------------------------------- 
     
    420420Line: 779 
    421421Stack unwinding: <<beginning of stack>> 
    422 13:03:30: An exception has been thrown! 
     42216:19:19: An exception has been thrown! 
    423423 
    424424----------------------------------- 
     
    431431Line: 779 
    432432Stack unwinding: <<beginning of stack>> 
    433 13:03:30: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43316:19:19: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    434434 
    435435----------------------------------- 
     
    442442Line: 779 
    443443Stack unwinding: <<beginning of stack>> 
    444 13:03:30: An exception has been thrown! 
     44416:19:19: An exception has been thrown! 
    445445 
    446446----------------------------------- 
     
    453453Line: 779 
    454454Stack unwinding: <<beginning of stack>> 
    455 13:03:30: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45516:19:19: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    456456 
    457457----------------------------------- 
     
    464464Line: 779 
    465465Stack unwinding: <<beginning of stack>> 
    466 13:03:30: An exception has been thrown! 
     46616:19:19: An exception has been thrown! 
    467467 
    468468----------------------------------- 
     
    475475Line: 779 
    476476Stack unwinding: <<beginning of stack>> 
    477 13:03:30: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     47716:19:19: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    478478 
    479479----------------------------------- 
     
    486486Line: 779 
    487487Stack unwinding: <<beginning of stack>> 
    488 13:03:30: An exception has been thrown! 
     48816:19:19: An exception has been thrown! 
    489489 
    490490----------------------------------- 
     
    497497Line: 779 
    498498Stack unwinding: <<beginning of stack>> 
    499 13:03:30: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     49916:19:19: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    500500 
    501501----------------------------------- 
     
    508508Line: 779 
    509509Stack unwinding: <<beginning of stack>> 
    510 13:03:30: An exception has been thrown! 
     51016:19:19: An exception has been thrown! 
    511511 
    512512----------------------------------- 
     
    519519Line: 779 
    520520Stack unwinding: <<beginning of stack>> 
    521 13:03:30: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52116:19:19: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    522522 
    523523----------------------------------- 
     
    530530Line: 779 
    531531Stack unwinding: <<beginning of stack>> 
    532 13:03:30: An exception has been thrown! 
     53216:19:19: An exception has been thrown! 
    533533 
    534534----------------------------------- 
     
    541541Line: 779 
    542542Stack unwinding: <<beginning of stack>> 
    543 13:03:30: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54316:19:19: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    544544 
    545545----------------------------------- 
     
    552552Line: 779 
    553553Stack unwinding: <<beginning of stack>> 
    554 13:03:30: An exception has been thrown! 
     55416:19:19: An exception has been thrown! 
    555555 
    556556----------------------------------- 
     
    563563Line: 779 
    564564Stack unwinding: <<beginning of stack>> 
    565 13:03:30: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56516:19:19: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    566566 
    567567----------------------------------- 
     
    574574Line: 779 
    575575Stack unwinding: <<beginning of stack>> 
    576 13:03:30: An exception has been thrown! 
     57616:19:19: An exception has been thrown! 
    577577 
    578578----------------------------------- 
     
    585585Line: 779 
    586586Stack unwinding: <<beginning of stack>> 
    587 13:03:30: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     58716:19:19: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    588588 
    589589----------------------------------- 
     
    596596Line: 779 
    597597Stack unwinding: <<beginning of stack>> 
    598 13:03:30: Parsing script diffscene.material 
    599 13:03:30: An exception has been thrown! 
     59816:19:19: Parsing script diffscene.material 
     59916:19:19: An exception has been thrown! 
    600600 
    601601----------------------------------- 
     
    608608Line: 779 
    609609Stack unwinding: <<beginning of stack>> 
    610 13:03:30: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     61016:19:19: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    611611 
    612612----------------------------------- 
     
    619619Line: 779 
    620620Stack unwinding: <<beginning of stack>> 
    621 13:03:30: An exception has been thrown! 
     62116:19:19: An exception has been thrown! 
    622622 
    623623----------------------------------- 
     
    630630Line: 779 
    631631Stack unwinding: <<beginning of stack>> 
    632 13:03:30: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63216:19:19: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    633633 
    634634----------------------------------- 
     
    641641Line: 779 
    642642Stack unwinding: <<beginning of stack>> 
    643 13:03:30: An exception has been thrown! 
     64316:19:19: An exception has been thrown! 
    644644 
    645645----------------------------------- 
     
    652652Line: 779 
    653653Stack unwinding: <<beginning of stack>> 
    654 13:03:30: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65416:19:19: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    655655 
    656656----------------------------------- 
     
    663663Line: 779 
    664664Stack unwinding: <<beginning of stack>> 
    665 13:03:30: An exception has been thrown! 
     66516:19:19: An exception has been thrown! 
    666666 
    667667----------------------------------- 
     
    674674Line: 779 
    675675Stack unwinding: <<beginning of stack>> 
    676 13:03:30: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67616:19:19: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    677677 
    678678----------------------------------- 
     
    685685Line: 779 
    686686Stack unwinding: <<beginning of stack>> 
    687 13:03:30: An exception has been thrown! 
     68716:19:19: An exception has been thrown! 
    688688 
    689689----------------------------------- 
     
    696696Line: 779 
    697697Stack unwinding: <<beginning of stack>> 
    698 13:03:30: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69816:19:19: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    699699 
    700700----------------------------------- 
     
    707707Line: 779 
    708708Stack unwinding: <<beginning of stack>> 
    709 13:03:30: An exception has been thrown! 
     70916:19:19: An exception has been thrown! 
    710710 
    711711----------------------------------- 
     
    718718Line: 779 
    719719Stack unwinding: <<beginning of stack>> 
    720 13:03:30: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     72016:19:19: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    721721 
    722722----------------------------------- 
     
    729729Line: 779 
    730730Stack unwinding: <<beginning of stack>> 
    731 13:03:30: An exception has been thrown! 
     73116:19:19: An exception has been thrown! 
    732732 
    733733----------------------------------- 
     
    740740Line: 779 
    741741Stack unwinding: <<beginning of stack>> 
    742 13:03:30: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74216:19:19: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    743743 
    744744----------------------------------- 
     
    751751Line: 779 
    752752Stack unwinding: <<beginning of stack>> 
    753 13:03:30: An exception has been thrown! 
     75316:19:19: An exception has been thrown! 
    754754 
    755755----------------------------------- 
     
    762762Line: 779 
    763763Stack unwinding: <<beginning of stack>> 
    764 13:03:30: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76416:19:19: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    765765 
    766766----------------------------------- 
     
    773773Line: 779 
    774774Stack unwinding: <<beginning of stack>> 
    775 13:03:30: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    776 13:03:30: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    777 13:03:30: Parsing script Diffuse.material 
    778 13:03:30: An exception has been thrown! 
     77516:19:19: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77616:19:19: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77716:19:19: Parsing script Diffuse.material 
     77816:19:19: An exception has been thrown! 
    779779 
    780780----------------------------------- 
     
    787787Line: 779 
    788788Stack unwinding: <<beginning of stack>> 
    789 13:03:30: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     78916:19:19: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    790790 
    791791----------------------------------- 
     
    798798Line: 779 
    799799Stack unwinding: <<beginning of stack>> 
    800 13:03:31: An exception has been thrown! 
     80016:19:20: An exception has been thrown! 
    801801 
    802802----------------------------------- 
     
    809809Line: 779 
    810810Stack unwinding: <<beginning of stack>> 
    811 13:03:31: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     81116:19:20: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    812812 
    813813----------------------------------- 
     
    820820Line: 779 
    821821Stack unwinding: <<beginning of stack>> 
    822 13:03:34: An exception has been thrown! 
     82216:19:23: An exception has been thrown! 
    823823 
    824824----------------------------------- 
     
    831831Line: 779 
    832832Stack unwinding: <<beginning of stack>> 
    833 13:03:34: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83316:19:23: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    834834 
    835835----------------------------------- 
     
    842842Line: 779 
    843843Stack unwinding: <<beginning of stack>> 
    844 13:03:34: An exception has been thrown! 
     84416:19:23: An exception has been thrown! 
    845845 
    846846----------------------------------- 
     
    853853Line: 779 
    854854Stack unwinding: <<beginning of stack>> 
    855 13:03:34: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     85516:19:23: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    856856 
    857857----------------------------------- 
     
    864864Line: 779 
    865865Stack unwinding: <<beginning of stack>> 
    866 13:03:35: Parsing script EnvMetals.material 
    867 13:03:35: An exception has been thrown! 
     86616:19:24: Parsing script EnvMetals.material 
     86716:19:24: An exception has been thrown! 
    868868 
    869869----------------------------------- 
     
    876876Line: 779 
    877877Stack unwinding: <<beginning of stack>> 
    878 13:03:35: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     87816:19:24: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    879879 
    880880----------------------------------- 
     
    887887Line: 779 
    888888Stack unwinding: <<beginning of stack>> 
    889 13:03:35: An exception has been thrown! 
     88916:19:24: An exception has been thrown! 
    890890 
    891891----------------------------------- 
     
    898898Line: 779 
    899899Stack unwinding: <<beginning of stack>> 
    900 13:03:35: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     90016:19:24: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    901901 
    902902----------------------------------- 
     
    909909Line: 779 
    910910Stack unwinding: <<beginning of stack>> 
    911 13:03:35: An exception has been thrown! 
     91116:19:24: An exception has been thrown! 
    912912 
    913913----------------------------------- 
     
    920920Line: 779 
    921921Stack unwinding: <<beginning of stack>> 
    922 13:03:35: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     92216:19:24: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    923923 
    924924----------------------------------- 
     
    931931Line: 779 
    932932Stack unwinding: <<beginning of stack>> 
    933 13:03:35: An exception has been thrown! 
     93316:19:24: An exception has been thrown! 
    934934 
    935935----------------------------------- 
     
    942942Line: 779 
    943943Stack unwinding: <<beginning of stack>> 
    944 13:03:35: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     94416:19:24: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    945945 
    946946----------------------------------- 
     
    953953Line: 779 
    954954Stack unwinding: <<beginning of stack>> 
    955 13:03:35: Parsing script GameTools.material 
    956 13:03:35: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    957 13:03:35: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    958 13:03:35: An exception has been thrown! 
     95516:19:24: Parsing script GameTools.material 
     95616:19:24: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     95716:19:24: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     95816:19:24: An exception has been thrown! 
    959959 
    960960----------------------------------- 
     
    967967Line: 779 
    968968Stack unwinding: <<beginning of stack>> 
    969 13:03:35: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     96916:19:24: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    970970 
    971971----------------------------------- 
     
    978978Line: 779 
    979979Stack unwinding: <<beginning of stack>> 
    980 13:03:35: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    981 13:03:35: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    982 13:03:35: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    983 13:03:35: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
    984 13:03:35: Parsing script GameTools_HPS.material 
    985 13:03:35: An exception has been thrown! 
     98016:19:24: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     98116:19:24: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     98216:19:24: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     98316:19:24: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
     98416:19:24: Parsing script GameTools_HPS.material 
     98516:19:24: An exception has been thrown! 
    986986 
    987987----------------------------------- 
     
    994994Line: 779 
    995995Stack unwinding: <<beginning of stack>> 
    996 13:03:35: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     99616:19:24: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    997997 
    998998----------------------------------- 
     
    10051005Line: 779 
    10061006Stack unwinding: <<beginning of stack>> 
    1007 13:03:35: An exception has been thrown! 
     100716:19:24: An exception has been thrown! 
    10081008 
    10091009----------------------------------- 
     
    10161016Line: 779 
    10171017Stack unwinding: <<beginning of stack>> 
    1018 13:03:35: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     101816:19:24: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10191019 
    10201020----------------------------------- 
     
    10271027Line: 779 
    10281028Stack unwinding: <<beginning of stack>> 
    1029 13:03:35: An exception has been thrown! 
     102916:19:24: An exception has been thrown! 
    10301030 
    10311031----------------------------------- 
     
    10381038Line: 779 
    10391039Stack unwinding: <<beginning of stack>> 
    1040 13:03:35: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     104016:19:24: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10411041 
    10421042----------------------------------- 
     
    10491049Line: 779 
    10501050Stack unwinding: <<beginning of stack>> 
    1051 13:03:35: An exception has been thrown! 
     105116:19:24: An exception has been thrown! 
    10521052 
    10531053----------------------------------- 
     
    10601060Line: 779 
    10611061Stack unwinding: <<beginning of stack>> 
    1062 13:03:35: Error in material HPS_SMOKE_L_Depth at line 144 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     106216:19:24: Error in material HPS_SMOKE_L_Depth at line 144 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10631063 
    10641064----------------------------------- 
     
    10711071Line: 779 
    10721072Stack unwinding: <<beginning of stack>> 
    1073 13:03:35: An exception has been thrown! 
     107316:19:24: An exception has been thrown! 
    10741074 
    10751075----------------------------------- 
     
    10821082Line: 779 
    10831083Stack unwinding: <<beginning of stack>> 
    1084 13:03:35: Error in material HPS_SMOKE_L_Depth at line 146 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     108416:19:24: Error in material HPS_SMOKE_L_Depth at line 146 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10851085 
    10861086----------------------------------- 
     
    10931093Line: 779 
    10941094Stack unwinding: <<beginning of stack>> 
    1095 13:03:35: An exception has been thrown! 
     109516:19:24: An exception has been thrown! 
    10961096 
    10971097----------------------------------- 
     
    11041104Line: 779 
    11051105Stack unwinding: <<beginning of stack>> 
    1106 13:03:35: Error in material HPS_SMOKE_L_Depth at line 148 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     110616:19:24: Error in material HPS_SMOKE_L_Depth at line 148 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11071107 
    11081108----------------------------------- 
     
    11151115Line: 779 
    11161116Stack unwinding: <<beginning of stack>> 
    1117 13:03:35: An exception has been thrown! 
     111716:19:24: An exception has been thrown! 
    11181118 
    11191119----------------------------------- 
     
    11261126Line: 779 
    11271127Stack unwinding: <<beginning of stack>> 
    1128 13:03:35: Error in material HPS_SMOKE_L_Depth at line 149 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     112816:19:24: Error in material HPS_SMOKE_L_Depth at line 149 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11291129 
    11301130----------------------------------- 
     
    11371137Line: 779 
    11381138Stack unwinding: <<beginning of stack>> 
    1139 13:03:35: An exception has been thrown! 
     113916:19:24: An exception has been thrown! 
    11401140 
    11411141----------------------------------- 
     
    11481148Line: 779 
    11491149Stack unwinding: <<beginning of stack>> 
    1150 13:03:35: Error in material HPS_SMOKE_L_Depth at line 153 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     115016:19:24: Error in material HPS_SMOKE_L_Depth at line 153 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11511151 
    11521152----------------------------------- 
     
    11591159Line: 779 
    11601160Stack unwinding: <<beginning of stack>> 
    1161 13:03:35: An exception has been thrown! 
     116116:19:24: An exception has been thrown! 
    11621162 
    11631163----------------------------------- 
     
    11701170Line: 779 
    11711171Stack unwinding: <<beginning of stack>> 
    1172 13:03:35: Error in material HPS_SMOKE_L_Depth_Illum at line 222 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     117216:19:24: Error in material HPS_SMOKE_L_Depth_Illum at line 222 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11731173 
    11741174----------------------------------- 
     
    11811181Line: 779 
    11821182Stack unwinding: <<beginning of stack>> 
    1183 13:03:35: An exception has been thrown! 
     118316:19:24: An exception has been thrown! 
    11841184 
    11851185----------------------------------- 
     
    11921192Line: 779 
    11931193Stack unwinding: <<beginning of stack>> 
    1194 13:03:35: Error in material HPS_SMOKE_L_Depth_Illum at line 231 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     119416:19:24: Error in material HPS_SMOKE_L_Depth_Illum at line 231 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11951195 
    11961196----------------------------------- 
     
    12031203Line: 779 
    12041204Stack unwinding: <<beginning of stack>> 
    1205 13:03:35: An exception has been thrown! 
     120516:19:24: An exception has been thrown! 
    12061206 
    12071207----------------------------------- 
     
    12141214Line: 779 
    12151215Stack unwinding: <<beginning of stack>> 
    1216 13:03:35: Error in material HPS_SMOKE_L_Depth_Illum at line 232 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     121616:19:24: Error in material HPS_SMOKE_L_Depth_Illum at line 232 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12171217 
    12181218----------------------------------- 
     
    12251225Line: 779 
    12261226Stack unwinding: <<beginning of stack>> 
    1227 13:03:35: An exception has been thrown! 
     122716:19:24: An exception has been thrown! 
    12281228 
    12291229----------------------------------- 
     
    12361236Line: 779 
    12371237Stack unwinding: <<beginning of stack>> 
    1238 13:03:35: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     123816:19:24: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12391239 
    12401240----------------------------------- 
     
    12471247Line: 779 
    12481248Stack unwinding: <<beginning of stack>> 
    1249 13:03:35: Parsing script GlassHead.material 
    1250 13:03:35: An exception has been thrown! 
     124916:19:24: Parsing script GlassHead.material 
     125016:19:24: An exception has been thrown! 
    12511251 
    12521252----------------------------------- 
     
    12591259Line: 779 
    12601260Stack unwinding: <<beginning of stack>> 
    1261 13:03:35: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     126116:19:24: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12621262 
    12631263----------------------------------- 
     
    12701270Line: 779 
    12711271Stack unwinding: <<beginning of stack>> 
    1272 13:03:35: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    1273 13:03:35: An exception has been thrown! 
     127216:19:24: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     127316:19:24: An exception has been thrown! 
    12741274 
    12751275----------------------------------- 
     
    12821282Line: 779 
    12831283Stack unwinding: <<beginning of stack>> 
    1284 13:03:35: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     128416:19:24: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12851285 
    12861286----------------------------------- 
     
    12931293Line: 779 
    12941294Stack unwinding: <<beginning of stack>> 
    1295 13:03:35: An exception has been thrown! 
     129516:19:24: An exception has been thrown! 
    12961296 
    12971297----------------------------------- 
     
    13041304Line: 779 
    13051305Stack unwinding: <<beginning of stack>> 
    1306 13:03:35: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     130616:19:24: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13071307 
    13081308----------------------------------- 
     
    13151315Line: 779 
    13161316Stack unwinding: <<beginning of stack>> 
    1317 13:03:35: An exception has been thrown! 
     131716:19:24: An exception has been thrown! 
    13181318 
    13191319----------------------------------- 
     
    13261326Line: 779 
    13271327Stack unwinding: <<beginning of stack>> 
    1328 13:03:35: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     132816:19:24: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13291329 
    13301330----------------------------------- 
     
    13371337Line: 779 
    13381338Stack unwinding: <<beginning of stack>> 
    1339 13:03:35: Parsing script Glow.material 
    1340 13:03:35: An exception has been thrown! 
     133916:19:24: Parsing script Glow.material 
     134016:19:24: An exception has been thrown! 
    13411341 
    13421342----------------------------------- 
     
    13491349Line: 779 
    13501350Stack unwinding: <<beginning of stack>> 
    1351 13:03:35: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     135116:19:24: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    13521352 
    13531353----------------------------------- 
     
    13601360Line: 779 
    13611361Stack unwinding: <<beginning of stack>> 
    1362 13:03:35: Parsing script hangar.material 
    1363 13:03:35: Parsing script kupola.material 
    1364 13:03:35: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1365 13:03:35: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1366 13:03:35: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1367 13:03:35: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1368 13:03:35: Parsing script MetalTeapot.material 
    1369 13:03:35: An exception has been thrown! 
     136216:19:24: Parsing script hangar.material 
     136316:19:24: Parsing script kupola.material 
     136416:19:24: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     136516:19:24: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     136616:19:24: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     136716:19:24: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     136816:19:24: Parsing script MetalTeapot.material 
     136916:19:24: An exception has been thrown! 
    13701370 
    13711371----------------------------------- 
     
    13781378Line: 779 
    13791379Stack unwinding: <<beginning of stack>> 
    1380 13:03:35: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     138016:19:24: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    13811381 
    13821382----------------------------------- 
     
    13891389Line: 779 
    13901390Stack unwinding: <<beginning of stack>> 
    1391 13:03:35: An exception has been thrown! 
     139116:19:24: An exception has been thrown! 
    13921392 
    13931393----------------------------------- 
     
    14001400Line: 779 
    14011401Stack unwinding: <<beginning of stack>> 
    1402 13:03:35: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     140216:19:24: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    14031403 
    14041404----------------------------------- 
     
    14111411Line: 779 
    14121412Stack unwinding: <<beginning of stack>> 
    1413 13:03:35: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'min' 
    1414 13:03:35: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Bad scene_blend_alpha attribute, unrecognised parameter 'max' 
    1415 13:03:35: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'min' 
    1416 13:03:35: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Bad scene_blend_alpha attribute, unrecognised parameter 'max' 
    1417 13:04:00: An exception has been thrown! 
     141316:19:24: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
     141416:19:24: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 
     141516:19:24: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
     141616:19:24: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 
     141716:19:36: An exception has been thrown! 
    14181418 
    14191419----------------------------------- 
     
    14261426Line: 779 
    14271427Stack unwinding: <<beginning of stack>> 
    1428 13:04:00: Error in material MetalTeapotMultipleBounce at line 277 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     142816:19:36: Error in material MetalTeapotMultipleBounce at line 254 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    14291429 
    14301430----------------------------------- 
     
    14371437Line: 779 
    14381438Stack unwinding: <<beginning of stack>> 
    1439 13:04:00: Parsing script Ogre.material 
    1440 13:04:00: Parsing script Particles.material 
    1441 13:04:00: An exception has been thrown! 
     143916:19:36: An exception has been thrown! 
     1440 
     1441----------------------------------- 
     1442Details: 
     1443----------------------------------- 
     1444Error #: 7 
     1445Function: GpuProgramParameters::getParamIndex 
     1446Description: Cannot find a parameter named refIndex.  
     1447File: ..\src\OgreGpuProgram.cpp 
     1448Line: 779 
     1449Stack unwinding: <<beginning of stack>> 
     145016:19:36: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     1451 
     1452----------------------------------- 
     1453Details: 
     1454----------------------------------- 
     1455Error #: 7 
     1456Function: GpuProgramParameters::getParamIndex 
     1457Description: Cannot find a parameter named refIndex.  
     1458File: ..\src\OgreGpuProgram.cpp 
     1459Line: 779 
     1460Stack unwinding: <<beginning of stack>> 
     146116:19:36: Parsing script Ogre.material 
     146216:19:36: Parsing script Particles.material 
     146316:19:36: An exception has been thrown! 
    14421464 
    14431465----------------------------------- 
     
    14501472Line: 779 
    14511473Stack unwinding: <<beginning of stack>> 
    1452 13:04:00: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     147416:19:36: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14531475 
    14541476----------------------------------- 
     
    14611483Line: 779 
    14621484Stack unwinding: <<beginning of stack>> 
    1463 13:04:00: An exception has been thrown! 
     148516:19:36: An exception has been thrown! 
    14641486 
    14651487----------------------------------- 
     
    14721494Line: 779 
    14731495Stack unwinding: <<beginning of stack>> 
    1474 13:04:00: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     149616:19:36: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14751497 
    14761498----------------------------------- 
     
    14831505Line: 779 
    14841506Stack unwinding: <<beginning of stack>> 
    1485 13:04:00: Parsing script RaytraceDemo.material 
    1486 13:04:00: Parsing script stairs.material 
    1487 13:04:00: Parsing script terito.material 
    1488 13:04:00: Parsing script uvegfolyoso2.material 
    1489 13:04:00: An exception has been thrown! 
     150716:19:36: Parsing script RaytraceDemo.material 
     150816:19:36: Parsing script stairs.material 
     150916:19:36: Parsing script terito.material 
     151016:19:36: Parsing script uvegfolyoso2.material 
     151116:19:36: An exception has been thrown! 
    14901512 
    14911513----------------------------------- 
     
    14981520Line: 779 
    14991521Stack unwinding: <<beginning of stack>> 
    1500 13:04:00: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     152216:19:36: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15011523 
    15021524----------------------------------- 
     
    15091531Line: 779 
    15101532Stack unwinding: <<beginning of stack>> 
    1511 13:04:00: An exception has been thrown! 
     153316:19:36: An exception has been thrown! 
    15121534 
    15131535----------------------------------- 
     
    15201542Line: 779 
    15211543Stack unwinding: <<beginning of stack>> 
    1522 13:04:00: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     154416:19:36: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15231545 
    15241546----------------------------------- 
     
    15311553Line: 779 
    15321554Stack unwinding: <<beginning of stack>> 
    1533 13:04:00: An exception has been thrown! 
     155516:19:36: An exception has been thrown! 
    15341556 
    15351557----------------------------------- 
     
    15421564Line: 779 
    15431565Stack unwinding: <<beginning of stack>> 
    1544 13:04:00: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     156616:19:36: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15451567 
    15461568----------------------------------- 
     
    15531575Line: 779 
    15541576Stack unwinding: <<beginning of stack>> 
    1555 13:04:00: An exception has been thrown! 
     157716:19:36: An exception has been thrown! 
    15561578 
    15571579----------------------------------- 
     
    15641586Line: 779 
    15651587Stack unwinding: <<beginning of stack>> 
    1566 13:04:00: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     158816:19:36: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15671589 
    15681590----------------------------------- 
     
    15751597Line: 779 
    15761598Stack unwinding: <<beginning of stack>> 
    1577 13:04:00: An exception has been thrown! 
     159916:19:36: An exception has been thrown! 
    15781600 
    15791601----------------------------------- 
     
    15861608Line: 779 
    15871609Stack unwinding: <<beginning of stack>> 
    1588 13:04:00: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     161016:19:36: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15891611 
    15901612----------------------------------- 
     
    15971619Line: 779 
    15981620Stack unwinding: <<beginning of stack>> 
    1599 13:04:00: An exception has been thrown! 
     162116:19:36: An exception has been thrown! 
    16001622 
    16011623----------------------------------- 
     
    16081630Line: 779 
    16091631Stack unwinding: <<beginning of stack>> 
    1610 13:04:00: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     163216:19:36: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16111633 
    16121634----------------------------------- 
     
    16191641Line: 779 
    16201642Stack unwinding: <<beginning of stack>> 
    1621 13:04:00: An exception has been thrown! 
     164316:19:36: An exception has been thrown! 
    16221644 
    16231645----------------------------------- 
     
    16301652Line: 779 
    16311653Stack unwinding: <<beginning of stack>> 
    1632 13:04:00: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     165416:19:36: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16331655 
    16341656----------------------------------- 
     
    16411663Line: 779 
    16421664Stack unwinding: <<beginning of stack>> 
    1643 13:04:00: An exception has been thrown! 
     166516:19:36: An exception has been thrown! 
    16441666 
    16451667----------------------------------- 
     
    16521674Line: 779 
    16531675Stack unwinding: <<beginning of stack>> 
    1654 13:04:00: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     167616:19:36: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16551677 
    16561678----------------------------------- 
     
    16631685Line: 779 
    16641686Stack unwinding: <<beginning of stack>> 
    1665 13:04:00: An exception has been thrown! 
     168716:19:36: An exception has been thrown! 
    16661688 
    16671689----------------------------------- 
     
    16741696Line: 779 
    16751697Stack unwinding: <<beginning of stack>> 
    1676 13:04:00: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     169816:19:36: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16771699 
    16781700----------------------------------- 
     
    16851707Line: 779 
    16861708Stack unwinding: <<beginning of stack>> 
    1687 13:04:00: An exception has been thrown! 
     170916:19:36: An exception has been thrown! 
    16881710 
    16891711----------------------------------- 
     
    16961718Line: 779 
    16971719Stack unwinding: <<beginning of stack>> 
    1698 13:04:00: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     172016:19:36: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16991721 
    17001722----------------------------------- 
     
    17071729Line: 779 
    17081730Stack unwinding: <<beginning of stack>> 
    1709 13:04:00: An exception has been thrown! 
     173116:19:36: An exception has been thrown! 
    17101732 
    17111733----------------------------------- 
     
    17181740Line: 779 
    17191741Stack unwinding: <<beginning of stack>> 
    1720 13:04:00: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     174216:19:36: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17211743 
    17221744----------------------------------- 
     
    17291751Line: 779 
    17301752Stack unwinding: <<beginning of stack>> 
    1731 13:04:00: An exception has been thrown! 
     175316:19:36: An exception has been thrown! 
    17321754 
    17331755----------------------------------- 
     
    17401762Line: 779 
    17411763Stack unwinding: <<beginning of stack>> 
    1742 13:04:00: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     176416:19:36: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17431765 
    17441766----------------------------------- 
     
    17511773Line: 779 
    17521774Stack unwinding: <<beginning of stack>> 
    1753 13:04:00: An exception has been thrown! 
     177516:19:36: An exception has been thrown! 
    17541776 
    17551777----------------------------------- 
     
    17621784Line: 779 
    17631785Stack unwinding: <<beginning of stack>> 
    1764 13:04:00: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     178616:19:36: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17651787 
    17661788----------------------------------- 
     
    17731795Line: 779 
    17741796Stack unwinding: <<beginning of stack>> 
    1775 13:04:00: An exception has been thrown! 
     179716:19:36: An exception has been thrown! 
    17761798 
    17771799----------------------------------- 
     
    17841806Line: 779 
    17851807Stack unwinding: <<beginning of stack>> 
    1786 13:04:00: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     180816:19:36: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17871809 
    17881810----------------------------------- 
     
    17951817Line: 779 
    17961818Stack unwinding: <<beginning of stack>> 
    1797 13:04:00: An exception has been thrown! 
     181916:19:36: An exception has been thrown! 
    17981820 
    17991821----------------------------------- 
     
    18061828Line: 779 
    18071829Stack unwinding: <<beginning of stack>> 
    1808 13:04:00: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     183016:19:36: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18091831 
    18101832----------------------------------- 
     
    18171839Line: 779 
    18181840Stack unwinding: <<beginning of stack>> 
    1819 13:04:00: An exception has been thrown! 
     184116:19:36: An exception has been thrown! 
    18201842 
    18211843----------------------------------- 
     
    18281850Line: 779 
    18291851Stack unwinding: <<beginning of stack>> 
    1830 13:04:00: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     185216:19:36: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18311853 
    18321854----------------------------------- 
     
    18391861Line: 779 
    18401862Stack unwinding: <<beginning of stack>> 
    1841 13:04:00: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1842 13:04:00: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1843 13:04:00: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1844 13:04:00: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1845 13:04:00: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1846 13:04:00: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1847 13:04:00: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1848 13:04:00: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1849 13:04:00: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1850 13:04:00: Parsing script X3D.material 
    1851 13:04:01: Parsing script GameTools_Glow.compositor 
    1852 13:04:01: Parsing script GameTools_ToneMap.compositor 
    1853 13:04:01: Parsing script sample.fontdef 
    1854 13:04:01: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1855 13:04:01: Parsing script GameTools.particle 
    1856 13:04:01: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1857 13:04:01: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1858 13:04:01: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1859 13:04:01: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
    1860 13:04:01: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
    1861 13:04:01: Parsing script Compositor.overlay 
    1862 13:04:01: Parsing script DP3.overlay 
    1863 13:04:01: Parsing script Example-CubeMapping.overlay 
    1864 13:04:01: Parsing script Example-DynTex.overlay 
    1865 13:04:01: Parsing script Example-Water.overlay 
    1866 13:04:01: Parsing script FullScreen.overlay 
    1867 13:04:01: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1868 13:04:01: Parsing script Shadows.overlay 
    1869 13:04:01: Finished parsing scripts for resource group General 
    1870 13:04:01: Parsing scripts for resource group Internal 
    1871 13:04:01: Finished parsing scripts for resource group Internal 
    1872 13:04:01: Mesh: Loading teapot.mesh. 
    1873 13:04:01: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 
    1874 13:04:01: Mesh: Loading difflab.mesh. 
    1875 13:04:01: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1876 13:04:01: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1877 13:04:01: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
    1878 13:04:01: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1879 13:04:01: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1880 13:04:01: Creating viewport on target 'rtt/3276704', 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 
    1881 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1882 13:04:01: Creating viewport on target 'rtt/42649376', 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 
    1883 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1884 13:04:01: Creating viewport on target 'rtt/42649440', 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 
    1885 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1886 13:04:01: Creating viewport on target 'rtt/42649504', 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 
    1887 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1888 13:04:01: Creating viewport on target 'rtt/42649568', 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 
    1889 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1890 13:04:01: Creating viewport on target 'rtt/42649632', 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 
    1891 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1892 13:04: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. 
    1893 13:04:01: Creating viewport on target 'rtt/42650560', 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 
    1894 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1895 13:04:01: Creating viewport on target 'rtt/42650624', 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 
    1896 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1897 13:04:01: Creating viewport on target 'rtt/42650688', 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 
    1898 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1899 13:04:01: Creating viewport on target 'rtt/42650752', 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 
    1900 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1901 13:04:01: Creating viewport on target 'rtt/42650816', 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 
    1902 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1903 13:04:01: Creating viewport on target 'rtt/42650880', 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 
    1904 13:04:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1905 13:04: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. 
    1906 13:04:01: Creating viewport on target 'rtt/42651936', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1907 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1908 13:04:01: Creating viewport on target 'rtt/42652000', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1909 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1910 13:04:01: Creating viewport on target 'rtt/42652064', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1911 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1912 13:04:01: Creating viewport on target 'rtt/42652128', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1913 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1914 13:04:01: Creating viewport on target 'rtt/42652192', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1915 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1916 13:04:01: Creating viewport on target 'rtt/42652256', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1917 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1918 13:04:01: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1919 13:04:01: Creating viewport on target 'rtt/42653280', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1920 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1921 13:04:01: Creating viewport on target 'rtt/42653344', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1922 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1923 13:04:01: Creating viewport on target 'rtt/42653408', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1924 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1925 13:04:01: Creating viewport on target 'rtt/42653472', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1926 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1927 13:04:01: Creating viewport on target 'rtt/42653536', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1928 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1929 13:04:01: Creating viewport on target 'rtt/42653600', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1930 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1931 13:04:01: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1932 13:04:01: Creating viewport on target 'rtt/42654656', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1933 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 
    1934 13:04:01: Creating viewport on target 'rtt/42654720', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1935 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 
    1936 13:04:01: Creating viewport on target 'rtt/42654784', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1937 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 
    1938 13:04:01: Creating viewport on target 'rtt/42654848', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1939 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 
    1940 13:04:01: Creating viewport on target 'rtt/42654912', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1941 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 
    1942 13:04:01: Creating viewport on target 'rtt/42654976', rendering from camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1943 13:04:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_L3CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1 H: 1 
     186316:19:36: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     186416:19:36: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     186516:19:36: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     186616:19:36: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     186716:19:36: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     186816:19:36: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     186916:19:36: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     187016:19:36: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     187116:19:36: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     187216:19:36: Parsing script X3D.material 
     187316:19:36: Parsing script GameTools_Glow.compositor 
     187416:19:36: Parsing script GameTools_ToneMap.compositor 
     187516:19:36: Parsing script sample.fontdef 
     187616:19:36: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     187716:19:36: Parsing script GameTools.particle 
     187816:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     187916:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     188016:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     188116:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
     188216:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
     188316:19:36: Parsing script Compositor.overlay 
     188416:19:36: Parsing script DP3.overlay 
     188516:19:36: Parsing script Example-CubeMapping.overlay 
     188616:19:36: Parsing script Example-DynTex.overlay 
     188716:19:36: Parsing script Example-Water.overlay 
     188816:19:36: Parsing script FullScreen.overlay 
     188916:19:36: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     189016:19:36: Parsing script Shadows.overlay 
     189116:19:36: Finished parsing scripts for resource group General 
     189216:19:36: Parsing scripts for resource group Internal 
     189316:19:36: Finished parsing scripts for resource group Internal 
     189416:19:36: Mesh: Loading teapot.mesh. 
     189516:19:36: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 
     189616:19:36: Mesh: Loading difflab.mesh. 
     189716:19:36: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     189816:19:36: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     189916:19:36: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
     190016:19:36: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     190116:19:36: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     190216:19:36: Creating viewport on target 'rtt/42791616', 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 
     190316:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190416:19:36: Creating viewport on target 'rtt/42791680', 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 
     190516:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190616:19:36: Creating viewport on target 'rtt/42791744', 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 
     190716:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190816:19:36: Creating viewport on target 'rtt/42791808', 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 
     190916:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191016:19:36: Creating viewport on target 'rtt/42791872', 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 
     191116:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191216:19:36: Creating viewport on target 'rtt/42791936', 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 
     191316:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191416:19:36: 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. 
     191516:19:36: Creating viewport on target 'rtt/42792896', 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 
     191616:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191716:19:36: Creating viewport on target 'rtt/42792960', 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 
     191816:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191916:19:36: Creating viewport on target 'rtt/42793024', 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 
     192016:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192116:19:36: Creating viewport on target 'rtt/42793088', 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 
     192216:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192316:19:36: Creating viewport on target 'rtt/42793152', 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 
     192416:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192516:19:36: Creating viewport on target 'rtt/42793216', 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 
     192616:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192716:19:36: 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. 
     192816:19:36: Creating viewport on target 'rtt/42794240', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     192916:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193016:19:36: Creating viewport on target 'rtt/42794304', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193116:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193216:19:36: Creating viewport on target 'rtt/42794368', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193316:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193416:19:36: Creating viewport on target 'rtt/42794432', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193516:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193616:19:36: Creating viewport on target 'rtt/42794496', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193716:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193816:19:36: Creating viewport on target 'rtt/42794560', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     193916:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194016:19:36: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     194116:19:36: Creating viewport on target 'rtt/42795616', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     194216:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194316:19:36: Creating viewport on target 'rtt/42795680', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     194416:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194516:19:36: Creating viewport on target 'rtt/42795744', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     194616:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194716:19:36: Creating viewport on target 'rtt/42795808', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     194816:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194916:19:36: Creating viewport on target 'rtt/42795872', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     195016:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     195116:19:36: Creating viewport on target 'rtt/42795936', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     195216:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     195316:19:36: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     195416:19:36: Win32Input8: DirectInput Activation Starts 
     195516:19:36: Win32Input8: Establishing keyboard input. 
     195616:19:36: Win32Input8: Keyboard input established. 
     195716:19:36: Win32Input8: Initializing mouse input in immediate mode. 
     195816:19:36: Win32Input8: Mouse input in immediate mode initialized. 
     195916:19:36: Win32Input8: DirectInput OK. 
     196016:19:36: Creating viewport on target 'rtt/42648256', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196116:19:36: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     196216:19:36: Creating viewport on target 'rtt/42868288', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196316:19:36: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     196416:19:36: Creating viewport on target 'rtt/42868640', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196516:19:36: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     196616:19:36: Creating viewport on target 'rtt/42868704', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196716:19:36: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     196816:19:36: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     196916:19:36: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAPblurred' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     197016:20:34: Unregistering ResourceManager for type BspLevel 
     197116:20:34: Render Target 'rtt/42868704' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     197216:20:34: Render Target 'rtt/42868640' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     197316:20:34: Render Target 'rtt/42868288' Average FPS: 4.78385 Best FPS: 19.4363 Worst FPS: 0.0806159 
     197416:20:34: Render Target 'rtt/42648256' Average FPS: 4.78385 Best FPS: 19.4175 Worst FPS: 0.0806192 
     197516:20:34: Render Target 'rtt/42795616' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
     197616:20:34: Render Target 'rtt/42795680' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
     197716:20:34: Render Target 'rtt/42795744' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
     197816:20:34: Render Target 'rtt/42795808' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
     197916:20:34: Render Target 'rtt/42795872' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
     198016:20:34: Render Target 'rtt/42795936' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
     198116:20:34: Render Target 'rtt/42794240' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198216:20:34: Render Target 'rtt/42794304' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198316:20:34: Render Target 'rtt/42794368' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198416:20:34: Render Target 'rtt/42794432' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198516:20:34: Render Target 'rtt/42794496' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198616:20:34: Render Target 'rtt/42794560' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198716:20:34: Render Target 'rtt/42792896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198816:20:34: Render Target 'rtt/42792960' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198916:20:34: Render Target 'rtt/42793024' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199016:20:34: Render Target 'rtt/42793088' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199116:20:34: Render Target 'rtt/42793152' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199216:20:34: Render Target 'rtt/42793216' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199316:20:34: Render Target 'rtt/42791616' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199416:20:34: Render Target 'rtt/42791680' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199516:20:34: Render Target 'rtt/42791744' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199616:20:34: Render Target 'rtt/42791808' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199716:20:34: Render Target 'rtt/42791872' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199816:20:34: Render Target 'rtt/42791936' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199916:20:34: *-*-* OGRE Shutdown 
     200016:20:34: Unregistering ResourceManager for type Compositor 
     200116:20:34: Unregistering ResourceManager for type Font 
     200216:20:34: Unregistering ResourceManager for type Skeleton 
     200316:20:34: Unregistering ResourceManager for type Mesh 
     200416:20:34: Unregistering ResourceManager for type HighLevelGpuProgram 
     200516:20:34: Unloading library .\Plugin_CgProgramManager 
     200616:20:34: Unloading library .\Plugin_OctreeSceneManager 
     200716:20:34: Unloading library .\Plugin_BSPSceneManager 
     200816:20:34: Unloading library .\Plugin_ParticleFX 
     200916:20:34: Render Target 'OGRE Render Window' Average FPS: 4.7854 Best FPS: 20.3095 Worst FPS: 0.0402933 
     201016:20:34: D3D9 : Shutting down cleanly. 
     201116:20:34: Unregistering ResourceManager for type Texture 
     201216:20:34: Unregistering ResourceManager for type GpuProgram 
     201316:20:34: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     201416:20:34: Unloading library .\RenderSystem_Direct3D9 
     201516:20:34: Unregistering ResourceManager for type Material 
     201616:20:34: Unloading library OgrePlatform.dll 
Note: See TracChangeset for help on using the changeset viewer.