Changeset 1897


Ignore:
Timestamp:
12/15/06 12:36:42 (17 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum/Ogre
Files:
10 edited

Legend:

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

    r1885 r1897  
    8989 dt = 1.0 / dt; 
    9090   
    91  float t = 0.01;//dt; 
     91 float t = 0.01; 
    9292 if(min > length(x)) 
    9393 { 
     94  
    9495        float a = 1; 
    9596        float b = 2 * dot(R, x); 
     
    9798         
    9899        float dis = b*b - 4*a*c; 
    99         float t1 = (-b + sqrt(dis))/ 2 * a; 
    100         float t2 = (-b - sqrt(dis))/ 2 * a; 
     100        float t1 = (-b + sqrt(dis))/ 2.0 * a; 
     101        float t2 = (-b - sqrt(dis))/ 2.0 * a; 
    101102         
    102103        if(t1 > 0 && (t2 < 0 || t1 < t2)) 
    103          t =  t1 / ( a + t1); 
     104         t =  1.0;//t1 / ( a + t1); 
    104105        else if(t2 > 0) 
    105          t =  t2 / ( a + t2);    
     106         t =  1.0;//t2 / ( a + t2); 
     107         //t = 0.011; 
    106108  } 
    107109  
     
    173175           samplerCUBE mp3Color, 
    174176           samplerCUBE mp3Dist, 
     177           float min, 
    175178           float min1, 
    176179                   float min2,              
     
    192195 if(!valid1 && ! valid2) 
    193196 { 
    194     linearSearch(x, R, N, mp3Dist, 0, p, dl, dp, llp, ppp); 
     197    linearSearch(x, R, N, mp3Dist, min, p, dl, dp, llp, ppp); 
    195198    Il.a = 1;  
    196199    secantSearch(x, R, mp3Dist, dl, dp, llp, ppp, p); 
     
    252255                                                        uniform float3 lastCenter, 
    253256                                                        uniform float refIndex, 
     257                                                        float min, 
    254258                                                        float min1, 
    255259                                                        float min2 
     
    276280 float3 Nl; 
    277281 float4 Il; 
    278  float3 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 
     282 float3 l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min, min1, min2, Il, Nl); 
    279283 if(Il.a == 0) 
    280284  Il = readCubeMap(CubeMap, l); 
     
    293297                                                        uniform float3 lastCenter, 
    294298                                                        uniform float refIndex, 
     299                                                        float min, 
    295300                                                        float min1, 
    296301                                                        float min2) 
     
    318323           float3 Nl; 
    319324           float4 Il; 
    320            l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 
     325           l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min, min1, min2, Il, Nl); 
    321326           if(Il.a == 0) 
    322327           { 
     
    333338            
    334339        } 
    335         if(I.a == 0) 
    336            I = readCubeMap(CubeMap, l); 
     340/*      if(I.a == 0) 
     341           I = readCubeMap(CubeMap, l);*/ 
    337342        Irefl = I; 
    338343         
     
    363368                   float3 Nl; 
    364369                   float4 Il; 
    365                    l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min1, min2, Il, Nl); 
     370                   l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, min, min1, min2, Il, Nl); 
    366371                   if(Il.a == 0) 
    367372                   { 
     
    396401                                                        uniform float SingleBounce, 
    397402                                                        uniform float refIndex, 
     403                                                        uniform float4 min, 
    398404                                                        uniform float4 min1, 
    399405                                                        uniform float4 min2 
    400406                                                        ):COLOR 
    401407{ 
    402     min1.x = 1.0 / min1.x; 
    403     min2.x = 1.0 / min2.x; 
     408   // min1.x = 1.0 / min1.x; 
     409   // min2.x = 1.0 / min2.x; 
    404410        float4 Color = 1.0; 
    405411        if(SingleBounce == 1) 
    406          Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min1.x, min2.x); 
     412         Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min.w, min1.w, min2.w); 
    407413        else 
    408          Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min1.x, min2.x); 
     414         Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex, min.w, min1.w, min2.w); 
    409415          
    410416        return Color; 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/MetalTeapot.material

    r1885 r1897  
    204204                                resolution 1024 
    205205                                update_interval         0 
     206                                get_minmax true 
     207                                min_var_name min 
    206208                                distance_calc false 
    207209                                face_angle_calc false 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log

    r1885 r1897  
    1 15:08:26: Creating resource group General 
    2 15:08:26: Creating resource group Internal 
    3 15:08:26: Creating resource group Autodetect 
    4 15:08:26: Registering ResourceManager for type Material 
    5 15:08:26: Registering ResourceManager for type Mesh 
    6 15:08:26: Registering ResourceManager for type Skeleton 
    7 15:08:26: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 15:08:26: Loading library OgrePlatform_d.dll 
    9 15:08:26: OverlayElementFactory for type Panel registered. 
    10 15:08:26: OverlayElementFactory for type BorderPanel registered. 
    11 15:08:26: OverlayElementFactory for type TextArea registered. 
    12 15:08:26: Registering ResourceManager for type Font 
    13 15:08:26: ArchiveFactory for archive type FileSystem registered. 
    14 15:08:26: ArchiveFactory for archive type Zip registered. 
    15 15:08:26: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 15: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  
    17 15:08:26: Registering ResourceManager for type HighLevelGpuProgram 
    18 15:08:26: Registering ResourceManager for type Compositor 
    19 15:08:26: MovableObjectFactory for type 'Entity' registered. 
    20 15:08:26: MovableObjectFactory for type 'Light' registered. 
    21 15:08:26: MovableObjectFactory for type 'BillboardSet' registered. 
    22 15:08:26: MovableObjectFactory for type 'ManualObject' registered. 
    23 15:08:26: MovableObjectFactory for type 'BillboardChain' registered. 
    24 15:08:26: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 15:08:26: Loading library .\RenderSystem_Direct3D9 
    26 15:08:26: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 15:08:26: D3D9: Driver Detection Starts 
    28 15:08:26: D3D9: Driver Detection Ends 
    29 15:08:26: Loading library .\Plugin_ParticleFX 
    30 15:08:26: Particle Emitter Type 'Point' registered 
    31 15:08:26: Particle Emitter Type 'Box' registered 
    32 15:08:26: Particle Emitter Type 'Ellipsoid' registered 
    33 15:08:26: Particle Emitter Type 'Cylinder' registered 
    34 15:08:26: Particle Emitter Type 'Ring' registered 
    35 15:08:26: Particle Emitter Type 'HollowEllipsoid' registered 
    36 15:08:26: Particle Affector Type 'LinearForce' registered 
    37 15:08:26: Particle Affector Type 'ColourFader' registered 
    38 15:08:26: Particle Affector Type 'ColourFader2' registered 
    39 15:08:26: Particle Affector Type 'ColourImage' registered 
    40 15:08:26: Particle Affector Type 'ColourInterpolator' registered 
    41 15:08:26: Particle Affector Type 'Scaler' registered 
    42 15:08:26: Particle Affector Type 'Rotator' registered 
    43 15:08:26: Particle Affector Type 'DirectionRandomiser' registered 
    44 15:08:26: Particle Affector Type 'DeflectorPlane' registered 
    45 15:08:26: Loading library .\Plugin_BSPSceneManager 
    46 15:08:26: Registering ResourceManager for type BspLevel 
    47 15:08:26: Loading library .\Plugin_OctreeSceneManager 
    48 15:08:26: Loading library .\Plugin_CgProgramManager 
    49 15:08:26: *-*-* OGRE Initialising 
    50 15:08:26: *-*-* Version 1.2.0 (Dagon) 
    51 15:08:26: Creating resource group Bootstrap 
    52 15:08:26: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 15:08:26: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 15:08:26: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 15:08:26: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 15:08:26: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 15:08:26: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 15:08:26: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 15:08:26: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 15:08:26: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 15:08:26: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 15:08:26: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 15:08:26: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 15:08:26: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 15:08:26: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 15:08:26: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 15:08:26: D3D9 : RenderSystem Option: Full Screen = No 
    68 15:08:26: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    69 15:08:26: D3D9 : RenderSystem Option: VSync = No 
    70 15:08:26: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 15:08:26: D3D9 : Subsystem Initialising 
    72 15:08:26: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 15:08:26: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 15: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. 
    75 15:08:26: Registering ResourceManager for type Texture 
    76 15:08:26: Registering ResourceManager for type GpuProgram 
    77 15:08:26: RenderSystem capabilities 
    78 15:08:26: ------------------------- 
    79 15:08:26:  * Hardware generation of mipmaps: yes 
    80 15:08:26:  * Texture blending: yes 
    81 15:08:26:  * Anisotropic texture filtering: yes 
    82 15:08:26:  * Dot product texture operation: yes 
    83 15:08:26:  * Cube mapping: yes 
    84 15:08:26:  * Hardware stencil buffer: yes 
    85 15:08:26:    - Stencil depth: 8 
    86 15:08:26:    - Two sided stencil support: yes 
    87 15:08:26:    - Wrap stencil values: yes 
    88 15:08:26:  * Hardware vertex / index buffers: yes 
    89 15:08:26:  * Vertex programs: yes 
    90 15:08:26:    - Max vertex program version: vs_3_0 
    91 15:08:26:  * Fragment programs: yes 
    92 15:08:26:    - Max fragment program version: ps_3_0 
    93 15:08:26:  * Texture Compression: yes 
    94 15:08:26:    - DXT: yes 
    95 15:08:26:    - VTC: no 
    96 15:08:26:  * Scissor Rectangle: yes 
    97 15:08:26:  * Hardware Occlusion Query: yes 
    98 15:08:26:  * User clip planes: yes 
    99 15:08:26:  * VET_UBYTE4 vertex element type: yes 
    100 15:08:26:  * Infinite far plane projection: yes 
    101 15:08:26:  * Hardware render-to-texture: yes 
    102 15:08:26:  * Floating point textures: yes 
    103 15:08:26:  * Non-power-of-two textures: yes 
    104 15:08:26:  * Volume textures: yes 
    105 15:08:26:  * Multiple Render Targets: 4 
    106 15:08:26:  * Max Point Size: 8192 
    107 15:08:26: *************************************** 
    108 15:08:26: *** D3D9 : Subsystem Initialised OK *** 
    109 15:08:26: *************************************** 
    110 15:08:26: ResourceBackgroundQueue - threading disabled 
    111 15:08:26: Particle Renderer Type 'billboard' registered 
    112 15:08:26: Particle Renderer Type 'sprite' registered 
    113 15: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 
    114 15:08:26: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 15:08:26: Parsing scripts for resource group Autodetect 
    116 15:08:26: Finished parsing scripts for resource group Autodetect 
    117 15:08:26: Parsing scripts for resource group Bootstrap 
    118 15:08:26: Parsing script OgreCore.material 
    119 15:08:26: Parsing script OgreProfiler.material 
    120 15:08:26: Parsing script Ogre.fontdef 
    121 15:08:26: Parsing script OgreDebugPanel.overlay 
    122 15: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. 
    123 15: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. 
    124 15: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. 
    125 15:08:27: Font TrebuchetMSBoldusing texture size 512x512 
    126 15:08:27: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 15:08:27: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 15:08:27: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 15:08:27: Parsing script OgreLoadingPanel.overlay 
    130 15:08:27: Finished parsing scripts for resource group Bootstrap 
    131 15:08:27: Parsing scripts for resource group General 
    132 15:08:27: Parsing script GameTools.program 
    133 15:08:27: Parsing script atlascube.material 
    134 15:08:27: Parsing script colorcube.material 
    135 15:08:27: Parsing script difflab.material 
    136 15:08:27: An exception has been thrown! 
     109:55:02: Creating resource group General 
     209:55:02: Creating resource group Internal 
     309:55:02: Creating resource group Autodetect 
     409:55:02: Registering ResourceManager for type Material 
     509:55:02: Registering ResourceManager for type Mesh 
     609:55:02: Registering ResourceManager for type Skeleton 
     709:55:02: MovableObjectFactory for type 'ParticleSystem' registered. 
     809:55:02: Loading library OgrePlatform_d.dll 
     909:55:02: OverlayElementFactory for type Panel registered. 
     1009:55:02: OverlayElementFactory for type BorderPanel registered. 
     1109:55:02: OverlayElementFactory for type TextArea registered. 
     1209:55:02: Registering ResourceManager for type Font 
     1309:55:02: ArchiveFactory for archive type FileSystem registered. 
     1409:55:02: ArchiveFactory for archive type Zip registered. 
     1509:55:02: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1609:55:02: 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  
     1709:55:02: Registering ResourceManager for type HighLevelGpuProgram 
     1809:55:02: Registering ResourceManager for type Compositor 
     1909:55:02: MovableObjectFactory for type 'Entity' registered. 
     2009:55:02: MovableObjectFactory for type 'Light' registered. 
     2109:55:02: MovableObjectFactory for type 'BillboardSet' registered. 
     2209:55:02: MovableObjectFactory for type 'ManualObject' registered. 
     2309:55:02: MovableObjectFactory for type 'BillboardChain' registered. 
     2409:55:02: MovableObjectFactory for type 'RibbonTrail' registered. 
     2509:55:02: Loading library .\RenderSystem_Direct3D9 
     2609:55:02: D3D9 : Direct3D9 Rendering Subsystem created. 
     2709:55:02: D3D9: Driver Detection Starts 
     2809:55:02: D3D9: Driver Detection Ends 
     2909:55:02: Loading library .\Plugin_ParticleFX 
     3009:55:02: Particle Emitter Type 'Point' registered 
     3109:55:02: Particle Emitter Type 'Box' registered 
     3209:55:02: Particle Emitter Type 'Ellipsoid' registered 
     3309:55:02: Particle Emitter Type 'Cylinder' registered 
     3409:55:02: Particle Emitter Type 'Ring' registered 
     3509:55:02: Particle Emitter Type 'HollowEllipsoid' registered 
     3609:55:02: Particle Affector Type 'LinearForce' registered 
     3709:55:02: Particle Affector Type 'ColourFader' registered 
     3809:55:02: Particle Affector Type 'ColourFader2' registered 
     3909:55:02: Particle Affector Type 'ColourImage' registered 
     4009:55:02: Particle Affector Type 'ColourInterpolator' registered 
     4109:55:02: Particle Affector Type 'Scaler' registered 
     4209:55:02: Particle Affector Type 'Rotator' registered 
     4309:55:02: Particle Affector Type 'DirectionRandomiser' registered 
     4409:55:02: Particle Affector Type 'DeflectorPlane' registered 
     4509:55:02: Loading library .\Plugin_BSPSceneManager 
     4609:55:02: Registering ResourceManager for type BspLevel 
     4709:55:02: Loading library .\Plugin_OctreeSceneManager 
     4809:55:02: Loading library .\Plugin_CgProgramManager 
     4909:55:02: *-*-* OGRE Initialising 
     5009:55:02: *-*-* Version 1.2.0 (Dagon) 
     5109:55:02: Creating resource group Bootstrap 
     5209:55:02: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5309:55:02: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5409:55:02: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5509:55:02: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5609:55:02: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5709:55:02: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5809:55:02: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5909:55:02: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6009:55:02: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6109:55:02: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6209:55:02: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6309:55:02: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6409:55:02: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6509:55:02: D3D9 : RenderSystem Option: Anti aliasing = None 
     6609:55:02: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6709:55:02: D3D9 : RenderSystem Option: Full Screen = No 
     6809:55:02: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     6909:55:02: D3D9 : RenderSystem Option: VSync = No 
     7009:55:02: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7109:55:03: D3D9 : Subsystem Initialising 
     7209:55:03: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7309:55:03: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7409:55:03: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7509:55:03: Registering ResourceManager for type Texture 
     7609:55:03: Registering ResourceManager for type GpuProgram 
     7709:55:03: RenderSystem capabilities 
     7809:55:03: ------------------------- 
     7909:55:03:  * Hardware generation of mipmaps: yes 
     8009:55:03:  * Texture blending: yes 
     8109:55:03:  * Anisotropic texture filtering: yes 
     8209:55:03:  * Dot product texture operation: yes 
     8309:55:03:  * Cube mapping: yes 
     8409:55:03:  * Hardware stencil buffer: yes 
     8509:55:03:    - Stencil depth: 8 
     8609:55:03:    - Two sided stencil support: yes 
     8709:55:03:    - Wrap stencil values: yes 
     8809:55:03:  * Hardware vertex / index buffers: yes 
     8909:55:03:  * Vertex programs: yes 
     9009:55:03:    - Max vertex program version: vs_3_0 
     9109:55:03:  * Fragment programs: yes 
     9209:55:03:    - Max fragment program version: ps_3_0 
     9309:55:03:  * Texture Compression: yes 
     9409:55:03:    - DXT: yes 
     9509:55:03:    - VTC: no 
     9609:55:03:  * Scissor Rectangle: yes 
     9709:55:03:  * Hardware Occlusion Query: yes 
     9809:55:03:  * User clip planes: yes 
     9909:55:03:  * VET_UBYTE4 vertex element type: yes 
     10009:55:03:  * Infinite far plane projection: yes 
     10109:55:03:  * Hardware render-to-texture: yes 
     10209:55:03:  * Floating point textures: yes 
     10309:55:03:  * Non-power-of-two textures: yes 
     10409:55:03:  * Volume textures: yes 
     10509:55:03:  * Multiple Render Targets: 4 
     10609:55:03:  * Max Point Size: 8192 
     10709:55:03: *************************************** 
     10809:55:03: *** D3D9 : Subsystem Initialised OK *** 
     10909:55:03: *************************************** 
     11009:55:03: ResourceBackgroundQueue - threading disabled 
     11109:55:03: Particle Renderer Type 'billboard' registered 
     11209:55:03: Particle Renderer Type 'sprite' registered 
     11309:55:03: 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 
     11409:55:03: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11509:55:03: Parsing scripts for resource group Autodetect 
     11609:55:03: Finished parsing scripts for resource group Autodetect 
     11709:55:03: Parsing scripts for resource group Bootstrap 
     11809:55:03: Parsing script OgreCore.material 
     11909:55:03: Parsing script OgreProfiler.material 
     12009:55:03: Parsing script Ogre.fontdef 
     12109:55:03: Parsing script OgreDebugPanel.overlay 
     12209:55:03: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12309:55:03: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12409:55:03: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12509:55:03: Font TrebuchetMSBoldusing texture size 512x512 
     12609:55:03: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12709:55:03: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12809:55:03: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12909:55:03: Parsing script OgreLoadingPanel.overlay 
     13009:55:03: Finished parsing scripts for resource group Bootstrap 
     13109:55:03: Parsing scripts for resource group General 
     13209:55:03: Parsing script GameTools.program 
     13309:55:03: Parsing script atlascube.material 
     13409:55:03: Parsing script colorcube.material 
     13509:55:03: Parsing script difflab.material 
     13609:55:04: An exception has been thrown! 
    137137 
    138138----------------------------------- 
     
    145145Line: 779 
    146146Stack unwinding: <<beginning of stack>> 
    147 15:08:27: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14709:55:04: 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 15:08:27: An exception has been thrown! 
     15809:55:04: An exception has been thrown! 
    159159 
    160160----------------------------------- 
     
    167167Line: 779 
    168168Stack unwinding: <<beginning of stack>> 
    169 15:08:27: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16909:55:04: 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 15:08:27: An exception has been thrown! 
     18009:55:04: An exception has been thrown! 
    181181 
    182182----------------------------------- 
     
    189189Line: 779 
    190190Stack unwinding: <<beginning of stack>> 
    191 15:08:27: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19109:55:04: 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 15:08:27: An exception has been thrown! 
     20209:55:04: An exception has been thrown! 
    203203 
    204204----------------------------------- 
     
    211211Line: 779 
    212212Stack unwinding: <<beginning of stack>> 
    213 15:08:27: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21309:55:04: 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 15:08:27: An exception has been thrown! 
     22409:55:04: An exception has been thrown! 
    225225 
    226226----------------------------------- 
     
    233233Line: 779 
    234234Stack unwinding: <<beginning of stack>> 
    235 15:08:27: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23509:55:04: 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 15:08:27: An exception has been thrown! 
     24609:55:04: An exception has been thrown! 
    247247 
    248248----------------------------------- 
     
    255255Line: 779 
    256256Stack unwinding: <<beginning of stack>> 
    257 15:08:27: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25709:55:04: 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 15:08:27: An exception has been thrown! 
     26809:55:04: An exception has been thrown! 
    269269 
    270270----------------------------------- 
     
    277277Line: 779 
    278278Stack unwinding: <<beginning of stack>> 
    279 15:08:27: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27909:55:04: 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 15:08:27: An exception has been thrown! 
     29009:55:04: An exception has been thrown! 
    291291 
    292292----------------------------------- 
     
    299299Line: 779 
    300300Stack unwinding: <<beginning of stack>> 
    301 15:08:27: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30109:55:04: 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 15:08:27: An exception has been thrown! 
     31209:55:04: An exception has been thrown! 
    313313 
    314314----------------------------------- 
     
    321321Line: 779 
    322322Stack unwinding: <<beginning of stack>> 
    323 15:08:27: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32309:55:04: 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 15:08:27: An exception has been thrown! 
     33409:55:04: An exception has been thrown! 
    335335 
    336336----------------------------------- 
     
    343343Line: 779 
    344344Stack unwinding: <<beginning of stack>> 
    345 15:08:27: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34509:55:04: 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 15:08:27: An exception has been thrown! 
     35609:55:04: An exception has been thrown! 
    357357 
    358358----------------------------------- 
     
    365365Line: 779 
    366366Stack unwinding: <<beginning of stack>> 
    367 15:08:27: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     36709:55:04: 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 15:08:27: An exception has been thrown! 
     37809:55:04: An exception has been thrown! 
    379379 
    380380----------------------------------- 
     
    387387Line: 779 
    388388Stack unwinding: <<beginning of stack>> 
    389 15:08:27: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     38909:55:04: 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 15:08:27: An exception has been thrown! 
     40009:55:04: An exception has been thrown! 
    401401 
    402402----------------------------------- 
     
    409409Line: 779 
    410410Stack unwinding: <<beginning of stack>> 
    411 15:08:27: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41109:55:04: 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 15:08:27: An exception has been thrown! 
     42209:55:04: An exception has been thrown! 
    423423 
    424424----------------------------------- 
     
    431431Line: 779 
    432432Stack unwinding: <<beginning of stack>> 
    433 15:08:27: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43309:55:04: 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 15:08:27: An exception has been thrown! 
     44409:55:04: An exception has been thrown! 
    445445 
    446446----------------------------------- 
     
    453453Line: 779 
    454454Stack unwinding: <<beginning of stack>> 
    455 15:08:27: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45509:55:04: 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 15:08:27: An exception has been thrown! 
     46609:55:04: An exception has been thrown! 
    467467 
    468468----------------------------------- 
     
    475475Line: 779 
    476476Stack unwinding: <<beginning of stack>> 
    477 15:08:27: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     47709:55:04: 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 15:08:27: An exception has been thrown! 
     48809:55:04: An exception has been thrown! 
    489489 
    490490----------------------------------- 
     
    497497Line: 779 
    498498Stack unwinding: <<beginning of stack>> 
    499 15:08:27: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     49909:55:04: 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 15:08:27: An exception has been thrown! 
     51009:55:04: An exception has been thrown! 
    511511 
    512512----------------------------------- 
     
    519519Line: 779 
    520520Stack unwinding: <<beginning of stack>> 
    521 15:08:27: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52109:55:04: 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 15:08:27: An exception has been thrown! 
     53209:55:04: An exception has been thrown! 
    533533 
    534534----------------------------------- 
     
    541541Line: 779 
    542542Stack unwinding: <<beginning of stack>> 
    543 15:08:27: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54309:55:04: 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 15:08:27: An exception has been thrown! 
     55409:55:04: An exception has been thrown! 
    555555 
    556556----------------------------------- 
     
    563563Line: 779 
    564564Stack unwinding: <<beginning of stack>> 
    565 15:08:27: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56509:55:04: 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 15:08:27: An exception has been thrown! 
     57609:55:04: An exception has been thrown! 
    577577 
    578578----------------------------------- 
     
    585585Line: 779 
    586586Stack unwinding: <<beginning of stack>> 
    587 15:08:27: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     58709:55:04: 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 15:08:27: Parsing script diffscene.material 
    599 15:08:27: An exception has been thrown! 
     59809:55:04: Parsing script diffscene.material 
     59909:55:04: An exception has been thrown! 
    600600 
    601601----------------------------------- 
     
    608608Line: 779 
    609609Stack unwinding: <<beginning of stack>> 
    610 15:08:27: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     61009:55:04: 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 15:08:27: An exception has been thrown! 
     62109:55:04: An exception has been thrown! 
    622622 
    623623----------------------------------- 
     
    630630Line: 779 
    631631Stack unwinding: <<beginning of stack>> 
    632 15:08:27: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63209:55:04: 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 15:08:27: An exception has been thrown! 
     64309:55:04: An exception has been thrown! 
    644644 
    645645----------------------------------- 
     
    652652Line: 779 
    653653Stack unwinding: <<beginning of stack>> 
    654 15:08:27: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65409:55:04: 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 15:08:27: An exception has been thrown! 
     66509:55:04: An exception has been thrown! 
    666666 
    667667----------------------------------- 
     
    674674Line: 779 
    675675Stack unwinding: <<beginning of stack>> 
    676 15:08:27: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67609:55:04: 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 15:08:27: An exception has been thrown! 
     68709:55:04: An exception has been thrown! 
    688688 
    689689----------------------------------- 
     
    696696Line: 779 
    697697Stack unwinding: <<beginning of stack>> 
    698 15:08:27: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69809:55:04: 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 15:08:27: An exception has been thrown! 
     70909:55:04: An exception has been thrown! 
    710710 
    711711----------------------------------- 
     
    718718Line: 779 
    719719Stack unwinding: <<beginning of stack>> 
    720 15:08:27: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     72009:55:04: 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 15:08:27: An exception has been thrown! 
     73109:55:04: An exception has been thrown! 
    732732 
    733733----------------------------------- 
     
    740740Line: 779 
    741741Stack unwinding: <<beginning of stack>> 
    742 15:08:27: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74209:55:04: 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 15:08:27: An exception has been thrown! 
     75309:55:04: An exception has been thrown! 
    754754 
    755755----------------------------------- 
     
    762762Line: 779 
    763763Stack unwinding: <<beginning of stack>> 
    764 15:08:27: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76409:55:04: 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 15:08:27: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    776 15:08:27: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    777 15:08:27: Parsing script Diffuse.material 
    778 15:08:28: An exception has been thrown! 
     77509:55:04: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77609:55:04: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77709:55:04: Parsing script Diffuse.material 
     77809:55:04: An exception has been thrown! 
    779779 
    780780----------------------------------- 
     
    787787Line: 779 
    788788Stack unwinding: <<beginning of stack>> 
    789 15:08:28: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     78909:55:04: 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 15:08:28: An exception has been thrown! 
     80009:55:05: An exception has been thrown! 
    801801 
    802802----------------------------------- 
     
    809809Line: 779 
    810810Stack unwinding: <<beginning of stack>> 
    811 15:08:28: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     81109:55:05: 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 15:08:32: An exception has been thrown! 
     82209:55:08: An exception has been thrown! 
    823823 
    824824----------------------------------- 
     
    831831Line: 779 
    832832Stack unwinding: <<beginning of stack>> 
    833 15:08:32: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83309:55:08: 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 15:08:32: An exception has been thrown! 
     84409:55:08: An exception has been thrown! 
    845845 
    846846----------------------------------- 
     
    853853Line: 779 
    854854Stack unwinding: <<beginning of stack>> 
    855 15:08:32: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     85509:55:08: 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 15:08:32: Parsing script EnvMetals.material 
    867 15:08:32: An exception has been thrown! 
     86609:55:08: Parsing script EnvMetals.material 
     86709:55:08: An exception has been thrown! 
    868868 
    869869----------------------------------- 
     
    876876Line: 779 
    877877Stack unwinding: <<beginning of stack>> 
    878 15:08:32: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     87809:55:08: 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 15:08:32: An exception has been thrown! 
     88909:55:08: An exception has been thrown! 
    890890 
    891891----------------------------------- 
     
    898898Line: 779 
    899899Stack unwinding: <<beginning of stack>> 
    900 15:08:32: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     90009:55:08: 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 15:08:32: An exception has been thrown! 
     91109:55:08: An exception has been thrown! 
    912912 
    913913----------------------------------- 
     
    920920Line: 779 
    921921Stack unwinding: <<beginning of stack>> 
    922 15:08:32: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     92209:55:08: 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 15:08:32: An exception has been thrown! 
     93309:55:08: An exception has been thrown! 
    934934 
    935935----------------------------------- 
     
    942942Line: 779 
    943943Stack unwinding: <<beginning of stack>> 
    944 15:08:32: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     94409:55:08: 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 15:08:32: Parsing script GameTools.material 
    956 15:08:32: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    957 15:08:32: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    958 15:08:32: An exception has been thrown! 
     95509:55:08: Parsing script GameTools.material 
     95609:55:08: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     95709:55:08: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     95809:55:08: An exception has been thrown! 
    959959 
    960960----------------------------------- 
     
    967967Line: 779 
    968968Stack unwinding: <<beginning of stack>> 
    969 15:08:32: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     96909:55:08: 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 15:08:32: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    981 15:08:32: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    982 15:08:32: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    983 15:08:32: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
    984 15:08:32: Parsing script GameTools_HPS.material 
    985 15:08:32: An exception has been thrown! 
     98009:55:08: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     98109:55:08: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     98209:55:08: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     98309:55:08: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
     98409:55:08: Parsing script GameTools_HPS.material 
     98509:55:08: An exception has been thrown! 
    986986 
    987987----------------------------------- 
     
    994994Line: 779 
    995995Stack unwinding: <<beginning of stack>> 
    996 15: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! 
     99609:55:08: 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 15:08:32: An exception has been thrown! 
     100709:55:08: An exception has been thrown! 
    10081008 
    10091009----------------------------------- 
     
    10161016Line: 779 
    10171017Stack unwinding: <<beginning of stack>> 
    1018 15: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! 
     101809:55:08: 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 15:08:32: An exception has been thrown! 
     102909:55:08: An exception has been thrown! 
    10301030 
    10311031----------------------------------- 
     
    10381038Line: 779 
    10391039Stack unwinding: <<beginning of stack>> 
    1040 15: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! 
     104009:55:08: 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 15:08:32: An exception has been thrown! 
     105109:55:08: An exception has been thrown! 
    10521052 
    10531053----------------------------------- 
     
    10601060Line: 779 
    10611061Stack unwinding: <<beginning of stack>> 
    1062 15: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! 
     106209:55:08: 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 15:08:32: An exception has been thrown! 
     107309:55:08: An exception has been thrown! 
    10741074 
    10751075----------------------------------- 
     
    10821082Line: 779 
    10831083Stack unwinding: <<beginning of stack>> 
    1084 15: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! 
     108409:55:08: 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 15:08:32: An exception has been thrown! 
     109509:55:08: An exception has been thrown! 
    10961096 
    10971097----------------------------------- 
     
    11041104Line: 779 
    11051105Stack unwinding: <<beginning of stack>> 
    1106 15: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! 
     110609:55:08: 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 15:08:32: An exception has been thrown! 
     111709:55:08: An exception has been thrown! 
    11181118 
    11191119----------------------------------- 
     
    11261126Line: 779 
    11271127Stack unwinding: <<beginning of stack>> 
    1128 15: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! 
     112809:55:08: 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 15:08:32: An exception has been thrown! 
     113909:55:08: An exception has been thrown! 
    11401140 
    11411141----------------------------------- 
     
    11481148Line: 779 
    11491149Stack unwinding: <<beginning of stack>> 
    1150 15: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! 
     115009:55:08: 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 15:08:32: An exception has been thrown! 
     116109:55:08: An exception has been thrown! 
    11621162 
    11631163----------------------------------- 
     
    11701170Line: 779 
    11711171Stack unwinding: <<beginning of stack>> 
    1172 15: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! 
     117209:55:08: 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 15:08:32: An exception has been thrown! 
     118309:55:08: An exception has been thrown! 
    11841184 
    11851185----------------------------------- 
     
    11921192Line: 779 
    11931193Stack unwinding: <<beginning of stack>> 
    1194 15: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! 
     119409:55:08: 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 15:08:32: An exception has been thrown! 
     120509:55:08: An exception has been thrown! 
    12061206 
    12071207----------------------------------- 
     
    12141214Line: 779 
    12151215Stack unwinding: <<beginning of stack>> 
    1216 15: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! 
     121609:55:08: 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 15:08:32: An exception has been thrown! 
     122709:55:08: An exception has been thrown! 
    12281228 
    12291229----------------------------------- 
     
    12361236Line: 779 
    12371237Stack unwinding: <<beginning of stack>> 
    1238 15:08:32: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     123809:55:08: 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 15:08:32: Parsing script GlassHead.material 
    1250 15:08:32: An exception has been thrown! 
     124909:55:08: Parsing script GlassHead.material 
     125009:55:08: An exception has been thrown! 
    12511251 
    12521252----------------------------------- 
     
    12591259Line: 779 
    12601260Stack unwinding: <<beginning of stack>> 
    1261 15:08:32: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     126109:55:08: 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 15:08:32: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    1273 15:08:32: An exception has been thrown! 
     127209:55:08: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     127309:55:08: An exception has been thrown! 
    12741274 
    12751275----------------------------------- 
     
    12821282Line: 779 
    12831283Stack unwinding: <<beginning of stack>> 
    1284 15:08:32: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     128409:55:08: 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 15:08:32: An exception has been thrown! 
     129509:55:08: An exception has been thrown! 
    12961296 
    12971297----------------------------------- 
     
    13041304Line: 779 
    13051305Stack unwinding: <<beginning of stack>> 
    1306 15:08:32: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     130609:55:08: 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 15:08:32: An exception has been thrown! 
     131709:55:09: An exception has been thrown! 
    13181318 
    13191319----------------------------------- 
     
    13261326Line: 779 
    13271327Stack unwinding: <<beginning of stack>> 
    1328 15:08:32: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     132809:55:09: 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 15:08:33: Parsing script Glow.material 
    1340 15:08:33: An exception has been thrown! 
     133909:55:09: Parsing script Glow.material 
     134009:55:09: An exception has been thrown! 
    13411341 
    13421342----------------------------------- 
     
    13491349Line: 779 
    13501350Stack unwinding: <<beginning of stack>> 
    1351 15:08:33: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     135109:55:09: 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 15:08:33: Parsing script hangar.material 
    1363 15:08:33: Parsing script kupola.material 
    1364 15:08:33: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1365 15:08:33: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1366 15:08:33: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1367 15:08:33: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1368 15:08:33: Parsing script MetalTeapot.material 
    1369 15:08:33: An exception has been thrown! 
     136209:55:09: Parsing script hangar.material 
     136309:55:09: Parsing script kupola.material 
     136409:55:09: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     136509:55:09: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     136609:55:09: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     136709:55:09: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     136809:55:09: Parsing script MetalTeapot.material 
     136909:55:09: An exception has been thrown! 
    13701370 
    13711371----------------------------------- 
     
    13781378Line: 779 
    13791379Stack unwinding: <<beginning of stack>> 
    1380 15:08:33: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     138009:55:09: 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 15:08:33: An exception has been thrown! 
     139109:55:09: An exception has been thrown! 
    13921392 
    13931393----------------------------------- 
     
    14001400Line: 779 
    14011401Stack unwinding: <<beginning of stack>> 
    1402 15:08:33: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     140209:55:09: 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 15:08:33: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
    1414 15:08:33: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 
    1415 15:08:33: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
    1416 15:08:33: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 
    1417 15:08:42: An exception has been thrown! 
     141309:55:09: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
     141409:55:09: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 
     141509:55:09: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
     141609:55:09: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 
     141709:55:21: An exception has been thrown! 
    14181418 
    14191419----------------------------------- 
     
    14261426Line: 779 
    14271427Stack unwinding: <<beginning of stack>> 
    1428 15:08:42: Error in material MetalTeapotMultipleBounce at line 254 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     142809:55:21: 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 15:08:42: An exception has been thrown! 
     143909:55:21: An exception has been thrown! 
    14401440 
    14411441----------------------------------- 
     
    14481448Line: 779 
    14491449Stack unwinding: <<beginning of stack>> 
    1450 15:08:42: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     145009:55:21: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    14511451 
    14521452----------------------------------- 
     
    14591459Line: 779 
    14601460Stack unwinding: <<beginning of stack>> 
    1461 15:08:42: Parsing script Ogre.material 
    1462 15:08:42: Parsing script Particles.material 
    1463 15:08:42: An exception has been thrown! 
     146109:55:21: Parsing script Ogre.material 
     146209:55:21: Parsing script Particles.material 
     146309:55:21: An exception has been thrown! 
    14641464 
    14651465----------------------------------- 
     
    14721472Line: 779 
    14731473Stack unwinding: <<beginning of stack>> 
    1474 15:08:42: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     147409:55:21: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14751475 
    14761476----------------------------------- 
     
    14831483Line: 779 
    14841484Stack unwinding: <<beginning of stack>> 
    1485 15:08:42: An exception has been thrown! 
     148509:55:21: An exception has been thrown! 
    14861486 
    14871487----------------------------------- 
     
    14941494Line: 779 
    14951495Stack unwinding: <<beginning of stack>> 
    1496 15:08:42: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     149609:55:21: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14971497 
    14981498----------------------------------- 
     
    15051505Line: 779 
    15061506Stack unwinding: <<beginning of stack>> 
    1507 15:08:42: Parsing script RaytraceDemo.material 
    1508 15:08:42: Parsing script stairs.material 
    1509 15:08:42: Parsing script terito.material 
    1510 15:08:42: Parsing script uvegfolyoso2.material 
    1511 15:08:42: An exception has been thrown! 
     150709:55:21: Parsing script RaytraceDemo.material 
     150809:55:21: Parsing script stairs.material 
     150909:55:21: Parsing script terito.material 
     151009:55:21: Parsing script uvegfolyoso2.material 
     151109:55:21: An exception has been thrown! 
    15121512 
    15131513----------------------------------- 
     
    15201520Line: 779 
    15211521Stack unwinding: <<beginning of stack>> 
    1522 15:08:42: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     152209:55:21: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15231523 
    15241524----------------------------------- 
     
    15311531Line: 779 
    15321532Stack unwinding: <<beginning of stack>> 
    1533 15:08:42: An exception has been thrown! 
     153309:55:21: An exception has been thrown! 
    15341534 
    15351535----------------------------------- 
     
    15421542Line: 779 
    15431543Stack unwinding: <<beginning of stack>> 
    1544 15:08:42: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     154409:55:21: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15451545 
    15461546----------------------------------- 
     
    15531553Line: 779 
    15541554Stack unwinding: <<beginning of stack>> 
    1555 15:08:42: An exception has been thrown! 
     155509:55:21: An exception has been thrown! 
    15561556 
    15571557----------------------------------- 
     
    15641564Line: 779 
    15651565Stack unwinding: <<beginning of stack>> 
    1566 15:08:42: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     156609:55:21: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15671567 
    15681568----------------------------------- 
     
    15751575Line: 779 
    15761576Stack unwinding: <<beginning of stack>> 
    1577 15:08:42: An exception has been thrown! 
     157709:55:21: An exception has been thrown! 
    15781578 
    15791579----------------------------------- 
     
    15861586Line: 779 
    15871587Stack unwinding: <<beginning of stack>> 
    1588 15:08:42: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     158809:55:21: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15891589 
    15901590----------------------------------- 
     
    15971597Line: 779 
    15981598Stack unwinding: <<beginning of stack>> 
    1599 15:08:42: An exception has been thrown! 
     159909:55:21: An exception has been thrown! 
    16001600 
    16011601----------------------------------- 
     
    16081608Line: 779 
    16091609Stack unwinding: <<beginning of stack>> 
    1610 15:08:42: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     161009:55:21: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16111611 
    16121612----------------------------------- 
     
    16191619Line: 779 
    16201620Stack unwinding: <<beginning of stack>> 
    1621 15:08:42: An exception has been thrown! 
     162109:55:21: An exception has been thrown! 
    16221622 
    16231623----------------------------------- 
     
    16301630Line: 779 
    16311631Stack unwinding: <<beginning of stack>> 
    1632 15:08:42: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     163209:55:21: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16331633 
    16341634----------------------------------- 
     
    16411641Line: 779 
    16421642Stack unwinding: <<beginning of stack>> 
    1643 15:08:42: An exception has been thrown! 
     164309:55:21: An exception has been thrown! 
    16441644 
    16451645----------------------------------- 
     
    16521652Line: 779 
    16531653Stack unwinding: <<beginning of stack>> 
    1654 15:08:42: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     165409:55:21: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16551655 
    16561656----------------------------------- 
     
    16631663Line: 779 
    16641664Stack unwinding: <<beginning of stack>> 
    1665 15:08:42: An exception has been thrown! 
     166509:55:21: An exception has been thrown! 
    16661666 
    16671667----------------------------------- 
     
    16741674Line: 779 
    16751675Stack unwinding: <<beginning of stack>> 
    1676 15:08:42: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     167609:55:21: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16771677 
    16781678----------------------------------- 
     
    16851685Line: 779 
    16861686Stack unwinding: <<beginning of stack>> 
    1687 15:08:42: An exception has been thrown! 
     168709:55:21: An exception has been thrown! 
    16881688 
    16891689----------------------------------- 
     
    16961696Line: 779 
    16971697Stack unwinding: <<beginning of stack>> 
    1698 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     169809:55:21: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16991699 
    17001700----------------------------------- 
     
    17071707Line: 779 
    17081708Stack unwinding: <<beginning of stack>> 
    1709 15:08:42: An exception has been thrown! 
     170909:55:21: An exception has been thrown! 
    17101710 
    17111711----------------------------------- 
     
    17181718Line: 779 
    17191719Stack unwinding: <<beginning of stack>> 
    1720 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     172009:55:21: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17211721 
    17221722----------------------------------- 
     
    17291729Line: 779 
    17301730Stack unwinding: <<beginning of stack>> 
    1731 15:08:42: An exception has been thrown! 
     173109:55:21: An exception has been thrown! 
    17321732 
    17331733----------------------------------- 
     
    17401740Line: 779 
    17411741Stack unwinding: <<beginning of stack>> 
    1742 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     174209:55:21: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17431743 
    17441744----------------------------------- 
     
    17511751Line: 779 
    17521752Stack unwinding: <<beginning of stack>> 
    1753 15:08:42: An exception has been thrown! 
     175309:55:21: An exception has been thrown! 
    17541754 
    17551755----------------------------------- 
     
    17621762Line: 779 
    17631763Stack unwinding: <<beginning of stack>> 
    1764 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     176409:55:21: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17651765 
    17661766----------------------------------- 
     
    17731773Line: 779 
    17741774Stack unwinding: <<beginning of stack>> 
    1775 15:08:42: An exception has been thrown! 
     177509:55:21: An exception has been thrown! 
    17761776 
    17771777----------------------------------- 
     
    17841784Line: 779 
    17851785Stack unwinding: <<beginning of stack>> 
    1786 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     178609:55:21: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17871787 
    17881788----------------------------------- 
     
    17951795Line: 779 
    17961796Stack unwinding: <<beginning of stack>> 
    1797 15:08:42: An exception has been thrown! 
     179709:55:21: An exception has been thrown! 
    17981798 
    17991799----------------------------------- 
     
    18061806Line: 779 
    18071807Stack unwinding: <<beginning of stack>> 
    1808 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     180809:55:21: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18091809 
    18101810----------------------------------- 
     
    18171817Line: 779 
    18181818Stack unwinding: <<beginning of stack>> 
    1819 15:08:42: An exception has been thrown! 
     181909:55:21: An exception has been thrown! 
    18201820 
    18211821----------------------------------- 
     
    18281828Line: 779 
    18291829Stack unwinding: <<beginning of stack>> 
    1830 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     183009:55:21: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18311831 
    18321832----------------------------------- 
     
    18391839Line: 779 
    18401840Stack unwinding: <<beginning of stack>> 
    1841 15:08:42: An exception has been thrown! 
     184109:55:21: An exception has been thrown! 
    18421842 
    18431843----------------------------------- 
     
    18501850Line: 779 
    18511851Stack unwinding: <<beginning of stack>> 
    1852 15:08:42: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     185209:55:21: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18531853 
    18541854----------------------------------- 
     
    18611861Line: 779 
    18621862Stack unwinding: <<beginning of stack>> 
    1863 15:08:42: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1864 15:08:42: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1865 15:08:42: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1866 15:08:42: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1867 15:08:42: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1868 15:08:42: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1869 15:08:42: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1870 15:08:42: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1871 15:08:42: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1872 15:08:42: Parsing script X3D.material 
    1873 15:08:42: Parsing script GameTools_Glow.compositor 
    1874 15:08:42: Parsing script GameTools_ToneMap.compositor 
    1875 15:08:42: Parsing script sample.fontdef 
    1876 15:08:42: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1877 15:08:42: Parsing script GameTools.particle 
    1878 15:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1879 15:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1880 15:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1881 15:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
    1882 15:08:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
    1883 15:08:42: Parsing script Compositor.overlay 
    1884 15:08:42: Parsing script DP3.overlay 
    1885 15:08:42: Parsing script Example-CubeMapping.overlay 
    1886 15:08:42: Parsing script Example-DynTex.overlay 
    1887 15:08:42: Parsing script Example-Water.overlay 
    1888 15:08:42: Parsing script FullScreen.overlay 
    1889 15:08:42: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1890 15:08:42: Parsing script Shadows.overlay 
    1891 15:08:42: Finished parsing scripts for resource group General 
    1892 15:08:42: Parsing scripts for resource group Internal 
    1893 15:08:42: Finished parsing scripts for resource group Internal 
    1894 15:08:42: Mesh: Loading teapot.mesh. 
    1895 15: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? 
    1896 15:08:42: Mesh: Loading difflab.mesh. 
    1897 15:08:42: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1898 15:08:42: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1899 15:08:42: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
    1900 15:08:42: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1901 15:08:42: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1902 15: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 
    1903 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1904 15: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 
    1905 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1906 15: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 
    1907 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1908 15: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 
    1909 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1910 15: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 
    1911 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1912 15: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 
    1913 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1914 15: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. 
    1915 15: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 
    1916 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1917 15: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 
    1918 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1919 15: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 
    1920 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1921 15: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 
    1922 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1923 15: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 
    1924 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1925 15: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 
    1926 15:08:42: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1927 15: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. 
    1928 15: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 
    1929 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1930 15: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 
    1931 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1932 15: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 
    1933 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1934 15: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 
    1935 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1936 15: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 
    1937 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1938 15: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 
    1939 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1940 15: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. 
    1941 15: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 
    1942 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1943 15: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 
    1944 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1945 15: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 
    1946 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1947 15: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 
    1948 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1949 15: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 
    1950 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1951 15: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 
    1952 15:08:42: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1953 15: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. 
    1954 15:08:42: Win32Input8: DirectInput Activation Starts 
    1955 15:08:42: Win32Input8: Establishing keyboard input. 
    1956 15:08:42: Win32Input8: Keyboard input established. 
    1957 15:08:42: Win32Input8: Initializing mouse input in immediate mode. 
    1958 15:08:42: Win32Input8: Mouse input in immediate mode initialized. 
    1959 15:08:42: Win32Input8: DirectInput OK. 
    1960 15: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 
    1961 15:08:42: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1962 15: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 
    1963 15:08:42: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1964 15: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 
    1965 15:08:42: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1966 15: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 
    1967 15:08:42: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1968 15: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. 
    1969 15: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. 
    1970 15:10:55: Unregistering ResourceManager for type BspLevel 
    1971 15:10:55: Render Target 'rtt/48154208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1972 15:10:55: Render Target 'rtt/48153632' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1973 15:10:55: Render Target 'rtt/48153088' Average FPS: 8.84982 Best FPS: 12.7576 Worst FPS: 0.0801154 
    1974 15:10:55: Render Target 'rtt/48152352' Average FPS: 8.84833 Best FPS: 12.7576 Worst FPS: 0.0801218 
    1975 15:10:55: Render Target 'rtt/48085376' Average FPS: 0.079936 Best FPS: 0.079936 Worst FPS: 0.079936 
    1976 15:10:55: Render Target 'rtt/48085440' Average FPS: 0.0799297 Best FPS: 0.0799297 Worst FPS: 0.0799297 
    1977 15:10:55: Render Target 'rtt/48085536' Average FPS: 0.0799233 Best FPS: 0.0799233 Worst FPS: 0.0799233 
    1978 15:10:55: Render Target 'rtt/48085600' Average FPS: 0.0799169 Best FPS: 0.0799169 Worst FPS: 0.0799169 
    1979 15:10:55: Render Target 'rtt/48085696' Average FPS: 0.0799105 Best FPS: 0.0799105 Worst FPS: 0.0799105 
    1980 15:10:55: Render Target 'rtt/48085760' Average FPS: 0.0799105 Best FPS: 0.0799105 Worst FPS: 0.0799105 
    1981 15:10:55: Render Target 'rtt/48082912' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1982 15:10:55: Render Target 'rtt/48083680' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1983 15:10:55: Render Target 'rtt/48083776' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1984 15:10:55: Render Target 'rtt/48083840' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1985 15:10:55: Render Target 'rtt/48083936' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1986 15:10:55: Render Target 'rtt/48084000' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1987 15:10:55: Render Target 'rtt/48080896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1988 15:10:55: Render Target 'rtt/48080992' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1989 15:10:55: Render Target 'rtt/48081056' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1990 15:10:55: Render Target 'rtt/48082208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1991 15:10:55: Render Target 'rtt/48082272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1992 15:10:55: Render Target 'rtt/48082368' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1993 15:10:55: Render Target 'rtt/48080064' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1994 15:10:55: Render Target 'rtt/48080160' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1995 15:10:55: Render Target 'rtt/48080224' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1996 15:10:55: Render Target 'rtt/48080320' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1997 15:10:55: Render Target 'rtt/48080384' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1998 15:10:55: Render Target 'rtt/48080480' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1999 15:10:55: *-*-* OGRE Shutdown 
    2000 15:10:55: Unregistering ResourceManager for type Compositor 
    2001 15:10:55: Unregistering ResourceManager for type Font 
    2002 15:10:55: Unregistering ResourceManager for type Skeleton 
    2003 15:10:55: Unregistering ResourceManager for type Mesh 
    2004 15:10:55: Unregistering ResourceManager for type HighLevelGpuProgram 
    2005 15:10:55: Unloading library .\Plugin_CgProgramManager 
    2006 15:10:55: Unloading library .\Plugin_OctreeSceneManager 
    2007 15:10:55: Unloading library .\Plugin_BSPSceneManager 
    2008 15:10:55: Unloading library .\Plugin_ParticleFX 
    2009 15:10:55: Render Target 'OGRE Render Window' Average FPS: 8.84901 Best FPS: 12.5604 Worst FPS: 0.0400994 
    2010 15:10:55: D3D9 : Shutting down cleanly. 
    2011 15:10:55: Unregistering ResourceManager for type Texture 
    2012 15:10:55: Unregistering ResourceManager for type GpuProgram 
    2013 15:10:55: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    2014 15:10:55: Unloading library .\RenderSystem_Direct3D9 
    2015 15:10:55: Unregistering ResourceManager for type Material 
    2016 15:10:55: Unloading library OgrePlatform_d.dll 
     186309:55:21: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     186409:55:21: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     186509:55:21: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     186609:55:21: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     186709:55:21: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     186809:55:21: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     186909:55:21: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     187009:55:21: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     187109:55:21: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     187209:55:21: Parsing script X3D.material 
     187309:55:21: Parsing script GameTools_Glow.compositor 
     187409:55:21: Parsing script GameTools_ToneMap.compositor 
     187509:55:21: Parsing script sample.fontdef 
     187609:55:21: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     187709:55:21: Parsing script GameTools.particle 
     187809:55:21: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     187909:55:21: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     188009:55:21: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     188109:55:21: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
     188209:55:21: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
     188309:55:21: Parsing script Compositor.overlay 
     188409:55:21: Parsing script DP3.overlay 
     188509:55:21: Parsing script Example-CubeMapping.overlay 
     188609:55:21: Parsing script Example-DynTex.overlay 
     188709:55:21: Parsing script Example-Water.overlay 
     188809:55:21: Parsing script FullScreen.overlay 
     188909:55:21: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     189009:55:21: Parsing script Shadows.overlay 
     189109:55:21: Finished parsing scripts for resource group General 
     189209:55:21: Parsing scripts for resource group Internal 
     189309:55:21: Finished parsing scripts for resource group Internal 
     189409:55:21: Mesh: Loading teapot.mesh. 
     189509:55:21: 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? 
     189609:55:21: Mesh: Loading difflab.mesh. 
     189709:55:21: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     189809:55:21: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     189909:55:21: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
     190009:55:21: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     190109:55:21: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     190209:55:21: 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 
     190309:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190409:55:21: Creating viewport on target 'rtt/3276768', 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 
     190509:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190609:55:21: Creating viewport on target 'rtt/48100160', 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 
     190709:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190809:55:21: Creating viewport on target 'rtt/48100224', 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 
     190909:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191009:55:21: Creating viewport on target 'rtt/48100288', 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 
     191109:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191209:55:21: Creating viewport on target 'rtt/48100352', 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 
     191309:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191409:55:21: 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. 
     191509:55:21: Creating viewport on target 'rtt/48101280', 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 
     191609:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191709:55:21: Creating viewport on target 'rtt/48101344', 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 
     191809:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191909:55:21: Creating viewport on target 'rtt/48101408', 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 
     192009:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192109:55:21: Creating viewport on target 'rtt/48101472', 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 
     192209:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192309:55:21: Creating viewport on target 'rtt/48101536', 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 
     192409:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192509:55:21: Creating viewport on target 'rtt/48101600', 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 
     192609:55:21: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192709:55:21: 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. 
     192809:55:21: Creating viewport on target 'rtt/48102656', 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 
     192909:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193009:55:21: Creating viewport on target 'rtt/48102720', 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 
     193109:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193209:55:21: Creating viewport on target 'rtt/48102784', 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 
     193309:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193409:55:21: Creating viewport on target 'rtt/48102848', 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 
     193509:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193609:55:21: Creating viewport on target 'rtt/48102912', 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 
     193709:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193809:55:21: Creating viewport on target 'rtt/48102976', 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 
     193909:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194009:55:21: 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. 
     194109:55:21: Creating viewport on target 'rtt/48104000', 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 
     194209:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194309:55:21: Creating viewport on target 'rtt/48104064', 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 
     194409:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194509:55:21: Creating viewport on target 'rtt/48104128', 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 
     194609:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194709:55:21: Creating viewport on target 'rtt/48104192', 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 
     194809:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194909:55:21: Creating viewport on target 'rtt/48104256', 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 
     195009:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     195109:55:21: Creating viewport on target 'rtt/48104320', 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 
     195209:55:21: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     195309:55:21: 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. 
     195409:55:21: Win32Input8: DirectInput Activation Starts 
     195509:55:21: Win32Input8: Establishing keyboard input. 
     195609:55:21: Win32Input8: Keyboard input established. 
     195709:55:21: Win32Input8: Initializing mouse input in immediate mode. 
     195809:55:21: Win32Input8: Mouse input in immediate mode initialized. 
     195909:55:21: Win32Input8: DirectInput OK. 
     196009:55:21: Creating viewport on target 'rtt/47956160', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196109:55:21: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     196209:55:21: Creating viewport on target 'rtt/48176768', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196309:55:21: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     196409:55:21: Creating viewport on target 'rtt/48177120', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196509:55:21: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     196609:55:21: Creating viewport on target 'rtt/48137472', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196709:55:21: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     196809:55:21: 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. 
     196909:55:21: 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. 
     197009:56:15: Unregistering ResourceManager for type BspLevel 
     197109:56:15: Render Target 'rtt/48137472' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     197209:56:15: Render Target 'rtt/48177120' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     197309:56:15: Render Target 'rtt/48176768' Average FPS: 2.52633 Best FPS: 5.80431 Worst FPS: 0.0810438 
     197409:56:15: Render Target 'rtt/47956160' Average FPS: 2.52608 Best FPS: 5.7995 Worst FPS: 0.0810537 
     197509:56:15: Render Target 'rtt/48104000' Average FPS: 0.0806842 Best FPS: 0.0806842 Worst FPS: 0.0806842 
     197609:56:15: Render Target 'rtt/48104064' Average FPS: 0.0806777 Best FPS: 0.0806777 Worst FPS: 0.0806777 
     197709:56:15: Render Target 'rtt/48104128' Average FPS: 0.0806712 Best FPS: 0.0806712 Worst FPS: 0.0806712 
     197809:56:15: Render Target 'rtt/48104192' Average FPS: 0.0806712 Best FPS: 0.0806712 Worst FPS: 0.0806712 
     197909:56:15: Render Target 'rtt/48104256' Average FPS: 0.0806647 Best FPS: 0.0806647 Worst FPS: 0.0806647 
     198009:56:15: Render Target 'rtt/48104320' Average FPS: 0.0806582 Best FPS: 0.0806582 Worst FPS: 0.0806582 
     198109:56:15: Render Target 'rtt/48102656' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198209:56:15: Render Target 'rtt/48102720' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198309:56:15: Render Target 'rtt/48102784' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198409:56:15: Render Target 'rtt/48102848' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198509:56:15: Render Target 'rtt/48102912' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198609:56:15: Render Target 'rtt/48102976' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198709:56:15: Render Target 'rtt/48101280' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198809:56:15: Render Target 'rtt/48101344' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198909:56:15: Render Target 'rtt/48101408' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199009:56:15: Render Target 'rtt/48101472' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199109:56:15: Render Target 'rtt/48101536' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199209:56:15: Render Target 'rtt/48101600' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199309:56:15: Render Target 'rtt/3276704' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199409:56:15: Render Target 'rtt/3276768' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199509:56:15: Render Target 'rtt/48100160' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199609:56:15: Render Target 'rtt/48100224' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199709:56:15: Render Target 'rtt/48100288' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199809:56:15: Render Target 'rtt/48100352' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199909:56:15: *-*-* OGRE Shutdown 
     200009:56:15: Unregistering ResourceManager for type Compositor 
     200109:56:15: Unregistering ResourceManager for type Font 
     200209:56:15: Unregistering ResourceManager for type Skeleton 
     200309:56:15: Unregistering ResourceManager for type Mesh 
     200409:56:15: Unregistering ResourceManager for type HighLevelGpuProgram 
     200509:56:15: Unloading library .\Plugin_CgProgramManager 
     200609:56:15: Unloading library .\Plugin_OctreeSceneManager 
     200709:56:15: Unloading library .\Plugin_BSPSceneManager 
     200809:56:15: Unloading library .\Plugin_ParticleFX 
     200909:56:15: Render Target 'OGRE Render Window' Average FPS: 2.53107 Best FPS: 6.73725 Worst FPS: 0.0405252 
     201009:56:17: D3D9 : Shutting down cleanly. 
     201109:56:17: Unregistering ResourceManager for type Texture 
     201209:56:17: Unregistering ResourceManager for type GpuProgram 
     201309:56:17: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     201409:56:17: Unloading library .\RenderSystem_Direct3D9 
     201509:56:17: Unregistering ResourceManager for type Material 
     201609:56:17: Unloading library OgrePlatform_d.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log

    r1885 r1897  
    11 ----------------------------------------------------------------------------------------------------------------------------------  
    2 |                                          Memory leak report for:  12/13/2006 15:10:55                                            | 
     2|                                          Memory leak report for:  12/15/2006 09:56:17                                            | 
    33 ----------------------------------------------------------------------------------------------------------------------------------  
    44 
     
    99Number Reported   Reported    Actual     Actual     Unused    Method  Dealloc Realloc Allocated by  
    1010------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------  
    11 026360 0x02155E40 0x00000034 0x02155E30 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    12 026361 0x02155ED0 0x00000034 0x02155EC0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    13 026362 0x02155F60 0x00000034 0x02155F50 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    14 026363 0x02155FF0 0x00000034 0x02155FE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    15 026364 0x02156080 0x00000034 0x02156070 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    16 026366 0x02156110 0x000000E4 0x02156100 0x00000104 0x00000000 new         N       N    ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 
    17 026367 0x02156250 0x00000034 0x02156240 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    18 026368 0x021562E0 0x00000034 0x021562D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    19 026369 0x02156370 0x00000034 0x02156360 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    20 026370 0x02156400 0x00000034 0x021563F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    21 026351 0x0215E100 0x00000034 0x0215E0F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    22 026352 0x0215E190 0x00000034 0x0215E180 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    23 026353 0x0215E220 0x00000034 0x0215E210 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    24 026354 0x0215E2B0 0x00000034 0x0215E2A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    25 026355 0x0215E340 0x00000034 0x0215E330 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    26 026356 0x0215E3D0 0x00000034 0x0215E3C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    27 026357 0x0215E460 0x00000034 0x0215E450 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    28 026358 0x0215E4F0 0x00000034 0x0215E4E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    29 026359 0x0215E580 0x00000034 0x0215E570 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    30 026384 0x0215E610 0x0000000C 0x0215E600 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    31 026334 0x0215EB70 0x00000018 0x0215EB60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    32 026335 0x0215EBE8 0x00000018 0x0215EBD8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    33 026336 0x0215EC60 0x00000018 0x0215EC50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    34 026337 0x0215ECD8 0x00000018 0x0215ECC8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    35 026338 0x0215ED50 0x00000018 0x0215ED40 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    36 026339 0x0215EDC8 0x00000018 0x0215EDB8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    37 026340 0x0215EE40 0x00000018 0x0215EE30 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    38 026341 0x0215EEB8 0x00000018 0x0215EEA8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    39 026342 0x0215EF30 0x00000018 0x0215EF20 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    40 026343 0x0215F030 0x00000018 0x0215F020 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    41 026344 0x0215F0A8 0x00000018 0x0215F098 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    42 026345 0x0215F120 0x00000018 0x0215F110 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    43 026346 0x0215F198 0x00000018 0x0215F188 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    44 026347 0x0215F210 0x000000E4 0x0215F200 0x00000104 0x00000000 new         N       N    ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 
    45 026348 0x0215F350 0x00000034 0x0215F340 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    46 026349 0x0215F3E0 0x00000034 0x0215F3D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    47 026350 0x0215F470 0x00000034 0x0215F460 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    48 026365 0x0215F500 0x0000000C 0x0215F4F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    49 026315 0x0215F678 0x00000018 0x0215F668 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    50 026319 0x0215FA30 0x00000034 0x0215FA20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    51 026328 0x02167038 0x00000018 0x02167028 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    52 026329 0x021670B0 0x00000018 0x021670A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    53 026320 0x021671F8 0x00000034 0x021671E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    54 029619 0x02168B68 0x00000034 0x02168B58 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    55 026314 0x0216D388 0x0000000C 0x0216D378 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    56 026424 0x0218E8B0 0x00000034 0x0218E8A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    57 026425 0x0218E9A0 0x0000000C 0x0218E990 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    58 026426 0x0218EA08 0x000000E8 0x0218E9F8 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 
    59 026427 0x0218EB50 0x00000034 0x0218EB40 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    60 026428 0x0218EBE0 0x00000034 0x0218EBD0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    61 026429 0x0218ECD0 0x00000034 0x0218ECC0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    62 026430 0x0218EDC0 0x00000034 0x0218EDB0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    63 026431 0x0218EEB0 0x00000034 0x0218EEA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    64 026432 0x0218EFA0 0x00000034 0x0218EF90 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    65 026433 0x0218F030 0x00000034 0x0218F020 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    66 026434 0x0218F120 0x0000000C 0x0218F110 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    67 026435 0x0218F188 0x00000044 0x0218F178 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 
    68 026436 0x0218F228 0x00000034 0x0218F218 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    69 026437 0x0218F2B8 0x00000034 0x0218F2A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    70 026438 0x0218F348 0x0000000C 0x0218F338 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    71 026439 0x0218F3B0 0x00000044 0x0218F3A0 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 
    72 026440 0x0218F450 0x00000034 0x0218F440 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    73 026441 0x0218F4E0 0x00000034 0x0218F4D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    74 026442 0x0218F570 0x0000000C 0x0218F560 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    75 026443 0x0218F5D8 0x000000D8 0x0218F5C8 0x000000F8 0x00000000 new         N       N    ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 
    76 026444 0x0218F710 0x00000034 0x0218F700 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    77 026445 0x0218F7A0 0x00000034 0x0218F790 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    78 026446 0x0218F830 0x00000034 0x0218F820 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    79 026447 0x0218F8C0 0x00000034 0x0218F8B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    80 026448 0x0218F950 0x00000034 0x0218F940 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    81 026449 0x0218F9E0 0x00000034 0x0218F9D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    82 026450 0x0218FA70 0x00000034 0x0218FA60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    83 026451 0x0218FB00 0x00000034 0x0218FAF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    84 026452 0x0218FB90 0x00000034 0x0218FB80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    85 026453 0x0218FC20 0x00000034 0x0218FC10 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    86 026454 0x0218FCB0 0x00000034 0x0218FCA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    87 026455 0x0218FD40 0x0000000C 0x0218FD30 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    88 026456 0x0218FDA8 0x0000009C 0x0218FD98 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 
    89 026468 0x0218FEA0 0x0000000C 0x0218FE90 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    90 007410 0x021B5C70 0x00000050 0x021B5C60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    91 007404 0x021B5D30 0x0000003C 0x021B5D20 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    92 007405 0x021B5DC8 0x00000050 0x021B5DB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    93 007422 0x021B5F38 0x00000050 0x021B5F28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    94 007414 0x021B60D8 0x00000050 0x021B60C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    95 007418 0x021B61F8 0x00000050 0x021B61E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    96 007426 0x021B6378 0x00000050 0x021B6368 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    97 007534 0x021B6428 0x00000050 0x021B6418 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    98 007528 0x021B6558 0x0000003C 0x021B6548 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    99 007529 0x021BFA40 0x00000050 0x021BFA30 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    100 007538 0x021BFB50 0x00000050 0x021BFB40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    101 007542 0x021C7A88 0x00000050 0x021C7A78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    102 007546 0x021C7BA8 0x00000050 0x021C7B98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    103 007550 0x021C7C58 0x00000050 0x021C7C48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    104 007743 0x021C8960 0x00000050 0x021C8950 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    105 007737 0x021C8AC0 0x0000003C 0x021C8AB0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    106 007738 0x021CB3A8 0x00000050 0x021CB398 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    107 007755 0x021CB4B8 0x00000050 0x021CB4A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    108 007747 0x021CB658 0x00000050 0x021CB648 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    109 007751 0x021CB778 0x00000050 0x021CB768 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    110 007759 0x021CB8F8 0x00000050 0x021CB8E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    111 026313 0x021CDBD8 0x000001F8 0x021CDBC8 0x00000218 0x00000000 new         N       N    ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 
    112 026330 0x021CDE30 0x00000018 0x021CDE20 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    113 026331 0x021CDEA8 0x00000018 0x021CDE98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    114 026332 0x021CDF20 0x00000018 0x021CDF10 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    115 026333 0x021CDF98 0x00000018 0x021CDF88 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    116 008074 0x021D1008 0x00000050 0x021D0FF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    117 008068 0x021D1168 0x0000003C 0x021D1158 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    118 008069 0x021D3A30 0x00000050 0x021D3A20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    119 008078 0x021D3CE0 0x00000050 0x021D3CD0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    120 008082 0x021D3E00 0x00000050 0x021D3DF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    121 008086 0x021D3F20 0x00000050 0x021D3F10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    122 008090 0x021D3FD0 0x00000050 0x021D3FC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    123 029551 0x021DE200 0x00000034 0x021DE1F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    124 009329 0x02F28950 0x00000050 0x02F28940 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    125 009333 0x02F28A00 0x00000050 0x02F289F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    126 009343 0x02F28AB0 0x00000050 0x02F28AA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    127 009347 0x02F28B60 0x00000050 0x02F28B50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    128 009337 0x02F28C10 0x0000003C 0x02F28C00 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    129 009338 0x02F28CA8 0x00000050 0x02F28C98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    130 009351 0x02F28DC0 0x00000050 0x02F28DB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    131 009355 0x02F28FC0 0x00000050 0x02F28FB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    132 009359 0x02F29070 0x00000050 0x02F29060 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    133 009363 0x02F29120 0x00000050 0x02F29110 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    134 009323 0x02F2BE80 0x0000003C 0x02F2BE70 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    135 009324 0x02F2BF18 0x00000050 0x02F2BF08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    136 010349 0x02F2C090 0x00000050 0x02F2C080 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    137 010353 0x02F2C140 0x00000050 0x02F2C130 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    138 010357 0x02F2C1F0 0x00000050 0x02F2C1E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    139 010498 0x02F2E1F8 0x0000003C 0x02F2E1E8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    140 010499 0x02F2E290 0x00000050 0x02F2E280 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    141 010504 0x02F2E340 0x00000050 0x02F2E330 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    142 010508 0x02F2E3F0 0x00000050 0x02F2E3E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    143 010512 0x02F2E4A0 0x00000050 0x02F2E490 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    144 010516 0x02F2E550 0x0000003C 0x02F2E540 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    145 010517 0x02F2E5E8 0x00000050 0x02F2E5D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    146 010522 0x02F2E700 0x00000050 0x02F2E6F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    147 010526 0x02F2E7B0 0x00000050 0x02F2E7A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    148 010530 0x02F2E860 0x00000050 0x02F2E850 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    149 010671 0x02F304B0 0x0000003C 0x02F304A0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    150 009568 0x02F372C8 0x0000003C 0x02F372B8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    151 009569 0x02F37360 0x00000050 0x02F37350 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    152 009574 0x02F387A8 0x00000050 0x02F38798 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    153 009578 0x02F38858 0x00000050 0x02F38848 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    154 009582 0x02F38908 0x00000050 0x02F388F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    155 009586 0x02F389B8 0x00000050 0x02F389A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    156 009590 0x02F38A68 0x00000050 0x02F38A58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    157 009600 0x02F38B18 0x00000050 0x02F38B08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    158 009594 0x02F38BD8 0x0000003C 0x02F38BC8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    159 009595 0x02F38C70 0x00000050 0x02F38C60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    160 009608 0x02F38D88 0x00000050 0x02F38D78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    161 009604 0x02F38F28 0x00000050 0x02F38F18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    162 009612 0x02F38FD8 0x00000050 0x02F38FC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    163 009616 0x02F39088 0x00000050 0x02F39078 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    164 009620 0x02F39138 0x00000050 0x02F39128 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    165 009790 0x02F3E4B8 0x0000003C 0x02F3E4A8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    166 009791 0x02F42DC8 0x00000050 0x02F42DB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    167 009796 0x02F42E78 0x00000050 0x02F42E68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    168 009800 0x02F42F28 0x00000050 0x02F42F18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    169 009804 0x02F42FD8 0x00000050 0x02F42FC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    170 009808 0x02F43088 0x00000050 0x02F43078 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    171 009812 0x02F43138 0x00000050 0x02F43128 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    172 009816 0x02F43248 0x0000003C 0x02F43238 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    173 009817 0x02F432E0 0x00000050 0x02F432D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    174 009822 0x02F433F8 0x00000050 0x02F433E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    175 009826 0x02F434A8 0x00000050 0x02F43498 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    176 009830 0x02F435B8 0x00000050 0x02F435A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    177 009834 0x02F43668 0x00000050 0x02F43658 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    178 009838 0x02F43718 0x00000050 0x02F43708 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    179 009842 0x02F437C8 0x00000050 0x02F437B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    180 009985 0x02F449D0 0x0000003C 0x02F449C0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    181 010011 0x02F48768 0x0000003C 0x02F48758 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    182 010012 0x02F48800 0x00000050 0x02F487F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    183 010025 0x02F48918 0x00000050 0x02F48908 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    184 010029 0x02F48B18 0x00000050 0x02F48B08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    185 010033 0x02F48BC8 0x00000050 0x02F48BB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    186 010037 0x02F48C78 0x00000050 0x02F48C68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    187 010021 0x02F4D378 0x00000050 0x02F4D368 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    188 009986 0x02F55B58 0x00000050 0x02F55B48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    189 009991 0x02F55C08 0x00000050 0x02F55BF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    190 009995 0x02F55CB8 0x00000050 0x02F55CA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    191 009999 0x02F55D68 0x00000050 0x02F55D58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    192 010003 0x02F55E18 0x00000050 0x02F55E08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    193 010007 0x02F55EC8 0x00000050 0x02F55EB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    194 010017 0x02F55F78 0x00000050 0x02F55F68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    195 010144 0x02F567B8 0x0000003C 0x02F567A8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    196 010145 0x02F5ACF0 0x00000050 0x02F5ACE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    197 010150 0x02F5ADA0 0x00000050 0x02F5AD90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    198 010154 0x02F5AE50 0x00000050 0x02F5AE40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    199 010158 0x02F5AF00 0x00000050 0x02F5AEF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    200 010162 0x02F5AFB0 0x0000003C 0x02F5AFA0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    201 010163 0x02F5B048 0x00000050 0x02F5B038 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    202 010168 0x02F5B160 0x00000050 0x02F5B150 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    203 010172 0x02F5B210 0x00000050 0x02F5B200 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    204 010176 0x02F5B2C0 0x00000050 0x02F5B2B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    205 010344 0x02F631D0 0x00000050 0x02F631C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    206 010325 0x02F63B10 0x0000003C 0x02F63B00 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    207 010326 0x02F63BA8 0x00000050 0x02F63B98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    208 010331 0x02F63CB8 0x00000050 0x02F63CA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    209 010335 0x02F63D68 0x00000050 0x02F63D58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    210 010339 0x02F63E18 0x00000050 0x02F63E08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    211 010343 0x02F63EC8 0x0000003C 0x02F63EB8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    212 010672 0x02F641A0 0x00000050 0x02F64190 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    213 010677 0x02F642B0 0x00000050 0x02F642A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    214 010681 0x02F64360 0x00000050 0x02F64350 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    215 010685 0x02F64410 0x00000050 0x02F64400 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    216 010689 0x02F644C0 0x0000003C 0x02F644B0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    217 010690 0x02F64558 0x00000050 0x02F64548 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    218 010695 0x02F64670 0x00000050 0x02F64660 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    219 010699 0x02F64720 0x00000050 0x02F64710 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    220 010703 0x02F647D0 0x00000050 0x02F647C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    221 029617 0x02F71EA8 0x00000018 0x02F71E98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    222 011188 0x02F73440 0x0000003C 0x02F73430 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    223 011194 0x02F73BB8 0x00000050 0x02F73BA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    224 011189 0x02F74000 0x00000050 0x02F73FF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    225 029591 0x02F778C0 0x00000018 0x02F778B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    226 029893 0x02F87480 0x00000220 0x02F87470 0x00000240 0x00000000 new         N       N    ogrerenderingrun.cpp(204) OgreRenderingRun::renderFullscreenQuad 
    227 012212 0x02F940F0 0x0000003C 0x02F940E0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    228 012213 0x02F94188 0x00000050 0x02F94178 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    229 012218 0x02F942F8 0x00000050 0x02F942E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    230 012222 0x02F94408 0x00000050 0x02F943F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    231 012226 0x02F944B8 0x00000050 0x02F944A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    232 012401 0x02F96048 0x00000050 0x02F96038 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    233 012413 0x02F964F0 0x0000003C 0x02F964E0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    234 012409 0x02F965D0 0x00000050 0x02F965C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    235 012414 0x02F96780 0x00000050 0x02F96770 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    236 012391 0x02F97760 0x0000003C 0x02F97750 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    237 012392 0x02F9FC78 0x00000050 0x02F9FC68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    238 012397 0x02F9FDE8 0x00000050 0x02F9FDD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    239 012405 0x02F9FEF8 0x00000050 0x02F9FEE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    240 012419 0x02F9FFA8 0x00000050 0x02F9FF98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    241 012657 0x02FA04C0 0x0000003C 0x02FA04B0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    242 012658 0x02FA0558 0x00000050 0x02FA0548 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    243 012663 0x02FA0670 0x00000050 0x02FA0660 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    244 012667 0x02FA0720 0x0000003C 0x02FA0710 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    245 012668 0x02FA07B8 0x00000050 0x02FA07A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    246 012673 0x02FA0868 0x00000050 0x02FA0858 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    247 012677 0x02FA0918 0x00000050 0x02FA0908 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    248 012635 0x02FA5A98 0x0000003C 0x02FA5A88 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    249 012636 0x02FA8BA0 0x00000050 0x02FA8B90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    250 012641 0x02FA8CB0 0x00000050 0x02FA8CA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    251 012645 0x02FA8DC0 0x00000050 0x02FA8DB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    252 012649 0x02FA8E70 0x00000050 0x02FA8E60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    253 012653 0x02FA8F20 0x00000050 0x02FA8F10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    254 013458 0x02FB29A8 0x0000003C 0x02FB2998 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    255 013459 0x02FC1358 0x00000050 0x02FC1348 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    256 013464 0x02FC1408 0x00000050 0x02FC13F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    257 013468 0x02FC14B8 0x00000050 0x02FC14A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    258 013472 0x02FC1568 0x00000050 0x02FC1558 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    259 013476 0x02FC1618 0x0000003C 0x02FC1608 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    260 013477 0x02FC16B0 0x00000050 0x02FC16A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    261 013494 0x02FC17C8 0x0000003C 0x02FC17B8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    262 013482 0x02FC1868 0x00000050 0x02FC1858 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    263 013486 0x02FC1918 0x00000050 0x02FC1908 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    264 013490 0x02FC19C8 0x00000050 0x02FC19B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    265 013495 0x02FC1A78 0x00000050 0x02FC1A68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    266 013500 0x02FC1B28 0x00000050 0x02FC1B18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    267 013504 0x02FC1BD8 0x00000050 0x02FC1BC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    268 013508 0x02FC1DB8 0x00000050 0x02FC1DA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    269 013512 0x02FC1EC8 0x00000050 0x02FC1EB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    270 013516 0x02FC1FD8 0x00000050 0x02FC1FC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    271 013520 0x02FC2088 0x00000050 0x02FC2078 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    272 026324 0x02FCBD90 0x00000018 0x02FCBD80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    273 026325 0x02FCBE08 0x00000018 0x02FCBDF8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    274 029550 0x02FD1BB8 0x00000034 0x02FD1BA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    275 029553 0x02FD78F0 0x00000034 0x02FD78E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    276 029529 0x02FE85A8 0x00000234 0x02FE8598 0x00000254 0x00000000 new         N       N    ??(0) ?? 
    277 014519 0x02FECDF0 0x0000003C 0x02FECDE0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    278 014520 0x02FECE88 0x00000050 0x02FECE78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    279 014525 0x02FEE6C8 0x00000050 0x02FEE6B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    280 014529 0x02FEE848 0x00000050 0x02FEE838 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    281 014533 0x02FEE9D8 0x00000050 0x02FEE9C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    282 014537 0x02FEEAF8 0x00000050 0x02FEEAE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    283 014541 0x02FEEBA8 0x00000050 0x02FEEB98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    284 029549 0x02FEEC58 0x00000018 0x02FEEC48 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    285 030589 0x02FFAF48 0x00000034 0x02FFAF38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    286 015093 0x02FFCD78 0x0000003C 0x02FFCD68 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    287 015094 0x02FFCE10 0x00000050 0x02FFCE00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    288 015099 0x02FFCF20 0x00000050 0x02FFCF10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    289 015103 0x02FFCFD0 0x00000050 0x02FFCFC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    290 015107 0x02FFD080 0x00000050 0x02FFD070 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    291 015111 0x02FFD130 0x0000003C 0x02FFD120 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    292 015112 0x02FFD1C8 0x00000050 0x02FFD1B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    293 015117 0x02FFD2E0 0x00000050 0x02FFD2D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    294 015121 0x02FFD390 0x00000050 0x02FFD380 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    295 015125 0x02FFD440 0x00000050 0x02FFD430 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    296 015839 0x0300AA88 0x0000003C 0x0300AA78 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    297 015734 0x0300AB28 0x00000050 0x0300AB18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    298 015739 0x0300ABD8 0x00000050 0x0300ABC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    299 015743 0x0300AC88 0x00000050 0x0300AC78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    300 015747 0x0300AD38 0x00000050 0x0300AD28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    301 015751 0x0300ADE8 0x00000050 0x0300ADD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    302 015755 0x0300AE98 0x00000050 0x0300AE88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    303 015760 0x0300AF48 0x00000050 0x0300AF38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    304 015765 0x0300B060 0x00000050 0x0300B050 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    305 015769 0x0300B110 0x00000050 0x0300B100 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    306 015773 0x0300B1C0 0x00000050 0x0300B1B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    307 015777 0x0300B270 0x00000050 0x0300B260 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    308 015781 0x0300B320 0x00000050 0x0300B310 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    309 015785 0x0300B3D0 0x0000003C 0x0300B3C0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    310 015786 0x0300B468 0x00000050 0x0300B458 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    311 015791 0x0300B580 0x00000050 0x0300B570 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    312 015795 0x0300B630 0x00000050 0x0300B620 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    313 015799 0x0300B6E0 0x00000050 0x0300B6D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    314 015803 0x0300B790 0x00000050 0x0300B780 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    315 015807 0x0300B840 0x00000050 0x0300B830 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    316 015811 0x0300B8F0 0x00000050 0x0300B8E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    317 015831 0x0300B9A0 0x00000050 0x0300B990 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    318 015840 0x0300BAF0 0x00000050 0x0300BAE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    319 015845 0x0300BBA0 0x00000050 0x0300BB90 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    320 015849 0x0300BC50 0x00000050 0x0300BC40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    321 015853 0x0300BD00 0x00000050 0x0300BCF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    322 015857 0x0300BDB0 0x00000050 0x0300BDA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    323 015861 0x0300BE60 0x00000050 0x0300BE50 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    324 015865 0x0300BF10 0x00000050 0x0300BF00 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    325 015869 0x0300BFC0 0x00000050 0x0300BFB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    326 015873 0x0300C070 0x00000050 0x0300C060 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    327 015877 0x0300C120 0x00000050 0x0300C110 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    328 015881 0x0300C1D0 0x00000050 0x0300C1C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    329 015885 0x0300C280 0x00000050 0x0300C270 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    330 015889 0x0300C330 0x00000050 0x0300C320 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    331 015733 0x0300F850 0x0000003C 0x0300F840 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    332 015759 0x0300F8E8 0x0000003C 0x0300F8D8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    333 015815 0x03017C38 0x00000050 0x03017C28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    334 015819 0x03017CE8 0x00000050 0x03017CD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    335 015823 0x03017D98 0x00000050 0x03017D88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    336 015827 0x03017E48 0x00000050 0x03017E38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    337 015835 0x03017EF8 0x00000050 0x03017EE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    338 029547 0x03018078 0x00000104 0x03018068 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight 
    339 029618 0x03019AE8 0x000000D4 0x03019AD8 0x000000F4 0x00000000 new         N       N    ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 
    340 029643 0x0301B5D8 0x00000018 0x0301B5C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    341 027557 0x0301E2F0 0x00000034 0x0301E2E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    342 016684 0x03031808 0x0000003C 0x030317F8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    343 016685 0x03031948 0x00000050 0x03031938 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    344 016690 0x03031A58 0x00000050 0x03031A48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    345 016694 0x03031B68 0x00000050 0x03031B58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
    346 029548 0x03037818 0x00000018 0x03037808 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    347 029552 0x03038F18 0x00000104 0x03038F08 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight 
    348 026404 0x03062230 0x0000000C 0x03062220 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    349 026395 0x03066EB8 0x00000034 0x03066EA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    350 026396 0x03066F48 0x00000034 0x03066F38 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    351 026397 0x03066FD8 0x00000034 0x03066FC8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    352 026398 0x03067068 0x00000034 0x03067058 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    353 026399 0x030670F8 0x00000034 0x030670E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    354 026400 0x03067188 0x00000034 0x03067178 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    355 026401 0x03067218 0x00000034 0x03067208 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    356 026402 0x030672A8 0x00000034 0x03067298 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    357 026403 0x03067338 0x00000034 0x03067328 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    358 026409 0x030673C8 0x00000034 0x030673B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    359 026410 0x03067458 0x00000034 0x03067448 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    360 026411 0x03067548 0x00000034 0x03067538 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    361 026412 0x03067638 0x00000034 0x03067628 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    362 026413 0x03067728 0x00000034 0x03067718 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    363 026414 0x03067818 0x00000034 0x03067808 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    364 026415 0x03067908 0x00000034 0x030678F8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    365 026416 0x03067998 0x00000034 0x03067988 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    366 026417 0x03067A28 0x00000034 0x03067A18 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    367 026418 0x03067AB8 0x00000034 0x03067AA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    368 026419 0x03067BA8 0x0000000C 0x03067B98 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    369 026420 0x03067C10 0x00000084 0x03067C00 0x000000A4 0x00000000 new         N       N    ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 
    370 026421 0x03067CF0 0x00000034 0x03067CE0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    371 026422 0x03067D80 0x00000034 0x03067D70 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    372 026423 0x03067E70 0x00000034 0x03067E60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    373 026321 0x030A3518 0x00000018 0x030A3508 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    374 026323 0x030A3590 0x00000018 0x030A3580 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    375 026322 0x030A4D90 0x00000008 0x030A4D80 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
    376 026326 0x030A4EC0 0x00000018 0x030A4EB0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    377 026327 0x030A4F38 0x00000018 0x030A4F28 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    378 026371 0x030A5280 0x00000034 0x030A5270 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    379 026372 0x030A5310 0x00000034 0x030A5300 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    380 026373 0x030A53A0 0x00000034 0x030A5390 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    381 026374 0x030A5430 0x00000034 0x030A5420 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    382 026375 0x030A54C0 0x00000034 0x030A54B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    383 026376 0x030A5550 0x00000034 0x030A5540 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    384 026377 0x030A55E0 0x00000034 0x030A55D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    385 026378 0x030A5670 0x00000034 0x030A5660 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    386 026379 0x030A5700 0x00000034 0x030A56F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    387 026380 0x030A5790 0x00000034 0x030A5780 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    388 026381 0x030A5820 0x00000034 0x030A5810 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    389 026382 0x030A58B0 0x00000034 0x030A58A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    390 026383 0x030A5940 0x00000034 0x030A5930 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    391 026385 0x030A59D0 0x000000E8 0x030A59C0 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 
    392 026386 0x030A5B18 0x00000034 0x030A5B08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    393 026387 0x030A5BA8 0x00000034 0x030A5B98 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    394 026388 0x030A5C38 0x00000034 0x030A5C28 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    395 026389 0x030A5CC8 0x00000034 0x030A5CB8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    396 026390 0x030A5D58 0x00000034 0x030A5D48 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    397 026391 0x030A5DE8 0x00000034 0x030A5DD8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    398 026392 0x030A5E78 0x00000034 0x030A5E68 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    399 026393 0x030A5F08 0x00000034 0x030A5EF8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    400 026394 0x030A5F98 0x00000034 0x030A5F88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    401 027068 0x030ADC68 0x00000018 0x030ADC58 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    402 026405 0x030ADD10 0x0000009C 0x030ADD00 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 
    403 026406 0x030ADE08 0x00000034 0x030ADDF8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    404 026407 0x030ADE98 0x00000034 0x030ADE88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    405 026408 0x030ADF28 0x00000034 0x030ADF18 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    406 026457 0x030AE018 0x00000034 0x030AE008 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    407 026458 0x030AE0A8 0x00000034 0x030AE098 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    408 026459 0x030AE138 0x00000034 0x030AE128 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    409 026460 0x030AE1C8 0x00000034 0x030AE1B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    410 026461 0x030AE258 0x00000034 0x030AE248 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    411 026462 0x030AE2E8 0x00000034 0x030AE2D8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    412 026463 0x030AE378 0x00000034 0x030AE368 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    413 026464 0x030AE468 0x00000034 0x030AE458 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    414 026465 0x030AE4F8 0x00000034 0x030AE4E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    415 026466 0x030AE588 0x00000034 0x030AE578 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    416 026467 0x030AE618 0x00000034 0x030AE608 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    417 026469 0x030AE708 0x00000034 0x030AE6F8 0x00000054 0x00000000 new         N       N    reflectiontest.h(302) RaytraceDemoApplication::createScene 
    418 026589 0x030B0760 0x00000030 0x030B0750 0x00000050 0x00000000 new         N       N    framecapture.h(87) FrameCapture::addAnimableNode 
    419 026591 0x030B07F0 0x00000030 0x030B07E0 0x00000050 0x00000000 new         N       N    framecapture.h(87) FrameCapture::addAnimableNode 
    420 026592 0x030B0880 0x00000008 0x030B0870 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    421 026316 0x030B6640 0x0000000C 0x030B6630 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    422 029592 0x030F9058 0x000000E8 0x030F9048 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 
    423 029593 0x030F91A0 0x00000034 0x030F9190 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    424 027097 0x030FB0B0 0x00000034 0x030FB0A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    425 027072 0x03109C58 0x00000004 0x03109C48 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    426 027073 0x03109CB8 0x00000018 0x03109CA8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    427 027095 0x03109D30 0x00000108 0x03109D20 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
    428 027096 0x03109E98 0x00000134 0x03109E88 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
    429 027064 0x0310CAE8 0x000000C4 0x0310CAD8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    430 027066 0x0310CC08 0x00000020 0x0310CBF8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    431 027067 0x0310CC88 0x00000104 0x0310CC78 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 
    432 027069 0x0310CE98 0x00000018 0x0310CE88 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    433 027070 0x0310CF10 0x00000034 0x0310CF00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    434 027071 0x0310CFA0 0x0000000C 0x0310CF90 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    435 027217 0x0310E008 0x00000018 0x0310DFF8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    436 027240 0x0310E100 0x00000108 0x0310E0F0 0x00000128 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(110) OgreDistanceCubeMapRenderTechniqueFacto 
    437 027241 0x0310E328 0x00000134 0x0310E318 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
    438 027242 0x0310E5D8 0x00000034 0x0310E5C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    439 026317 0x03110078 0x00000018 0x03110068 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    440 026318 0x031109A0 0x00000018 0x03110990 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    441 027360 0x0314F560 0x00000018 0x0314F550 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    442 027397 0x0315BC78 0x00000108 0x0315BC68 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
    443 027398 0x0315BDE0 0x00000134 0x0315BDD0 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
    444 027399 0x0315BF70 0x00000034 0x0315BF60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    445 027517 0x0315F308 0x00000018 0x0315F2F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    446 027681 0x0315F400 0x00000020 0x0315F3F0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    447 027555 0x0315F4B0 0x00000108 0x0315F4A0 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
    448 027556 0x0315F618 0x00000134 0x0315F608 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
    449 027770 0x03163EE8 0x0000000C 0x03163ED8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    450 027686 0x03164BA8 0x0000000C 0x03164B98 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    451 027678 0x03166250 0x00000010 0x03166240 0x00000030 0x00000000 new         N       N    ??(0) ?? 
    452 027675 0x031664B0 0x00000018 0x031664A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    453 027679 0x03166680 0x000000C4 0x03166670 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    454 027682 0x031667A0 0x00000104 0x03166790 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 
    455 027683 0x03166900 0x00000018 0x031668F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    456 027684 0x03166978 0x00000018 0x03166968 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    457 027685 0x031669F0 0x00000034 0x031669E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    458 027688 0x03166A80 0x00000018 0x03166A70 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    459 027700 0x03166AF8 0x000000E4 0x03166AE8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    460 027796 0x03166C38 0x00000004 0x03166C28 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    461 027797 0x031674C0 0x000000C4 0x031674B0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    462 027801 0x031675E0 0x00000018 0x031675D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    463 027813 0x03167658 0x000000E4 0x03167648 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    464 027900 0x03167798 0x00000004 0x03167788 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    465 027903 0x031677F8 0x00000020 0x031677E8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    466 027874 0x03167B70 0x0000000C 0x03167B60 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    467 027977 0x03169808 0x0000000C 0x031697F8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    468 027799 0x03175F60 0x00000020 0x03175F50 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    469 027901 0x03176E20 0x000000C4 0x03176E10 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    470 027905 0x03176FA8 0x00000018 0x03176F98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    471 027917 0x03177020 0x000000E4 0x03177010 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    472 028003 0x03177160 0x00000004 0x03177150 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    473 028004 0x0317A078 0x000000C4 0x0317A068 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    474 028006 0x0317A198 0x00000020 0x0317A188 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    475 028008 0x0317A218 0x00000018 0x0317A208 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    476 028020 0x0317A290 0x000000E4 0x0317A280 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    477 028108 0x0317A3D0 0x00000004 0x0317A3C0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    478 028111 0x0317A430 0x00000020 0x0317A420 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    479 028082 0x0317B680 0x0000000C 0x0317B670 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    480 028109 0x0317D2A0 0x000000C4 0x0317D290 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    481 028321 0x0317D3C0 0x00000018 0x0317D3B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    482 028113 0x0317D438 0x00000018 0x0317D428 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    483 028125 0x0317D4B0 0x000000E4 0x0317D4A0 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    484 028212 0x03185250 0x00000004 0x03185240 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    485 028186 0x031855B8 0x0000000C 0x031855A8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    486 028213 0x03188170 0x000000C4 0x03188160 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    487 028215 0x03188290 0x00000020 0x03188280 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    488 028216 0x03188310 0x00000018 0x03188300 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    489 028228 0x03188388 0x000000E4 0x03188378 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    490 028316 0x031884C8 0x00000004 0x031884B8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    491 028290 0x03189778 0x0000000C 0x03189768 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    492 028317 0x0318B398 0x000000C4 0x0318B388 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    493 028319 0x0318B4B8 0x00000020 0x0318B4A8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    494 028631 0x0318B538 0x00000018 0x0318B528 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    495 028333 0x0318B5B8 0x000000E4 0x0318B5A8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    496 028421 0x0318B6F8 0x00000004 0x0318B6E8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    497 028395 0x0318C9D8 0x0000000C 0x0318C9C8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    498 028422 0x0318E5F8 0x000000C4 0x0318E5E8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    499 028424 0x0318E718 0x00000020 0x0318E708 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    500 028425 0x0318E798 0x00000018 0x0318E788 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    501 028437 0x0318E810 0x000000E4 0x0318E800 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    502 028524 0x0318E950 0x00000004 0x0318E940 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    503 028498 0x0318ECB8 0x0000000C 0x0318ECA8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    504 028600 0x03190B58 0x0000000C 0x03190B48 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    505 028525 0x031994A8 0x000000C4 0x03199498 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    506 028527 0x031995C8 0x00000020 0x031995B8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    507 028528 0x03199648 0x00000018 0x03199638 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    508 028540 0x031996C0 0x000000E4 0x031996B0 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    509 028626 0x03199800 0x00000004 0x031997F0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    510 028627 0x0319C760 0x000000C4 0x0319C750 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    511 028629 0x0319C880 0x00000020 0x0319C870 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    512 028630 0x0319C900 0x00000034 0x0319C8F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    513 028643 0x0319C990 0x000000E4 0x0319C980 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    514 028731 0x0319CAD0 0x00000004 0x0319CAC0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    515 028705 0x0319DDB0 0x0000000C 0x0319DDA0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    516 028732 0x0319F9D0 0x000000C4 0x0319F9C0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    517 028734 0x0319FAF0 0x00000020 0x0319FAE0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    518 028735 0x0319FB70 0x00000018 0x0319FB60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    519 028747 0x0319FBE8 0x000000E4 0x0319FBD8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    520 028834 0x0319FD28 0x00000004 0x0319FD18 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    521 028808 0x031A0090 0x0000000C 0x031A0080 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    522 028910 0x031A1F30 0x0000000C 0x031A1F20 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    523 028835 0x031A2C48 0x000000C4 0x031A2C38 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
    524 028837 0x031A2D68 0x00000020 0x031A2D58 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    525 028838 0x031A2DE8 0x00000018 0x031A2DD8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    526 028850 0x031A2E60 0x000000E4 0x031A2E50 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
    527 028936 0x031A2FA0 0x00000004 0x031A2F90 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     11026344 0x0214DE48 0x00000018 0x0214DE38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     12026345 0x0214DEB0 0x00000018 0x0214DEA0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     13026346 0x0214DF18 0x00000018 0x0214DF08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     14026347 0x0214DF80 0x00000018 0x0214DF70 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     15026348 0x0214DFE8 0x00000018 0x0214DFD8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     16026349 0x0214E050 0x000000E4 0x0214E040 0x00000104 0x00000000 new         N       N    ogreilluminationmanager.cpp(96) OgreIlluminationManager::OgreIlluminati 
     17026350 0x0214E180 0x00000034 0x0214E170 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     18026351 0x0214E200 0x00000034 0x0214E1F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     19026352 0x0214E280 0x00000034 0x0214E270 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     20026400 0x02155F58 0x00000034 0x02155F48 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     21026401 0x02155FD8 0x00000034 0x02155FC8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     22026402 0x02156058 0x00000034 0x02156048 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     23026403 0x021560D8 0x00000034 0x021560C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     24026410 0x02156158 0x00000034 0x02156148 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     25026411 0x021561D8 0x00000034 0x021561C8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     26026412 0x02156258 0x00000034 0x02156248 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     27026413 0x02156328 0x00000034 0x02156318 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     28026414 0x021563F8 0x00000034 0x021563E8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     29026415 0x021564C8 0x00000034 0x021564B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     30026416 0x02156598 0x00000034 0x02156588 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     31026417 0x02156668 0x00000034 0x02156658 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     32026418 0x021566E8 0x00000034 0x021566D8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     33026419 0x02156768 0x00000034 0x02156758 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     34026420 0x021567E8 0x00000034 0x021567D8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     35026421 0x021568B8 0x0000000C 0x021568A8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     36026422 0x02156910 0x00000084 0x02156900 0x000000A4 0x00000000 new         N       N    ogreilluminationmanager.cpp(104) OgreIlluminationManager::OgreIlluminati 
     37026423 0x021569E0 0x00000034 0x021569D0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     38026424 0x02156A60 0x00000034 0x02156A50 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     39026425 0x02156B30 0x00000034 0x02156B20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     40026426 0x02156C00 0x00000034 0x02156BF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     41026427 0x02156CD0 0x0000000C 0x02156CC0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     42026429 0x02156D28 0x00000034 0x02156D18 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     43026315 0x02156E30 0x000001F8 0x02156E20 0x00000218 0x00000000 new         N       N    ogreilluminationmanager.cpp(126) OgreIlluminationManager::getSingleton 
     44026336 0x02157078 0x00000018 0x02157068 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     45026337 0x021570E0 0x00000018 0x021570D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     46026338 0x02157148 0x00000018 0x02157138 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     47026322 0x02157278 0x00000034 0x02157268 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     48026334 0x02157698 0x00000018 0x02157688 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     49026335 0x02157700 0x00000018 0x021576F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     50026328 0x02157818 0x00000018 0x02157808 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     51026329 0x02157880 0x00000018 0x02157870 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     52026320 0x02157FA0 0x00000018 0x02157F90 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     53030591 0x02160A30 0x00000034 0x02160A20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     54026324 0x021696E8 0x00000008 0x021696D8 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
     55026321 0x02184760 0x00000034 0x02184750 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     56026353 0x02185438 0x00000034 0x02185428 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     57026354 0x021854B8 0x00000034 0x021854A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     58026355 0x02185538 0x00000034 0x02185528 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     59026356 0x021855B8 0x00000034 0x021855A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     60026357 0x02185638 0x00000034 0x02185628 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     61026358 0x021856B8 0x00000034 0x021856A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     62026359 0x02185738 0x00000034 0x02185728 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     63026360 0x021857B8 0x00000034 0x021857A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     64026361 0x02185838 0x00000034 0x02185828 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     65026362 0x021858B8 0x00000034 0x021858A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     66026363 0x02185938 0x00000034 0x02185928 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     67026364 0x021859B8 0x00000034 0x021859A8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     68026365 0x02185A38 0x00000034 0x02185A28 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     69026366 0x02185AB8 0x00000034 0x02185AA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     70026367 0x02185B38 0x0000000C 0x02185B28 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     71026369 0x02185B90 0x00000034 0x02185B80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     72026323 0x02185E50 0x00000018 0x02185E40 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     73026325 0x02185EB8 0x00000018 0x02185EA8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     74026339 0x02185FC0 0x00000018 0x02185FB0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     75026340 0x02186028 0x00000018 0x02186018 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     76026341 0x02186090 0x00000018 0x02186080 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     77026342 0x021860F8 0x00000018 0x021860E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     78026343 0x02186160 0x00000018 0x02186150 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     79026384 0x02186888 0x00000034 0x02186878 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     80026385 0x02186908 0x00000034 0x021868F8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     81026386 0x02186988 0x0000000C 0x02186978 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     82026387 0x021869E0 0x000000E8 0x021869D0 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(100) OgreIlluminationManager::OgreIlluminati 
     83026388 0x02186B18 0x00000034 0x02186B08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     84026389 0x02186B98 0x00000034 0x02186B88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     85026390 0x02186C18 0x00000034 0x02186C08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     86026391 0x02186C98 0x00000034 0x02186C88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     87026392 0x02186D18 0x00000034 0x02186D08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     88026393 0x02186D98 0x00000034 0x02186D88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     89026394 0x02186E18 0x00000034 0x02186E08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     90026395 0x02186E98 0x00000034 0x02186E88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     91026396 0x02186F18 0x00000034 0x02186F08 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     92026397 0x02186F98 0x00000034 0x02186F88 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     93026398 0x02187018 0x00000034 0x02187008 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     94026399 0x02187098 0x00000034 0x02187088 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     95026332 0x021A56F0 0x00000018 0x021A56E0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     96026333 0x021A5758 0x00000018 0x021A5748 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     97007412 0x021AE778 0x00000050 0x021AE768 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     98007530 0x021AF098 0x0000003C 0x021AF088 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     99007406 0x021AF138 0x0000003C 0x021AF128 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     100007407 0x021AF1C0 0x00000050 0x021AF1B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     101007416 0x021AF410 0x00000050 0x021AF400 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     102007420 0x021AF550 0x00000050 0x021AF540 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     103007424 0x021AF6A0 0x00000050 0x021AF690 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     104007428 0x021AF740 0x00000050 0x021AF730 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     105007531 0x021AF7E0 0x00000050 0x021AF7D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     106007536 0x021B9A78 0x00000050 0x021B9A68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     107007544 0x021B9B18 0x00000050 0x021B9B08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     108007540 0x021B9BC8 0x00000050 0x021B9BB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     109007548 0x021B9CC8 0x00000050 0x021B9CB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     110007552 0x021B9E28 0x00000050 0x021B9E18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     111007745 0x021BAB00 0x00000050 0x021BAAF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     112007739 0x021BAC30 0x0000003C 0x021BAC20 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     113007740 0x021BD1A0 0x00000050 0x021BD190 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     114007757 0x021BD290 0x00000050 0x021BD280 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     115007749 0x021BD3F0 0x00000050 0x021BD3E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     116007753 0x021BD4F0 0x00000050 0x021BD4E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     117007761 0x021BD640 0x00000050 0x021BD630 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     118008070 0x021C0870 0x0000003C 0x021C0860 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     119008076 0x021C0950 0x00000050 0x021C0940 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     120008071 0x021C2EE8 0x00000050 0x021C2ED8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     121026319 0x021C3028 0x00000018 0x021C3018 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     122008088 0x021C4038 0x00000050 0x021C4028 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     123008080 0x021C40E8 0x00000050 0x021C40D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     124008084 0x021C4238 0x00000050 0x021C4228 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     125008092 0x021C4388 0x00000050 0x021C4378 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     126009331 0x021DE270 0x00000050 0x021DE260 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     127009335 0x021DE310 0x00000050 0x021DE300 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     128009345 0x021DE3B0 0x00000050 0x021DE3A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     129009339 0x021DE450 0x0000003C 0x021DE440 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     130009340 0x021DE4D8 0x00000050 0x021DE4C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     131009353 0x021DE5D0 0x00000050 0x021DE5C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     132009349 0x021DE730 0x00000050 0x021DE720 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     133009357 0x021DE7D0 0x00000050 0x021DE7C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     134009361 0x021DE870 0x00000050 0x021DE860 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     135009365 0x021DE910 0x00000050 0x021DE900 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     136009570 0x021DF930 0x0000003C 0x021DF920 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     137009326 0x02F19B20 0x00000050 0x02F19B10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     138009325 0x02F1A8D8 0x0000003C 0x02F1A8C8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     139009792 0x02F1B8A0 0x0000003C 0x02F1B890 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     140009793 0x02F1B928 0x00000050 0x02F1B918 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     141009798 0x02F1B9C8 0x00000050 0x02F1B9B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     142009802 0x02F1BA68 0x00000050 0x02F1BA58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     143009806 0x02F1BB08 0x00000050 0x02F1BAF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     144009810 0x02F1BBA8 0x00000050 0x02F1BB98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     145009814 0x02F1BC48 0x00000050 0x02F1BC38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     146009818 0x02F1BD38 0x0000003C 0x02F1BD28 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     147009819 0x02F1BDC0 0x00000050 0x02F1BDB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     148009824 0x02F1BEB8 0x00000050 0x02F1BEA8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     149009828 0x02F1BF58 0x00000050 0x02F1BF48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     150009832 0x02F1C048 0x00000050 0x02F1C038 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     151009836 0x02F1C0E8 0x00000050 0x02F1C0D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     152009840 0x02F1C188 0x00000050 0x02F1C178 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     153009844 0x02F1C228 0x00000050 0x02F1C218 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     154009993 0x02F1C6C0 0x00000050 0x02F1C6B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     155009987 0x02F1C9F0 0x0000003C 0x02F1C9E0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     156009997 0x02F1D338 0x00000050 0x02F1D328 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     157010001 0x02F1D3D8 0x00000050 0x02F1D3C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     158010005 0x02F1D478 0x00000050 0x02F1D468 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     159010009 0x02F1D518 0x00000050 0x02F1D508 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     160010019 0x02F1D5B8 0x00000050 0x02F1D5A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     161010013 0x02F1D658 0x0000003C 0x02F1D648 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     162010014 0x02F1D6E0 0x00000050 0x02F1D6D0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     163010027 0x02F1D7D8 0x00000050 0x02F1D7C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     164010023 0x02F1D938 0x00000050 0x02F1D928 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     165010031 0x02F1D9D8 0x00000050 0x02F1D9C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     166010035 0x02F1DA78 0x00000050 0x02F1DA68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     167010039 0x02F1DB18 0x00000050 0x02F1DB08 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     168009571 0x02F21C58 0x00000050 0x02F21C48 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     169009576 0x02F22730 0x00000050 0x02F22720 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     170009580 0x02F227D0 0x00000050 0x02F227C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     171009584 0x02F22870 0x00000050 0x02F22860 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     172009588 0x02F22910 0x00000050 0x02F22900 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     173009592 0x02F25F38 0x00000050 0x02F25F28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     174009596 0x02F26028 0x0000003C 0x02F26018 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     175009597 0x02F260B0 0x00000050 0x02F260A0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     176009602 0x02F261A8 0x00000050 0x02F26198 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     177009606 0x02F26248 0x00000050 0x02F26238 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     178009610 0x02F26338 0x00000050 0x02F26328 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     179009614 0x02F263D8 0x00000050 0x02F263C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     180009618 0x02F26478 0x00000050 0x02F26468 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     181009622 0x02F26518 0x00000050 0x02F26508 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     182010673 0x02F28148 0x0000003C 0x02F28138 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     183010674 0x02F281D0 0x00000050 0x02F281C0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     184010679 0x02F282C0 0x00000050 0x02F282B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     185010683 0x02F28360 0x00000050 0x02F28350 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     186010687 0x02F28400 0x00000050 0x02F283F0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     187010691 0x02F284A0 0x0000003C 0x02F28490 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     188010692 0x02F28528 0x00000050 0x02F28518 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     189010697 0x02F28620 0x00000050 0x02F28610 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     190010701 0x02F286C0 0x00000050 0x02F286B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     191010705 0x02F28760 0x00000050 0x02F28750 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     192029553 0x02F29EB8 0x00000034 0x02F29EA8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     193029619 0x02F3ABE8 0x00000018 0x02F3ABD8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     194009988 0x02F42F08 0x00000050 0x02F42EF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     195010170 0x02F434B8 0x00000050 0x02F434A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     196010147 0x02F435A8 0x00000050 0x02F43598 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     197010146 0x02F43F90 0x0000003C 0x02F43F80 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     198010152 0x02F47A08 0x00000050 0x02F479F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     199010156 0x02F47AA8 0x00000050 0x02F47A98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     200010160 0x02F47B48 0x00000050 0x02F47B38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     201010164 0x02F47BE8 0x0000003C 0x02F47BD8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     202010165 0x02F47C70 0x00000050 0x02F47C60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     203010174 0x02F47E88 0x00000050 0x02F47E78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     204010178 0x02F47F28 0x00000050 0x02F47F18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     205029620 0x02F4CA88 0x000000D4 0x02F4CA78 0x000000F4 0x00000000 new         N       N    ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 
     206010327 0x02F4CFA8 0x0000003C 0x02F4CF98 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     207010328 0x02F4D030 0x00000050 0x02F4D020 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     208010333 0x02F4D120 0x00000050 0x02F4D110 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     209010337 0x02F4D1C0 0x00000050 0x02F4D1B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     210010341 0x02F4D260 0x00000050 0x02F4D250 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     211010345 0x02F4D300 0x0000003C 0x02F4D2F0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     212010346 0x02F4D388 0x00000050 0x02F4D378 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     213010351 0x02F4D480 0x00000050 0x02F4D470 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     214010355 0x02F4D520 0x00000050 0x02F4D510 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     215010359 0x02F4D5C0 0x00000050 0x02F4D5B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     216010501 0x02F51610 0x00000050 0x02F51600 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     217010500 0x02F51EE8 0x0000003C 0x02F51ED8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     218010506 0x02F52820 0x00000050 0x02F52810 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     219010510 0x02F528C0 0x00000050 0x02F528B0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     220010514 0x02F52960 0x00000050 0x02F52950 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     221010518 0x02F52A00 0x0000003C 0x02F529F0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     222010519 0x02F52B90 0x00000050 0x02F52B80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     223010524 0x02F52C30 0x00000050 0x02F52C20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     224010528 0x02F52CD0 0x00000050 0x02F52CC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     225010532 0x02F52D70 0x00000050 0x02F52D60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     226029593 0x02F5DD00 0x00000018 0x02F5DCF0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     227011190 0x02F5E4D0 0x0000003C 0x02F5E4C0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     228011191 0x02F5E558 0x00000050 0x02F5E548 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     229011196 0x02F60140 0x00000050 0x02F60130 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     230029621 0x02F75168 0x00000034 0x02F75158 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     231029531 0x02F77BF0 0x00000234 0x02F77BE0 0x00000254 0x00000000 new         N       N    ??(0) ?? 
     232029594 0x02F7CBB8 0x000000E8 0x02F7CBA8 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 
     233029552 0x02F7D270 0x00000034 0x02F7D260 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     234012224 0x02F7D6A8 0x00000050 0x02F7D698 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     235012214 0x02F7DD70 0x0000003C 0x02F7DD60 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     236012215 0x02F7DDF8 0x00000050 0x02F7DDE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     237012220 0x02F7DF78 0x00000050 0x02F7DF68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     238012228 0x02F7F000 0x00000050 0x02F7EFF0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     239012403 0x02F7FC90 0x00000050 0x02F7FC80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     240012407 0x02F7FD30 0x00000050 0x02F7FD20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     241012411 0x02F7FDD0 0x00000050 0x02F7FDC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     242012415 0x02F7FE70 0x0000003C 0x02F7FE60 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     243012416 0x02F7FEF8 0x00000050 0x02F7FEE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     244012421 0x02F7FFF0 0x00000050 0x02F7FFE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     245012393 0x02F81A40 0x0000003C 0x02F81A30 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     246012394 0x02F89EF0 0x00000050 0x02F89EE0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     247012399 0x02F89F90 0x00000050 0x02F89F80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     248012637 0x02F8A4F8 0x0000003C 0x02F8A4E8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     249012638 0x02F8B608 0x00000050 0x02F8B5F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     250012643 0x02F8B738 0x00000050 0x02F8B728 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     251012647 0x02F8B7D8 0x00000050 0x02F8B7C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     252012651 0x02F8B878 0x00000050 0x02F8B868 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     253012655 0x02F8B918 0x00000050 0x02F8B908 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     254012659 0x02F8BA08 0x0000003C 0x02F8B9F8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     255012660 0x02F8BA90 0x00000050 0x02F8BA80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     256012665 0x02F8BB88 0x00000050 0x02F8BB78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     257012669 0x02F8BC28 0x0000003C 0x02F8BC18 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     258012670 0x02F8BCB0 0x00000050 0x02F8BCA0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     259012675 0x02F8BDA8 0x00000050 0x02F8BD98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     260012679 0x02F8BE48 0x00000050 0x02F8BE38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     261013461 0x02F9B828 0x00000050 0x02F9B818 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     262013470 0x02F9B8C8 0x00000050 0x02F9B8B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     263013474 0x02F9B968 0x00000050 0x02F9B958 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     264013478 0x02F9BA08 0x0000003C 0x02F9B9F8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     265013479 0x02F9BA90 0x00000050 0x02F9BA80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     266013484 0x02F9BB30 0x00000050 0x02F9BB20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     267013488 0x02F9BBD0 0x00000050 0x02F9BBC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     268013492 0x02F9BC70 0x00000050 0x02F9BC60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     269013496 0x02F9BD10 0x0000003C 0x02F9BD00 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     270013497 0x02F9BD98 0x00000050 0x02F9BD88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     271013502 0x02F9BE90 0x00000050 0x02F9BE80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     272013506 0x02F9BF30 0x00000050 0x02F9BF20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     273013510 0x02F9C020 0x00000050 0x02F9C010 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     274013514 0x02F9C160 0x00000050 0x02F9C150 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     275013518 0x02F9C250 0x00000050 0x02F9C240 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     276013522 0x02F9C2F0 0x00000050 0x02F9C2E0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     277013460 0x02FA2D00 0x0000003C 0x02FA2CF0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     278013466 0x02FABF90 0x00000050 0x02FABF80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     279029549 0x02FBBE88 0x00000104 0x02FBBE78 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight 
     280029554 0x02FBE6B0 0x00000104 0x02FBE6A0 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight 
     281029555 0x02FD23F0 0x00000034 0x02FD23E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     282029645 0x02FD2AD8 0x00000018 0x02FD2AC8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     283014521 0x02FD2F38 0x0000003C 0x02FD2F28 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     284014522 0x02FD2FC0 0x00000050 0x02FD2FB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     285014527 0x02FD4768 0x00000050 0x02FD4758 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     286014531 0x02FD48F8 0x00000050 0x02FD48E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     287014535 0x02FD4A88 0x00000050 0x02FD4A78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     288014539 0x02FD4B88 0x00000050 0x02FD4B78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     289014543 0x02FD4C28 0x00000050 0x02FD4C18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     290029551 0x02FE1A70 0x00000018 0x02FE1A60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     291015095 0x02FE2970 0x0000003C 0x02FE2960 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     292015096 0x02FE2A90 0x00000050 0x02FE2A80 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     293015101 0x02FE2B30 0x00000050 0x02FE2B20 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     294015105 0x02FE2BD0 0x00000050 0x02FE2BC0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     295015109 0x02FE2C70 0x00000050 0x02FE2C60 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     296015113 0x02FE2D10 0x0000003C 0x02FE2D00 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     297015114 0x02FE2D98 0x00000050 0x02FE2D88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     298015119 0x02FE2F20 0x00000050 0x02FE2F10 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     299015123 0x02FE2FC0 0x00000050 0x02FE2FB0 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     300015127 0x02FE3060 0x00000050 0x02FE3050 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     301015735 0x02FE6348 0x0000003C 0x02FE6338 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     302015761 0x02FF0628 0x0000003C 0x02FF0618 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     303015736 0x02FF06B8 0x00000050 0x02FF06A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     304026404 0x02FF0758 0x00000034 0x02FF0748 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     305015741 0x02FF07E8 0x00000050 0x02FF07D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     306015745 0x02FF0888 0x00000050 0x02FF0878 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     307015749 0x02FF0928 0x00000050 0x02FF0918 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     308015753 0x02FF09C8 0x00000050 0x02FF09B8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     309015757 0x02FF0A68 0x00000050 0x02FF0A58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     310015762 0x02FF0B08 0x00000050 0x02FF0AF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     311015767 0x02FF0BA8 0x00000050 0x02FF0B98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     312015771 0x02FF0C48 0x00000050 0x02FF0C38 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     313015775 0x02FF0CE8 0x00000050 0x02FF0CD8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     314015779 0x02FF0D88 0x00000050 0x02FF0D78 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     315015783 0x02FF0E28 0x00000050 0x02FF0E18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     316015787 0x02FF0EC8 0x0000003C 0x02FF0EB8 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     317015788 0x02FF0F50 0x00000050 0x02FF0F40 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     318015841 0x02FF1048 0x0000003C 0x02FF1038 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     319015793 0x02FF10D8 0x00000050 0x02FF10C8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     320015797 0x02FF1178 0x00000050 0x02FF1168 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     321015801 0x02FF1218 0x00000050 0x02FF1208 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     322015805 0x02FF12B8 0x00000050 0x02FF12A8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     323015829 0x02FF1358 0x00000050 0x02FF1348 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     324015833 0x02FF13F8 0x00000050 0x02FF13E8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     325015837 0x02FF1498 0x00000050 0x02FF1488 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     326015842 0x02FF1538 0x00000050 0x02FF1528 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     327015847 0x02FF1668 0x00000050 0x02FF1658 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     328015851 0x02FF1708 0x00000050 0x02FF16F8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     329015855 0x02FF17A8 0x00000050 0x02FF1798 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     330015859 0x02FF1848 0x00000050 0x02FF1838 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     331015863 0x02FF18E8 0x00000050 0x02FF18D8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     332015867 0x02FF1988 0x00000050 0x02FF1978 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     333015871 0x02FF1A28 0x00000050 0x02FF1A18 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     334015875 0x02FF1AC8 0x00000050 0x02FF1AB8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     335015879 0x02FF1B68 0x00000050 0x02FF1B58 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     336015883 0x02FF1C08 0x00000050 0x02FF1BF8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     337015887 0x02FF1CA8 0x00000050 0x02FF1C98 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     338015891 0x02FF1DD8 0x00000050 0x02FF1DC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     339029550 0x02FF3F78 0x00000018 0x02FF3F68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     340015809 0x02FFBCF8 0x00000050 0x02FFBCE8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     341015813 0x02FFBD98 0x00000050 0x02FFBD88 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     342015817 0x02FFBE38 0x00000050 0x02FFBE28 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     343015821 0x02FFBED8 0x00000050 0x02FFBEC8 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     344015825 0x02FFBF78 0x00000050 0x02FFBF68 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     345029595 0x02FFECE0 0x00000034 0x02FFECD0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     346027559 0x03002A40 0x00000034 0x03002A30 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     347016686 0x03014FD0 0x0000003C 0x03014FC0 0x0000005C 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     348016687 0x03015058 0x00000050 0x03015048 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     349016692 0x03015198 0x00000050 0x03015188 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     350016696 0x03015288 0x00000050 0x03015278 0x00000070 0x00000000 new         N       N    ??(0) ?? 
     351026428 0x030400F8 0x000000E8 0x030400E8 0x00000108 0x00000000 new         N       N    ogreilluminationmanager.cpp(106) OgreIlluminationManager::OgreIlluminati 
     352026430 0x03040230 0x00000034 0x03040220 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     353026431 0x03040300 0x00000034 0x030402F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     354026432 0x030403D0 0x00000034 0x030403C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     355026433 0x030404A0 0x00000034 0x03040490 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     356026434 0x03040570 0x00000034 0x03040560 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     357026435 0x030405F0 0x00000034 0x030405E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     358026436 0x030406C0 0x0000000C 0x030406B0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     359026437 0x03040718 0x00000044 0x03040708 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(108) OgreIlluminationManager::OgreIlluminati 
     360026438 0x030407A8 0x00000034 0x03040798 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     361026439 0x03040828 0x00000034 0x03040818 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     362026440 0x030408A8 0x0000000C 0x03040898 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     363026441 0x03040900 0x00000044 0x030408F0 0x00000064 0x00000000 new         N       N    ogreilluminationmanager.cpp(110) OgreIlluminationManager::OgreIlluminati 
     364026442 0x03040990 0x00000034 0x03040980 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     365026443 0x03040A10 0x00000034 0x03040A00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     366026444 0x03040A90 0x0000000C 0x03040A80 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     367026445 0x03040AE8 0x000000D8 0x03040AD8 0x000000F8 0x00000000 new         N       N    ogreilluminationmanager.cpp(112) OgreIlluminationManager::OgreIlluminati 
     368026446 0x03040C10 0x00000034 0x03040C00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     369026447 0x03040C90 0x00000034 0x03040C80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     370026448 0x03040D10 0x00000034 0x03040D00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     371026449 0x03040D90 0x00000034 0x03040D80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     372026450 0x03040E10 0x00000034 0x03040E00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     373026451 0x03040E90 0x00000034 0x03040E80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     374026452 0x03040F10 0x00000034 0x03040F00 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     375026453 0x03040F90 0x00000034 0x03040F80 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     376026454 0x03041010 0x00000034 0x03041000 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     377026455 0x03041090 0x00000034 0x03041080 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     378026316 0x03081440 0x0000000C 0x03081430 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     379026330 0x030814F0 0x00000018 0x030814E0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     380026331 0x03081558 0x00000018 0x03081548 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     381026326 0x03081660 0x00000018 0x03081650 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     382026327 0x030816C8 0x00000018 0x030816B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     383026317 0x03081F78 0x00000018 0x03081F68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     384026368 0x03082800 0x000000E4 0x030827F0 0x00000104 0x00000000 new         N       N    ogreilluminationmanager.cpp(98) OgreIlluminationManager::OgreIlluminati 
     385026370 0x03082930 0x00000034 0x03082920 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     386026371 0x030829B0 0x00000034 0x030829A0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     387026372 0x03082A30 0x00000034 0x03082A20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     388026373 0x03082AB0 0x00000034 0x03082AA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     389026374 0x03082B30 0x00000034 0x03082B20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     390026375 0x03082BB0 0x00000034 0x03082BA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     391026376 0x03082C30 0x00000034 0x03082C20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     392026377 0x03082CB0 0x00000034 0x03082CA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     393026378 0x03082D30 0x00000034 0x03082D20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     394026379 0x03082DB0 0x00000034 0x03082DA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     395026380 0x03082E30 0x00000034 0x03082E20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     396026381 0x03082EB0 0x00000034 0x03082EA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     397026382 0x03082F30 0x00000034 0x03082F20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     398026383 0x03082FB0 0x00000034 0x03082FA0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     399027068 0x0308AC68 0x00000020 0x0308AC58 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     400026405 0x0308AD00 0x00000034 0x0308ACF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     401026406 0x0308AD80 0x0000000C 0x0308AD70 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     402026407 0x0308ADD8 0x0000009C 0x0308ADC8 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(102) OgreIlluminationManager::OgreIlluminati 
     403026408 0x0308AEC0 0x00000034 0x0308AEB0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     404026409 0x0308AF40 0x00000034 0x0308AF30 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     405026456 0x0308B010 0x00000034 0x0308B000 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     406026457 0x0308B090 0x0000000C 0x0308B080 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     407026458 0x0308B0E8 0x0000009C 0x0308B0D8 0x000000BC 0x00000000 new         N       N    ogreilluminationmanager.cpp(114) OgreIlluminationManager::OgreIlluminati 
     408026459 0x0308B1D0 0x00000034 0x0308B1C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     409026460 0x0308B250 0x00000034 0x0308B240 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     410026461 0x0308B2D0 0x00000034 0x0308B2C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     411026462 0x0308B350 0x00000034 0x0308B340 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     412026463 0x0308B3D0 0x00000034 0x0308B3C0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     413026464 0x0308B450 0x00000034 0x0308B440 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     414026465 0x0308B520 0x00000034 0x0308B510 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     415026466 0x0308B5F0 0x00000034 0x0308B5E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     416026467 0x0308B670 0x00000034 0x0308B660 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     417026468 0x0308B6F0 0x00000034 0x0308B6E0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     418026469 0x0308B770 0x00000034 0x0308B760 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     419026470 0x0308B840 0x0000000C 0x0308B830 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     420026471 0x0308B898 0x00000034 0x0308B888 0x00000054 0x00000000 new         N       N    reflectiontest.h(302) RaytraceDemoApplication::createScene 
     421026591 0x0308D148 0x00000030 0x0308D138 0x00000050 0x00000000 new         N       N    framecapture.h(87) FrameCapture::addAnimableNode 
     422026593 0x0308D1C8 0x00000030 0x0308D1B8 0x00000050 0x00000000 new         N       N    framecapture.h(87) FrameCapture::addAnimableNode 
     423026594 0x0308D248 0x00000008 0x0308D238 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     424026318 0x03093A20 0x0000000C 0x03093A10 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     425027074 0x0310D6E8 0x00000004 0x0310D6D8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     426027066 0x03111098 0x000000C4 0x03111088 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     427027069 0x03118E78 0x00000104 0x03118E68 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 
     428027070 0x03118FC8 0x00000018 0x03118FB8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     429027071 0x03119030 0x00000018 0x03119020 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     430027072 0x03119098 0x00000034 0x03119088 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     431027073 0x03119118 0x0000000C 0x03119108 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     432027075 0x03119170 0x00000018 0x03119160 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     433027097 0x031191D8 0x00000108 0x031191C8 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
     434027098 0x03119330 0x00000134 0x03119320 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
     435027099 0x03119500 0x00000034 0x031194F0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     436027680 0x03120818 0x00000010 0x03120808 0x00000030 0x00000000 new         N       N    ??(0) ?? 
     437027219 0x03120AA0 0x00000018 0x03120A90 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     438027242 0x03120B78 0x00000108 0x03120B68 0x00000128 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(110) OgreDistanceCubeMapRenderTechniqueFacto 
     439027243 0x03120E10 0x00000134 0x03120E00 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
     440027244 0x03121088 0x00000034 0x03121078 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     441027798 0x031283E8 0x00000004 0x031283D8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     442027362 0x03128670 0x00000018 0x03128660 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     443027399 0x03136C28 0x00000108 0x03136C18 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
     444027400 0x03136D80 0x00000134 0x03136D70 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
     445027401 0x03136F00 0x00000034 0x03136EF0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     446027688 0x03137088 0x0000000C 0x03137078 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     447027519 0x03137C00 0x00000018 0x03137BF0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     448027683 0x03137CD8 0x00000020 0x03137CC8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     449027557 0x03137D78 0x00000108 0x03137D68 0x00000128 0x00000000 new         N       N    ogrecolorcubemaprendertechnique.cpp(106) OgreColorCubeMapRenderTechniqueFactory: 
     450027558 0x03137ED0 0x00000134 0x03137EC0 0x00000154 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(74) OgreCubeMapRenderTechnique::createCubeM 
     451027772 0x0313AA00 0x0000000C 0x0313A9F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     452028005 0x0313D6F8 0x00000004 0x0313D6E8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     453027677 0x0313E4F8 0x00000018 0x0313E4E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     454027681 0x0313E698 0x000000C4 0x0313E688 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     455027684 0x0313E7A8 0x00000104 0x0313E798 0x00000124 0x00000000 new         N       N    ogreilluminationmanager.cpp(219) OgreIlluminationManager::initTechniques 
     456027685 0x0313E8F8 0x00000018 0x0313E8E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     457027686 0x0313E960 0x00000018 0x0313E950 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     458027687 0x0313E9C8 0x00000034 0x0313E9B8 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     459027690 0x0313EA48 0x00000018 0x0313EA38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     460027702 0x0313EED0 0x000000E4 0x0313EEC0 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     461027799 0x0314B650 0x000000C4 0x0314B640 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     462027801 0x0314B760 0x00000020 0x0314B750 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     463027803 0x0314B7D0 0x00000018 0x0314B7C0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     464027815 0x0314B838 0x000000E4 0x0314B828 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     465027902 0x0314B968 0x00000004 0x0314B958 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     466027905 0x0314B9B8 0x00000020 0x0314B9A8 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     467027876 0x0314BCE0 0x0000000C 0x0314BCD0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     468027979 0x0314D810 0x0000000C 0x0314D800 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     469027903 0x0314E3C0 0x000000C4 0x0314E3B0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     470027907 0x0314E528 0x00000018 0x0314E518 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     471027919 0x0314E590 0x000000E4 0x0314E580 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     472028214 0x0314E6C0 0x00000004 0x0314E6B0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     473028006 0x03151100 0x000000C4 0x031510F0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     474028008 0x03151210 0x00000020 0x03151200 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     475028010 0x03151280 0x00000018 0x03151270 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     476028022 0x031512E8 0x000000E4 0x031512D8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     477028110 0x03151418 0x00000004 0x03151408 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     478028113 0x03151468 0x00000020 0x03151458 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     479028084 0x03152520 0x0000000C 0x03152510 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     480028111 0x03153E50 0x000000C4 0x03153E40 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     481028323 0x03153F60 0x00000018 0x03153F50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     482028115 0x03153FC8 0x00000018 0x03153FB8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     483028127 0x0315BC68 0x000000E4 0x0315BC58 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     484028318 0x0315BD98 0x00000004 0x0315BD88 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     485028188 0x0315C0B0 0x0000000C 0x0315C0A0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     486028215 0x0315E7E0 0x000000C4 0x0315E7D0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     487028217 0x0315E8F0 0x00000020 0x0315E8E0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     488028218 0x0315E960 0x00000018 0x0315E950 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     489028230 0x0315E9C8 0x000000E4 0x0315E9B8 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     490028423 0x0315EAF8 0x00000004 0x0315EAE8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     491028292 0x0315FBF0 0x0000000C 0x0315FBE0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     492028319 0x03161520 0x000000C4 0x03161510 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     493028321 0x03161630 0x00000020 0x03161620 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     494028633 0x031616A0 0x00000018 0x03161690 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     495028335 0x03161710 0x000000E4 0x03161700 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     496028526 0x03161840 0x00000004 0x03161830 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     497028397 0x03162938 0x0000000C 0x03162928 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     498028424 0x03164280 0x000000C4 0x03164270 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     499028426 0x03164390 0x00000020 0x03164380 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     500028427 0x03164400 0x00000018 0x031643F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     501028439 0x03164468 0x000000E4 0x03164458 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     502028628 0x03164598 0x00000004 0x03164588 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     503028500 0x031648B0 0x0000000C 0x031648A0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     504028602 0x03166448 0x0000000C 0x03166438 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     505028527 0x0316EC58 0x000000C4 0x0316EC48 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     506028529 0x0316ED68 0x00000020 0x0316ED58 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     507028530 0x0316EDD8 0x00000018 0x0316EDC8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     508028542 0x0316EE40 0x000000E4 0x0316EE30 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     509028733 0x0316EF70 0x00000004 0x0316EF60 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     510028629 0x031719B0 0x000000C4 0x031719A0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     511028631 0x03171AC0 0x00000020 0x03171AB0 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     512028632 0x03171B30 0x00000034 0x03171B20 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     513028645 0x03171BB0 0x000000E4 0x03171BA0 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     514028836 0x03171CE0 0x00000004 0x03171CD0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     515028707 0x03172DD8 0x0000000C 0x03172DC8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     516028734 0x03174708 0x000000C4 0x031746F8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     517028736 0x03174818 0x00000020 0x03174808 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     518028737 0x03174888 0x00000018 0x03174878 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     519028749 0x031748F0 0x000000E4 0x031748E0 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     520028938 0x03174A20 0x00000004 0x03174A10 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     521028810 0x03174D38 0x0000000C 0x03174D28 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     522028912 0x031768B8 0x0000000C 0x031768A8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     523028837 0x03177488 0x000000C4 0x03177478 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     524028839 0x03177598 0x00000020 0x03177588 0x00000040 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     525028840 0x03177608 0x00000018 0x031775F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     526028852 0x03177670 0x000000E4 0x03177660 0x00000104 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(222) OgreDepthShadowRecieverRenderTechniqueF 
     527029895 0x03189358 0x00000220 0x03189348 0x00000240 0x00000000 new         N       N    ogrerenderingrun.cpp(204) OgreRenderingRun::renderFullscreenQuad 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log

    r1885 r1897  
    11-------------------------------------------------------------------------------- 
    22 
    3       OgreMemory.log - Memory logging file created on Wed Dec 13 15:08:25 2006 
     3      OgreMemory.log - Memory logging file created on Fri Dec 15 09:55:02 2006 
    44 
    55-------------------------------------------------------------------------------- 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log

    r1885 r1897  
    1 16:19:17: Creating resource group General 
    2 16:19:17: Creating resource group Internal 
    3 16:19:17: Creating resource group Autodetect 
    4 16:19:17: Registering ResourceManager for type Material 
    5 16:19:17: Registering ResourceManager for type Mesh 
    6 16:19:17: Registering ResourceManager for type Skeleton 
    7 16:19:17: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 16:19:17: Loading library OgrePlatform.dll 
    9 16:19:17: OverlayElementFactory for type Panel registered. 
    10 16:19:17: OverlayElementFactory for type BorderPanel registered. 
    11 16:19:17: OverlayElementFactory for type TextArea registered. 
    12 16:19:17: Registering ResourceManager for type Font 
    13 16:19:17: ArchiveFactory for archive type FileSystem registered. 
    14 16:19:17: ArchiveFactory for archive type Zip registered. 
    15 16:19:17: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 16: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  
    17 16:19:17: Registering ResourceManager for type HighLevelGpuProgram 
    18 16:19:17: Registering ResourceManager for type Compositor 
    19 16:19:17: MovableObjectFactory for type 'Entity' registered. 
    20 16:19:17: MovableObjectFactory for type 'Light' registered. 
    21 16:19:17: MovableObjectFactory for type 'BillboardSet' registered. 
    22 16:19:17: MovableObjectFactory for type 'ManualObject' registered. 
    23 16:19:17: MovableObjectFactory for type 'BillboardChain' registered. 
    24 16:19:17: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 16:19:17: Loading library .\RenderSystem_Direct3D9 
    26 16:19:17: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 16:19:17: D3D9: Driver Detection Starts 
    28 16:19:17: D3D9: Driver Detection Ends 
    29 16:19:17: Loading library .\Plugin_ParticleFX 
    30 16:19:17: Particle Emitter Type 'Point' registered 
    31 16:19:17: Particle Emitter Type 'Box' registered 
    32 16:19:17: Particle Emitter Type 'Ellipsoid' registered 
    33 16:19:17: Particle Emitter Type 'Cylinder' registered 
    34 16:19:17: Particle Emitter Type 'Ring' registered 
    35 16:19:17: Particle Emitter Type 'HollowEllipsoid' registered 
    36 16:19:17: Particle Affector Type 'LinearForce' registered 
    37 16:19:17: Particle Affector Type 'ColourFader' registered 
    38 16:19:17: Particle Affector Type 'ColourFader2' registered 
    39 16:19:17: Particle Affector Type 'ColourImage' registered 
    40 16:19:17: Particle Affector Type 'ColourInterpolator' registered 
    41 16:19:17: Particle Affector Type 'Scaler' registered 
    42 16:19:17: Particle Affector Type 'Rotator' registered 
    43 16:19:17: Particle Affector Type 'DirectionRandomiser' registered 
    44 16:19:17: Particle Affector Type 'DeflectorPlane' registered 
    45 16:19:17: Loading library .\Plugin_BSPSceneManager 
    46 16:19:17: Registering ResourceManager for type BspLevel 
    47 16:19:17: Loading library .\Plugin_OctreeSceneManager 
    48 16:19:17: Loading library .\Plugin_CgProgramManager 
    49 16:19:17: *-*-* OGRE Initialising 
    50 16:19:17: *-*-* Version 1.2.0 (Dagon) 
    51 16:19:17: Creating resource group Bootstrap 
    52 16:19:17: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 16:19:17: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 16:19:17: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 16:19:17: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 16:19:17: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 16:19:17: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 16:19:17: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 16:19:17: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 16:19:17: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 16:19:17: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 16:19:17: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 16:19:17: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 16:19:17: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 16:19:17: D3D9 : RenderSystem Option: Anti aliasing = Level 4 
    66 16:19:17: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 16:19:17: D3D9 : RenderSystem Option: Full Screen = No 
    68 16:19:17: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    69 16:19:17: D3D9 : RenderSystem Option: VSync = No 
    70 16:19:17: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 16:19:18: D3D9 : Subsystem Initialising 
    72 16:19:18: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 16:19:18: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 16: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. 
    75 16:19:18: Registering ResourceManager for type Texture 
    76 16:19:18: Registering ResourceManager for type GpuProgram 
    77 16:19:18: RenderSystem capabilities 
    78 16:19:18: ------------------------- 
    79 16:19:18:  * Hardware generation of mipmaps: yes 
    80 16:19:18:  * Texture blending: yes 
    81 16:19:18:  * Anisotropic texture filtering: yes 
    82 16:19:18:  * Dot product texture operation: yes 
    83 16:19:18:  * Cube mapping: yes 
    84 16:19:18:  * Hardware stencil buffer: yes 
    85 16:19:18:    - Stencil depth: 8 
    86 16:19:18:    - Two sided stencil support: yes 
    87 16:19:18:    - Wrap stencil values: yes 
    88 16:19:18:  * Hardware vertex / index buffers: yes 
    89 16:19:18:  * Vertex programs: yes 
    90 16:19:18:    - Max vertex program version: vs_3_0 
    91 16:19:18:  * Fragment programs: yes 
    92 16:19:18:    - Max fragment program version: ps_3_0 
    93 16:19:18:  * Texture Compression: yes 
    94 16:19:18:    - DXT: yes 
    95 16:19:18:    - VTC: no 
    96 16:19:18:  * Scissor Rectangle: yes 
    97 16:19:18:  * Hardware Occlusion Query: yes 
    98 16:19:18:  * User clip planes: yes 
    99 16:19:18:  * VET_UBYTE4 vertex element type: yes 
    100 16:19:18:  * Infinite far plane projection: yes 
    101 16:19:18:  * Hardware render-to-texture: yes 
    102 16:19:18:  * Floating point textures: yes 
    103 16:19:18:  * Non-power-of-two textures: yes 
    104 16:19:18:  * Volume textures: yes 
    105 16:19:18:  * Multiple Render Targets: 4 
    106 16:19:18:  * Max Point Size: 8192 
    107 16:19:18: *************************************** 
    108 16:19:18: *** D3D9 : Subsystem Initialised OK *** 
    109 16:19:18: *************************************** 
    110 16:19:18: ResourceBackgroundQueue - threading disabled 
    111 16:19:18: Particle Renderer Type 'billboard' registered 
    112 16:19:18: Particle Renderer Type 'sprite' registered 
    113 16: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 
    114 16:19:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 16:19:18: Parsing scripts for resource group Autodetect 
    116 16:19:18: Finished parsing scripts for resource group Autodetect 
    117 16:19:18: Parsing scripts for resource group Bootstrap 
    118 16:19:18: Parsing script OgreCore.material 
    119 16:19:18: Parsing script OgreProfiler.material 
    120 16:19:18: Parsing script Ogre.fontdef 
    121 16:19:18: Parsing script OgreDebugPanel.overlay 
    122 16: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. 
    123 16: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. 
    124 16: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. 
    125 16:19:18: Font TrebuchetMSBoldusing texture size 512x512 
    126 16:19:18: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 16:19:18: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 16:19:18: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 16:19:18: Parsing script OgreLoadingPanel.overlay 
    130 16:19:18: Finished parsing scripts for resource group Bootstrap 
    131 16:19:18: Parsing scripts for resource group General 
    132 16:19:18: Parsing script GameTools.program 
    133 16:19:18: Parsing script atlascube.material 
    134 16:19:18: Parsing script colorcube.material 
    135 16:19:18: Parsing script difflab.material 
    136 16:19:19: An exception has been thrown! 
     110:31:31: Creating resource group General 
     210:31:31: Creating resource group Internal 
     310:31:31: Creating resource group Autodetect 
     410:31:31: Registering ResourceManager for type Material 
     510:31:31: Registering ResourceManager for type Mesh 
     610:31:31: Registering ResourceManager for type Skeleton 
     710:31:31: MovableObjectFactory for type 'ParticleSystem' registered. 
     810:31:31: Loading library OgrePlatform.dll 
     910:31:31: OverlayElementFactory for type Panel registered. 
     1010:31:31: OverlayElementFactory for type BorderPanel registered. 
     1110:31:31: OverlayElementFactory for type TextArea registered. 
     1210:31:31: Registering ResourceManager for type Font 
     1310:31:31: ArchiveFactory for archive type FileSystem registered. 
     1410:31:31: ArchiveFactory for archive type Zip registered. 
     1510:31:31: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1610:31:31: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
     1710:31:31: Registering ResourceManager for type HighLevelGpuProgram 
     1810:31:31: Registering ResourceManager for type Compositor 
     1910:31:31: MovableObjectFactory for type 'Entity' registered. 
     2010:31:31: MovableObjectFactory for type 'Light' registered. 
     2110:31:31: MovableObjectFactory for type 'BillboardSet' registered. 
     2210:31:31: MovableObjectFactory for type 'ManualObject' registered. 
     2310:31:31: MovableObjectFactory for type 'BillboardChain' registered. 
     2410:31:31: MovableObjectFactory for type 'RibbonTrail' registered. 
     2510:31:31: Loading library .\RenderSystem_Direct3D9 
     2610:31:31: D3D9 : Direct3D9 Rendering Subsystem created. 
     2710:31:31: D3D9: Driver Detection Starts 
     2810:31:31: D3D9: Driver Detection Ends 
     2910:31:31: Loading library .\Plugin_ParticleFX 
     3010:31:31: Particle Emitter Type 'Point' registered 
     3110:31:31: Particle Emitter Type 'Box' registered 
     3210:31:31: Particle Emitter Type 'Ellipsoid' registered 
     3310:31:31: Particle Emitter Type 'Cylinder' registered 
     3410:31:31: Particle Emitter Type 'Ring' registered 
     3510:31:31: Particle Emitter Type 'HollowEllipsoid' registered 
     3610:31:31: Particle Affector Type 'LinearForce' registered 
     3710:31:31: Particle Affector Type 'ColourFader' registered 
     3810:31:31: Particle Affector Type 'ColourFader2' registered 
     3910:31:31: Particle Affector Type 'ColourImage' registered 
     4010:31:31: Particle Affector Type 'ColourInterpolator' registered 
     4110:31:31: Particle Affector Type 'Scaler' registered 
     4210:31:31: Particle Affector Type 'Rotator' registered 
     4310:31:31: Particle Affector Type 'DirectionRandomiser' registered 
     4410:31:31: Particle Affector Type 'DeflectorPlane' registered 
     4510:31:31: Loading library .\Plugin_BSPSceneManager 
     4610:31:31: Registering ResourceManager for type BspLevel 
     4710:31:31: Loading library .\Plugin_OctreeSceneManager 
     4810:31:31: Loading library .\Plugin_CgProgramManager 
     4910:31:31: *-*-* OGRE Initialising 
     5010:31:31: *-*-* Version 1.2.0 (Dagon) 
     5110:31:31: Creating resource group Bootstrap 
     5210:31:31: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5310:31:31: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5410:31:31: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5510:31:31: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5610:31:31: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5710:31:31: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5810:31:31: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5910:31:31: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6010:31:31: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6110:31:31: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6210:31:31: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6310:31:31: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6410:31:31: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6510:31:31: D3D9 : RenderSystem Option: Anti aliasing = Level 4 
     6610:31:31: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6710:31:31: D3D9 : RenderSystem Option: Full Screen = No 
     6810:31:31: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     6910:31:31: D3D9 : RenderSystem Option: VSync = No 
     7010:31:31: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7110:31:32: D3D9 : Subsystem Initialising 
     7210:31:32: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7310:31:32: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7410:31:32: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7510:31:32: Registering ResourceManager for type Texture 
     7610:31:32: Registering ResourceManager for type GpuProgram 
     7710:31:32: RenderSystem capabilities 
     7810:31:32: ------------------------- 
     7910:31:32:  * Hardware generation of mipmaps: yes 
     8010:31:32:  * Texture blending: yes 
     8110:31:32:  * Anisotropic texture filtering: yes 
     8210:31:32:  * Dot product texture operation: yes 
     8310:31:32:  * Cube mapping: yes 
     8410:31:32:  * Hardware stencil buffer: yes 
     8510:31:32:    - Stencil depth: 8 
     8610:31:32:    - Two sided stencil support: yes 
     8710:31:32:    - Wrap stencil values: yes 
     8810:31:32:  * Hardware vertex / index buffers: yes 
     8910:31:32:  * Vertex programs: yes 
     9010:31:32:    - Max vertex program version: vs_3_0 
     9110:31:32:  * Fragment programs: yes 
     9210:31:32:    - Max fragment program version: ps_3_0 
     9310:31:32:  * Texture Compression: yes 
     9410:31:32:    - DXT: yes 
     9510:31:32:    - VTC: no 
     9610:31:32:  * Scissor Rectangle: yes 
     9710:31:32:  * Hardware Occlusion Query: yes 
     9810:31:32:  * User clip planes: yes 
     9910:31:32:  * VET_UBYTE4 vertex element type: yes 
     10010:31:32:  * Infinite far plane projection: yes 
     10110:31:32:  * Hardware render-to-texture: yes 
     10210:31:32:  * Floating point textures: yes 
     10310:31:32:  * Non-power-of-two textures: yes 
     10410:31:32:  * Volume textures: yes 
     10510:31:32:  * Multiple Render Targets: 4 
     10610:31:32:  * Max Point Size: 8192 
     10710:31:32: *************************************** 
     10810:31:32: *** D3D9 : Subsystem Initialised OK *** 
     10910:31:32: *************************************** 
     11010:31:32: ResourceBackgroundQueue - threading disabled 
     11110:31:32: Particle Renderer Type 'billboard' registered 
     11210:31:32: Particle Renderer Type 'sprite' registered 
     11310:31:32: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     11410:31:32: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11510:31:32: Parsing scripts for resource group Autodetect 
     11610:31:32: Finished parsing scripts for resource group Autodetect 
     11710:31:32: Parsing scripts for resource group Bootstrap 
     11810:31:32: Parsing script OgreCore.material 
     11910:31:32: Parsing script OgreProfiler.material 
     12010:31:32: Parsing script Ogre.fontdef 
     12110:31:32: Parsing script OgreDebugPanel.overlay 
     12210:31:32: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12310:31:32: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12410:31:32: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12510:31:32: Font TrebuchetMSBoldusing texture size 512x512 
     12610:31:32: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12710:31:32: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12810:31:32: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12910:31:32: Parsing script OgreLoadingPanel.overlay 
     13010:31:32: Finished parsing scripts for resource group Bootstrap 
     13110:31:32: Parsing scripts for resource group General 
     13210:31:32: Parsing script GameTools.program 
     13310:31:32: Parsing script atlascube.material 
     13410:31:32: Parsing script colorcube.material 
     13510:31:32: Parsing script difflab.material 
     13610:31:32: An exception has been thrown! 
    137137 
    138138----------------------------------- 
     
    145145Line: 779 
    146146Stack unwinding: <<beginning of stack>> 
    147 16:19:19: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14710:31:32: 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 16:19:19: An exception has been thrown! 
     15810:31:32: An exception has been thrown! 
    159159 
    160160----------------------------------- 
     
    167167Line: 779 
    168168Stack unwinding: <<beginning of stack>> 
    169 16:19:19: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16910:31:32: 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 16:19:19: An exception has been thrown! 
     18010:31:32: An exception has been thrown! 
    181181 
    182182----------------------------------- 
     
    189189Line: 779 
    190190Stack unwinding: <<beginning of stack>> 
    191 16:19:19: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19110:31:32: 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 16:19:19: An exception has been thrown! 
     20210:31:32: An exception has been thrown! 
    203203 
    204204----------------------------------- 
     
    211211Line: 779 
    212212Stack unwinding: <<beginning of stack>> 
    213 16:19:19: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21310:31:32: 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 16:19:19: An exception has been thrown! 
     22410:31:32: An exception has been thrown! 
    225225 
    226226----------------------------------- 
     
    233233Line: 779 
    234234Stack unwinding: <<beginning of stack>> 
    235 16:19:19: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23510:31:32: 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 16:19:19: An exception has been thrown! 
     24610:31:32: An exception has been thrown! 
    247247 
    248248----------------------------------- 
     
    255255Line: 779 
    256256Stack unwinding: <<beginning of stack>> 
    257 16:19:19: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25710:31:32: 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 16:19:19: An exception has been thrown! 
     26810:31:32: An exception has been thrown! 
    269269 
    270270----------------------------------- 
     
    277277Line: 779 
    278278Stack unwinding: <<beginning of stack>> 
    279 16:19:19: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27910:31:32: 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 16:19:19: An exception has been thrown! 
     29010:31:32: An exception has been thrown! 
    291291 
    292292----------------------------------- 
     
    299299Line: 779 
    300300Stack unwinding: <<beginning of stack>> 
    301 16:19:19: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30110:31:32: 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 16:19:19: An exception has been thrown! 
     31210:31:32: An exception has been thrown! 
    313313 
    314314----------------------------------- 
     
    321321Line: 779 
    322322Stack unwinding: <<beginning of stack>> 
    323 16:19:19: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32310:31:32: 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 16:19:19: An exception has been thrown! 
     33410:31:32: An exception has been thrown! 
    335335 
    336336----------------------------------- 
     
    343343Line: 779 
    344344Stack unwinding: <<beginning of stack>> 
    345 16:19:19: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34510:31:32: 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 16:19:19: An exception has been thrown! 
     35610:31:32: An exception has been thrown! 
    357357 
    358358----------------------------------- 
     
    365365Line: 779 
    366366Stack unwinding: <<beginning of stack>> 
    367 16:19:19: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     36710:31:32: 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 16:19:19: An exception has been thrown! 
     37810:31:32: An exception has been thrown! 
    379379 
    380380----------------------------------- 
     
    387387Line: 779 
    388388Stack unwinding: <<beginning of stack>> 
    389 16:19:19: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     38910:31:32: 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 16:19:19: An exception has been thrown! 
     40010:31:32: An exception has been thrown! 
    401401 
    402402----------------------------------- 
     
    409409Line: 779 
    410410Stack unwinding: <<beginning of stack>> 
    411 16:19:19: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41110:31:32: 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 16:19:19: An exception has been thrown! 
     42210:31:32: An exception has been thrown! 
    423423 
    424424----------------------------------- 
     
    431431Line: 779 
    432432Stack unwinding: <<beginning of stack>> 
    433 16:19:19: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43310:31:32: 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 16:19:19: An exception has been thrown! 
     44410:31:32: An exception has been thrown! 
    445445 
    446446----------------------------------- 
     
    453453Line: 779 
    454454Stack unwinding: <<beginning of stack>> 
    455 16:19:19: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45510:31:32: 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 16:19:19: An exception has been thrown! 
     46610:31:32: An exception has been thrown! 
    467467 
    468468----------------------------------- 
     
    475475Line: 779 
    476476Stack unwinding: <<beginning of stack>> 
    477 16:19:19: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     47710:31:32: 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 16:19:19: An exception has been thrown! 
     48810:31:32: An exception has been thrown! 
    489489 
    490490----------------------------------- 
     
    497497Line: 779 
    498498Stack unwinding: <<beginning of stack>> 
    499 16:19:19: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     49910:31:32: 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 16:19:19: An exception has been thrown! 
     51010:31:32: An exception has been thrown! 
    511511 
    512512----------------------------------- 
     
    519519Line: 779 
    520520Stack unwinding: <<beginning of stack>> 
    521 16:19:19: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52110:31:32: 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 16:19:19: An exception has been thrown! 
     53210:31:32: An exception has been thrown! 
    533533 
    534534----------------------------------- 
     
    541541Line: 779 
    542542Stack unwinding: <<beginning of stack>> 
    543 16:19:19: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54310:31:32: 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 16:19:19: An exception has been thrown! 
     55410:31:32: An exception has been thrown! 
    555555 
    556556----------------------------------- 
     
    563563Line: 779 
    564564Stack unwinding: <<beginning of stack>> 
    565 16:19:19: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56510:31:32: 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 16:19:19: An exception has been thrown! 
     57610:31:32: An exception has been thrown! 
    577577 
    578578----------------------------------- 
     
    585585Line: 779 
    586586Stack unwinding: <<beginning of stack>> 
    587 16:19:19: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     58710:31:32: 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 16:19:19: Parsing script diffscene.material 
    599 16:19:19: An exception has been thrown! 
     59810:31:32: Parsing script diffscene.material 
     59910:31:32: An exception has been thrown! 
    600600 
    601601----------------------------------- 
     
    608608Line: 779 
    609609Stack unwinding: <<beginning of stack>> 
    610 16:19:19: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     61010:31:32: 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 16:19:19: An exception has been thrown! 
     62110:31:32: An exception has been thrown! 
    622622 
    623623----------------------------------- 
     
    630630Line: 779 
    631631Stack unwinding: <<beginning of stack>> 
    632 16:19:19: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63210:31:32: 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 16:19:19: An exception has been thrown! 
     64310:31:32: An exception has been thrown! 
    644644 
    645645----------------------------------- 
     
    652652Line: 779 
    653653Stack unwinding: <<beginning of stack>> 
    654 16:19:19: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65410:31:32: 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 16:19:19: An exception has been thrown! 
     66510:31:32: An exception has been thrown! 
    666666 
    667667----------------------------------- 
     
    674674Line: 779 
    675675Stack unwinding: <<beginning of stack>> 
    676 16:19:19: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67610:31:32: 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 16:19:19: An exception has been thrown! 
     68710:31:32: An exception has been thrown! 
    688688 
    689689----------------------------------- 
     
    696696Line: 779 
    697697Stack unwinding: <<beginning of stack>> 
    698 16:19:19: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69810:31:32: 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 16:19:19: An exception has been thrown! 
     70910:31:32: An exception has been thrown! 
    710710 
    711711----------------------------------- 
     
    718718Line: 779 
    719719Stack unwinding: <<beginning of stack>> 
    720 16:19:19: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     72010:31:32: 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 16:19:19: An exception has been thrown! 
     73110:31:32: An exception has been thrown! 
    732732 
    733733----------------------------------- 
     
    740740Line: 779 
    741741Stack unwinding: <<beginning of stack>> 
    742 16:19:19: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74210:31:32: 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 16:19:19: An exception has been thrown! 
     75310:31:32: An exception has been thrown! 
    754754 
    755755----------------------------------- 
     
    762762Line: 779 
    763763Stack unwinding: <<beginning of stack>> 
    764 16:19:19: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76410:31:32: 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 16:19:19: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    776 16:19:19: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    777 16:19:19: Parsing script Diffuse.material 
    778 16:19:19: An exception has been thrown! 
     77510:31:32: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77610:31:32: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77710:31:32: Parsing script Diffuse.material 
     77810:31:33: An exception has been thrown! 
    779779 
    780780----------------------------------- 
     
    787787Line: 779 
    788788Stack unwinding: <<beginning of stack>> 
    789 16:19:19: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     78910:31:33: 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 16:19:20: An exception has been thrown! 
     80010:31:33: An exception has been thrown! 
    801801 
    802802----------------------------------- 
     
    809809Line: 779 
    810810Stack unwinding: <<beginning of stack>> 
    811 16:19:20: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     81110:31:33: 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 16:19:23: An exception has been thrown! 
     82210:31:37: An exception has been thrown! 
    823823 
    824824----------------------------------- 
     
    831831Line: 779 
    832832Stack unwinding: <<beginning of stack>> 
    833 16:19:23: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83310:31:37: 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 16:19:23: An exception has been thrown! 
     84410:31:37: An exception has been thrown! 
    845845 
    846846----------------------------------- 
     
    853853Line: 779 
    854854Stack unwinding: <<beginning of stack>> 
    855 16:19:23: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     85510:31:37: 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 16:19:24: Parsing script EnvMetals.material 
    867 16:19:24: An exception has been thrown! 
     86610:31:37: Parsing script EnvMetals.material 
     86710:31:37: An exception has been thrown! 
    868868 
    869869----------------------------------- 
     
    876876Line: 779 
    877877Stack unwinding: <<beginning of stack>> 
    878 16:19:24: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     87810:31:37: 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 16:19:24: An exception has been thrown! 
     88910:31:37: An exception has been thrown! 
    890890 
    891891----------------------------------- 
     
    898898Line: 779 
    899899Stack unwinding: <<beginning of stack>> 
    900 16:19:24: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     90010:31:37: 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 16:19:24: An exception has been thrown! 
     91110:31:37: An exception has been thrown! 
    912912 
    913913----------------------------------- 
     
    920920Line: 779 
    921921Stack unwinding: <<beginning of stack>> 
    922 16:19:24: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     92210:31:37: 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 16:19:24: An exception has been thrown! 
     93310:31:37: An exception has been thrown! 
    934934 
    935935----------------------------------- 
     
    942942Line: 779 
    943943Stack unwinding: <<beginning of stack>> 
    944 16:19:24: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     94410:31:37: 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 16:19:24: Parsing script GameTools.material 
    956 16:19:24: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    957 16:19:24: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    958 16:19:24: An exception has been thrown! 
     95510:31:37: Parsing script GameTools.material 
     95610:31:37: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     95710:31:37: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     95810:31:37: An exception has been thrown! 
    959959 
    960960----------------------------------- 
     
    967967Line: 779 
    968968Stack unwinding: <<beginning of stack>> 
    969 16:19:24: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     96910:31:37: 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 16:19:24: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    981 16:19:24: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    982 16:19:24: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    983 16:19:24: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
    984 16:19:24: Parsing script GameTools_HPS.material 
    985 16:19:24: An exception has been thrown! 
     98010:31:37: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     98110:31:37: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     98210:31:37: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     98310:31:37: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
     98410:31:37: Parsing script GameTools_HPS.material 
     98510:31:37: An exception has been thrown! 
    986986 
    987987----------------------------------- 
     
    994994Line: 779 
    995995Stack unwinding: <<beginning of stack>> 
    996 16: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! 
     99610:31:37: 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 16:19:24: An exception has been thrown! 
     100710:31:37: An exception has been thrown! 
    10081008 
    10091009----------------------------------- 
     
    10161016Line: 779 
    10171017Stack unwinding: <<beginning of stack>> 
    1018 16: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! 
     101810:31:37: 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 16:19:24: An exception has been thrown! 
     102910:31:37: An exception has been thrown! 
    10301030 
    10311031----------------------------------- 
     
    10381038Line: 779 
    10391039Stack unwinding: <<beginning of stack>> 
    1040 16: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! 
     104010:31:37: 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 16:19:24: An exception has been thrown! 
     105110:31:37: An exception has been thrown! 
    10521052 
    10531053----------------------------------- 
     
    10601060Line: 779 
    10611061Stack unwinding: <<beginning of stack>> 
    1062 16: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! 
     106210:31:37: 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 16:19:24: An exception has been thrown! 
     107310:31:37: An exception has been thrown! 
    10741074 
    10751075----------------------------------- 
     
    10821082Line: 779 
    10831083Stack unwinding: <<beginning of stack>> 
    1084 16: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! 
     108410:31:37: 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 16:19:24: An exception has been thrown! 
     109510:31:37: An exception has been thrown! 
    10961096 
    10971097----------------------------------- 
     
    11041104Line: 779 
    11051105Stack unwinding: <<beginning of stack>> 
    1106 16: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! 
     110610:31:37: 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 16:19:24: An exception has been thrown! 
     111710:31:37: An exception has been thrown! 
    11181118 
    11191119----------------------------------- 
     
    11261126Line: 779 
    11271127Stack unwinding: <<beginning of stack>> 
    1128 16: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! 
     112810:31:37: 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 16:19:24: An exception has been thrown! 
     113910:31:37: An exception has been thrown! 
    11401140 
    11411141----------------------------------- 
     
    11481148Line: 779 
    11491149Stack unwinding: <<beginning of stack>> 
    1150 16: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! 
     115010:31:37: 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 16:19:24: An exception has been thrown! 
     116110:31:37: An exception has been thrown! 
    11621162 
    11631163----------------------------------- 
     
    11701170Line: 779 
    11711171Stack unwinding: <<beginning of stack>> 
    1172 16: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! 
     117210:31:37: 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 16:19:24: An exception has been thrown! 
     118310:31:37: An exception has been thrown! 
    11841184 
    11851185----------------------------------- 
     
    11921192Line: 779 
    11931193Stack unwinding: <<beginning of stack>> 
    1194 16: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! 
     119410:31:37: 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 16:19:24: An exception has been thrown! 
     120510:31:37: An exception has been thrown! 
    12061206 
    12071207----------------------------------- 
     
    12141214Line: 779 
    12151215Stack unwinding: <<beginning of stack>> 
    1216 16: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! 
     121610:31:37: 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 16:19:24: An exception has been thrown! 
     122710:31:37: An exception has been thrown! 
    12281228 
    12291229----------------------------------- 
     
    12361236Line: 779 
    12371237Stack unwinding: <<beginning of stack>> 
    1238 16:19:24: Error in material Smoke_IllumVolume at line 291 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     123810:31:37: 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 16:19:24: Parsing script GlassHead.material 
    1250 16:19:24: An exception has been thrown! 
     124910:31:37: Parsing script GlassHead.material 
     125010:31:37: An exception has been thrown! 
    12511251 
    12521252----------------------------------- 
     
    12591259Line: 779 
    12601260Stack unwinding: <<beginning of stack>> 
    1261 16:19:24: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     126110:31:37: 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 16:19:24: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    1273 16:19:24: An exception has been thrown! 
     127210:31:37: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     127310:31:37: An exception has been thrown! 
    12741274 
    12751275----------------------------------- 
     
    12821282Line: 779 
    12831283Stack unwinding: <<beginning of stack>> 
    1284 16:19:24: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     128410:31:37: 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 16:19:24: An exception has been thrown! 
     129510:31:37: An exception has been thrown! 
    12961296 
    12971297----------------------------------- 
     
    13041304Line: 779 
    13051305Stack unwinding: <<beginning of stack>> 
    1306 16:19:24: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     130610:31:37: 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 16:19:24: An exception has been thrown! 
     131710:31:37: An exception has been thrown! 
    13181318 
    13191319----------------------------------- 
     
    13261326Line: 779 
    13271327Stack unwinding: <<beginning of stack>> 
    1328 16:19:24: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     132810:31:37: 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 16:19:24: Parsing script Glow.material 
    1340 16:19:24: An exception has been thrown! 
     133910:31:37: Parsing script Glow.material 
     134010:31:37: An exception has been thrown! 
    13411341 
    13421342----------------------------------- 
     
    13491349Line: 779 
    13501350Stack unwinding: <<beginning of stack>> 
    1351 16:19:24: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     135110:31:37: 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 16:19:24: Parsing script hangar.material 
    1363 16:19:24: Parsing script kupola.material 
    1364 16:19:24: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1365 16:19:24: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1366 16:19:24: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1367 16:19:24: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1368 16:19:24: Parsing script MetalTeapot.material 
    1369 16:19:24: An exception has been thrown! 
     136210:31:37: Parsing script hangar.material 
     136310:31:37: Parsing script kupola.material 
     136410:31:37: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     136510:31:37: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     136610:31:37: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     136710:31:37: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     136810:31:37: Parsing script MetalTeapot.material 
     136910:31:37: An exception has been thrown! 
    13701370 
    13711371----------------------------------- 
     
    13781378Line: 779 
    13791379Stack unwinding: <<beginning of stack>> 
    1380 16:19:24: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     138010:31:37: 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 16:19:24: An exception has been thrown! 
     139110:31:37: An exception has been thrown! 
    13921392 
    13931393----------------------------------- 
     
    14001400Line: 779 
    14011401Stack unwinding: <<beginning of stack>> 
    1402 16:19:24: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     140210:31:37: 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 16:19:24: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
    1414 16:19:24: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 
    1415 16:19:24: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
    1416 16:19:24: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 
    1417 16:19:36: An exception has been thrown! 
     141310:31:37: Error in material DistanceMinMaxCW at line 133 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
     141410:31:37: Error in material DistanceMinMaxCW at line 134 of MetalTeapot.material: Unrecognised command: depth_test 
     141510:31:37: Error in material DistanceMinMaxCCW at line 157 of MetalTeapot.material: Bad scene_blend attribute, unrecognised parameter 'max' 
     141610:31:37: Error in material DistanceMinMaxCCW at line 158 of MetalTeapot.material: Unrecognised command: depth_test 
     141710:31:50: An exception has been thrown! 
    14181418 
    14191419----------------------------------- 
     
    14261426Line: 779 
    14271427Stack unwinding: <<beginning of stack>> 
    1428 16:19:36: Error in material MetalTeapotMultipleBounce at line 254 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     142810:31:50: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    14291429 
    14301430----------------------------------- 
     
    14371437Line: 779 
    14381438Stack unwinding: <<beginning of stack>> 
    1439 16:19:36: An exception has been thrown! 
     143910:31:50: An exception has been thrown! 
    14401440 
    14411441----------------------------------- 
     
    14481448Line: 779 
    14491449Stack unwinding: <<beginning of stack>> 
    1450 16:19:36: Error in material MetalTeapotMultipleBounce at line 256 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     145010:31:50: Error in material MetalTeapotMultipleBounce at line 258 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    14511451 
    14521452----------------------------------- 
     
    14591459Line: 779 
    14601460Stack unwinding: <<beginning of stack>> 
    1461 16:19:36: Parsing script Ogre.material 
    1462 16:19:36: Parsing script Particles.material 
    1463 16:19:36: An exception has been thrown! 
     146110:31:50: Parsing script Ogre.material 
     146210:31:50: Parsing script Particles.material 
     146310:31:50: An exception has been thrown! 
    14641464 
    14651465----------------------------------- 
     
    14721472Line: 779 
    14731473Stack unwinding: <<beginning of stack>> 
    1474 16:19:36: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     147410:31:50: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14751475 
    14761476----------------------------------- 
     
    14831483Line: 779 
    14841484Stack unwinding: <<beginning of stack>> 
    1485 16:19:36: An exception has been thrown! 
     148510:31:50: An exception has been thrown! 
    14861486 
    14871487----------------------------------- 
     
    14941494Line: 779 
    14951495Stack unwinding: <<beginning of stack>> 
    1496 16:19:36: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     149610:31:50: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14971497 
    14981498----------------------------------- 
     
    15051505Line: 779 
    15061506Stack unwinding: <<beginning of stack>> 
    1507 16:19:36: Parsing script RaytraceDemo.material 
    1508 16:19:36: Parsing script stairs.material 
    1509 16:19:36: Parsing script terito.material 
    1510 16:19:36: Parsing script uvegfolyoso2.material 
    1511 16:19:36: An exception has been thrown! 
     150710:31:50: Parsing script RaytraceDemo.material 
     150810:31:50: Parsing script stairs.material 
     150910:31:50: Parsing script terito.material 
     151010:31:50: Parsing script uvegfolyoso2.material 
     151110:31:50: An exception has been thrown! 
    15121512 
    15131513----------------------------------- 
     
    15201520Line: 779 
    15211521Stack unwinding: <<beginning of stack>> 
    1522 16:19:36: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     152210:31:50: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15231523 
    15241524----------------------------------- 
     
    15311531Line: 779 
    15321532Stack unwinding: <<beginning of stack>> 
    1533 16:19:36: An exception has been thrown! 
     153310:31:50: An exception has been thrown! 
    15341534 
    15351535----------------------------------- 
     
    15421542Line: 779 
    15431543Stack unwinding: <<beginning of stack>> 
    1544 16:19:36: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     154410:31:50: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15451545 
    15461546----------------------------------- 
     
    15531553Line: 779 
    15541554Stack unwinding: <<beginning of stack>> 
    1555 16:19:36: An exception has been thrown! 
     155510:31:50: An exception has been thrown! 
    15561556 
    15571557----------------------------------- 
     
    15641564Line: 779 
    15651565Stack unwinding: <<beginning of stack>> 
    1566 16:19:36: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     156610:31:50: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15671567 
    15681568----------------------------------- 
     
    15751575Line: 779 
    15761576Stack unwinding: <<beginning of stack>> 
    1577 16:19:36: An exception has been thrown! 
     157710:31:50: An exception has been thrown! 
    15781578 
    15791579----------------------------------- 
     
    15861586Line: 779 
    15871587Stack unwinding: <<beginning of stack>> 
    1588 16:19:36: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     158810:31:50: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15891589 
    15901590----------------------------------- 
     
    15971597Line: 779 
    15981598Stack unwinding: <<beginning of stack>> 
    1599 16:19:36: An exception has been thrown! 
     159910:31:50: An exception has been thrown! 
    16001600 
    16011601----------------------------------- 
     
    16081608Line: 779 
    16091609Stack unwinding: <<beginning of stack>> 
    1610 16:19:36: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     161010:31:50: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16111611 
    16121612----------------------------------- 
     
    16191619Line: 779 
    16201620Stack unwinding: <<beginning of stack>> 
    1621 16:19:36: An exception has been thrown! 
     162110:31:50: An exception has been thrown! 
    16221622 
    16231623----------------------------------- 
     
    16301630Line: 779 
    16311631Stack unwinding: <<beginning of stack>> 
    1632 16:19:36: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     163210:31:50: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16331633 
    16341634----------------------------------- 
     
    16411641Line: 779 
    16421642Stack unwinding: <<beginning of stack>> 
    1643 16:19:36: An exception has been thrown! 
     164310:31:50: An exception has been thrown! 
    16441644 
    16451645----------------------------------- 
     
    16521652Line: 779 
    16531653Stack unwinding: <<beginning of stack>> 
    1654 16:19:36: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     165410:31:50: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16551655 
    16561656----------------------------------- 
     
    16631663Line: 779 
    16641664Stack unwinding: <<beginning of stack>> 
    1665 16:19:36: An exception has been thrown! 
     166510:31:50: An exception has been thrown! 
    16661666 
    16671667----------------------------------- 
     
    16741674Line: 779 
    16751675Stack unwinding: <<beginning of stack>> 
    1676 16:19:36: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     167610:31:50: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16771677 
    16781678----------------------------------- 
     
    16851685Line: 779 
    16861686Stack unwinding: <<beginning of stack>> 
    1687 16:19:36: An exception has been thrown! 
     168710:31:50: An exception has been thrown! 
    16881688 
    16891689----------------------------------- 
     
    16961696Line: 779 
    16971697Stack unwinding: <<beginning of stack>> 
    1698 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     169810:31:50: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16991699 
    17001700----------------------------------- 
     
    17071707Line: 779 
    17081708Stack unwinding: <<beginning of stack>> 
    1709 16:19:36: An exception has been thrown! 
     170910:31:50: An exception has been thrown! 
    17101710 
    17111711----------------------------------- 
     
    17181718Line: 779 
    17191719Stack unwinding: <<beginning of stack>> 
    1720 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     172010:31:50: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17211721 
    17221722----------------------------------- 
     
    17291729Line: 779 
    17301730Stack unwinding: <<beginning of stack>> 
    1731 16:19:36: An exception has been thrown! 
     173110:31:50: An exception has been thrown! 
    17321732 
    17331733----------------------------------- 
     
    17401740Line: 779 
    17411741Stack unwinding: <<beginning of stack>> 
    1742 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     174210:31:50: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17431743 
    17441744----------------------------------- 
     
    17511751Line: 779 
    17521752Stack unwinding: <<beginning of stack>> 
    1753 16:19:36: An exception has been thrown! 
     175310:31:50: An exception has been thrown! 
    17541754 
    17551755----------------------------------- 
     
    17621762Line: 779 
    17631763Stack unwinding: <<beginning of stack>> 
    1764 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     176410:31:50: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17651765 
    17661766----------------------------------- 
     
    17731773Line: 779 
    17741774Stack unwinding: <<beginning of stack>> 
    1775 16:19:36: An exception has been thrown! 
     177510:31:50: An exception has been thrown! 
    17761776 
    17771777----------------------------------- 
     
    17841784Line: 779 
    17851785Stack unwinding: <<beginning of stack>> 
    1786 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     178610:31:50: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    17871787 
    17881788----------------------------------- 
     
    17951795Line: 779 
    17961796Stack unwinding: <<beginning of stack>> 
    1797 16:19:36: An exception has been thrown! 
     179710:31:50: An exception has been thrown! 
    17981798 
    17991799----------------------------------- 
     
    18061806Line: 779 
    18071807Stack unwinding: <<beginning of stack>> 
    1808 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     180810:31:50: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18091809 
    18101810----------------------------------- 
     
    18171817Line: 779 
    18181818Stack unwinding: <<beginning of stack>> 
    1819 16:19:36: An exception has been thrown! 
     181910:31:50: An exception has been thrown! 
    18201820 
    18211821----------------------------------- 
     
    18281828Line: 779 
    18291829Stack unwinding: <<beginning of stack>> 
    1830 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     183010:31:50: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18311831 
    18321832----------------------------------- 
     
    18391839Line: 779 
    18401840Stack unwinding: <<beginning of stack>> 
    1841 16:19:36: An exception has been thrown! 
     184110:31:50: An exception has been thrown! 
    18421842 
    18431843----------------------------------- 
     
    18501850Line: 779 
    18511851Stack unwinding: <<beginning of stack>> 
    1852 16:19:36: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     185210:31:50: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    18531853 
    18541854----------------------------------- 
     
    18611861Line: 779 
    18621862Stack unwinding: <<beginning of stack>> 
    1863 16:19:36: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1864 16:19:36: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1865 16:19:36: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1866 16:19:36: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1867 16:19:36: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1868 16:19:36: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1869 16:19:36: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1870 16:19:36: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1871 16:19:36: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1872 16:19:36: Parsing script X3D.material 
    1873 16:19:36: Parsing script GameTools_Glow.compositor 
    1874 16:19:36: Parsing script GameTools_ToneMap.compositor 
    1875 16:19:36: Parsing script sample.fontdef 
    1876 16:19:36: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1877 16:19:36: Parsing script GameTools.particle 
    1878 16:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1879 16:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1880 16:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1881 16:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
    1882 16:19:36: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
    1883 16:19:36: Parsing script Compositor.overlay 
    1884 16:19:36: Parsing script DP3.overlay 
    1885 16:19:36: Parsing script Example-CubeMapping.overlay 
    1886 16:19:36: Parsing script Example-DynTex.overlay 
    1887 16:19:36: Parsing script Example-Water.overlay 
    1888 16:19:36: Parsing script FullScreen.overlay 
    1889 16:19:36: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1890 16:19:36: Parsing script Shadows.overlay 
    1891 16:19:36: Finished parsing scripts for resource group General 
    1892 16:19:36: Parsing scripts for resource group Internal 
    1893 16:19:36: Finished parsing scripts for resource group Internal 
    1894 16:19:36: Mesh: Loading teapot.mesh. 
    1895 16: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? 
    1896 16:19:36: Mesh: Loading difflab.mesh. 
    1897 16:19:36: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1898 16:19:36: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1899 16:19:36: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
    1900 16:19:36: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1901 16:19:36: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1902 16: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 
    1903 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1904 16: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 
    1905 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1906 16: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 
    1907 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1908 16: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 
    1909 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1910 16: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 
    1911 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1912 16: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 
    1913 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1914 16: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. 
    1915 16: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 
    1916 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1917 16: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 
    1918 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1919 16: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 
    1920 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1921 16: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 
    1922 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1923 16: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 
    1924 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1925 16: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 
    1926 16:19:36: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1927 16: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. 
    1928 16: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 
    1929 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1930 16: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 
    1931 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1932 16: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 
    1933 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1934 16: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 
    1935 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1936 16: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 
    1937 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1938 16: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 
    1939 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1940 16: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. 
    1941 16: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 
    1942 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1943 16: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 
    1944 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1945 16: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 
    1946 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1947 16: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 
    1948 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1949 16: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 
    1950 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1951 16: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 
    1952 16:19:36: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1953 16: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. 
    1954 16:19:36: Win32Input8: DirectInput Activation Starts 
    1955 16:19:36: Win32Input8: Establishing keyboard input. 
    1956 16:19:36: Win32Input8: Keyboard input established. 
    1957 16:19:36: Win32Input8: Initializing mouse input in immediate mode. 
    1958 16:19:36: Win32Input8: Mouse input in immediate mode initialized. 
    1959 16:19:36: Win32Input8: DirectInput OK. 
    1960 16: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 
    1961 16:19:36: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1962 16: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 
    1963 16:19:36: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1964 16: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 
    1965 16:19:36: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1966 16: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 
    1967 16:19:36: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1968 16: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. 
    1969 16: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. 
    1970 16:20:34: Unregistering ResourceManager for type BspLevel 
    1971 16:20:34: Render Target 'rtt/42868704' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1972 16:20:34: Render Target 'rtt/42868640' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1973 16:20:34: Render Target 'rtt/42868288' Average FPS: 4.78385 Best FPS: 19.4363 Worst FPS: 0.0806159 
    1974 16:20:34: Render Target 'rtt/42648256' Average FPS: 4.78385 Best FPS: 19.4175 Worst FPS: 0.0806192 
    1975 16:20:34: Render Target 'rtt/42795616' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
    1976 16:20:34: Render Target 'rtt/42795680' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
    1977 16:20:34: Render Target 'rtt/42795744' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
    1978 16:20:34: Render Target 'rtt/42795808' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
    1979 16:20:34: Render Target 'rtt/42795872' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
    1980 16:20:34: Render Target 'rtt/42795936' Average FPS: 0.0806452 Best FPS: 0.0806452 Worst FPS: 0.0806452 
    1981 16:20:34: Render Target 'rtt/42794240' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1982 16:20:34: Render Target 'rtt/42794304' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1983 16:20:34: Render Target 'rtt/42794368' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1984 16:20:34: Render Target 'rtt/42794432' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1985 16:20:34: Render Target 'rtt/42794496' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1986 16:20:34: Render Target 'rtt/42794560' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1987 16:20:34: Render Target 'rtt/42792896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1988 16:20:34: Render Target 'rtt/42792960' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1989 16:20:34: Render Target 'rtt/42793024' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1990 16:20:34: Render Target 'rtt/42793088' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1991 16:20:34: Render Target 'rtt/42793152' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1992 16:20:34: Render Target 'rtt/42793216' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1993 16:20:34: Render Target 'rtt/42791616' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1994 16:20:34: Render Target 'rtt/42791680' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1995 16:20:34: Render Target 'rtt/42791744' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1996 16:20:34: Render Target 'rtt/42791808' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1997 16:20:34: Render Target 'rtt/42791872' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1998 16:20:34: Render Target 'rtt/42791936' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1999 16:20:34: *-*-* OGRE Shutdown 
    2000 16:20:34: Unregistering ResourceManager for type Compositor 
    2001 16:20:34: Unregistering ResourceManager for type Font 
    2002 16:20:34: Unregistering ResourceManager for type Skeleton 
    2003 16:20:34: Unregistering ResourceManager for type Mesh 
    2004 16:20:34: Unregistering ResourceManager for type HighLevelGpuProgram 
    2005 16:20:34: Unloading library .\Plugin_CgProgramManager 
    2006 16:20:34: Unloading library .\Plugin_OctreeSceneManager 
    2007 16:20:34: Unloading library .\Plugin_BSPSceneManager 
    2008 16:20:34: Unloading library .\Plugin_ParticleFX 
    2009 16:20:34: Render Target 'OGRE Render Window' Average FPS: 4.7854 Best FPS: 20.3095 Worst FPS: 0.0402933 
    2010 16:20:34: D3D9 : Shutting down cleanly. 
    2011 16:20:34: Unregistering ResourceManager for type Texture 
    2012 16:20:34: Unregistering ResourceManager for type GpuProgram 
    2013 16:20:34: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    2014 16:20:34: Unloading library .\RenderSystem_Direct3D9 
    2015 16:20:34: Unregistering ResourceManager for type Material 
    2016 16:20:34: Unloading library OgrePlatform.dll 
     186310:31:50: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     186410:31:50: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     186510:31:50: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     186610:31:50: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     186710:31:50: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     186810:31:50: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     186910:31:50: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     187010:31:50: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     187110:31:50: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     187210:31:50: Parsing script X3D.material 
     187310:31:50: Parsing script GameTools_Glow.compositor 
     187410:31:50: Parsing script GameTools_ToneMap.compositor 
     187510:31:50: Parsing script sample.fontdef 
     187610:31:50: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     187710:31:50: Parsing script GameTools.particle 
     187810:31:50: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     187910:31:50: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     188010:31:50: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     188110:31:50: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
     188210:31:50: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
     188310:31:50: Parsing script Compositor.overlay 
     188410:31:50: Parsing script DP3.overlay 
     188510:31:50: Parsing script Example-CubeMapping.overlay 
     188610:31:50: Parsing script Example-DynTex.overlay 
     188710:31:50: Parsing script Example-Water.overlay 
     188810:31:50: Parsing script FullScreen.overlay 
     188910:31:50: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     189010:31:50: Parsing script Shadows.overlay 
     189110:31:50: Finished parsing scripts for resource group General 
     189210:31:50: Parsing scripts for resource group Internal 
     189310:31:50: Finished parsing scripts for resource group Internal 
     189410:31:50: Mesh: Loading teapot.mesh. 
     189510:31:50: 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? 
     189610:31:50: Mesh: Loading difflab.mesh. 
     189710:31:50: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     189810:31:51: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     189910:31:51: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
     190010:31:51: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     190110:31:51: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     190210:31:51: Creating viewport on target 'rtt/42792672', 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 
     190310:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190410:31:51: Creating viewport on target 'rtt/42792736', 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 
     190510:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190610:31:51: Creating viewport on target 'rtt/42792800', 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 
     190710:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     190810:31:51: Creating viewport on target 'rtt/42792864', 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 
     190910:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191010:31:51: Creating viewport on target 'rtt/42792928', 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 
     191110:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191210:31:51: Creating viewport on target 'rtt/42792992', 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 
     191310:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191410:31:51: 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. 
     191510:31:51: Creating viewport on target 'rtt/42793952', 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 
     191610:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191710:31:51: Creating viewport on target 'rtt/42794016', 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 
     191810:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     191910:31:51: Creating viewport on target 'rtt/42794080', 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 
     192010:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192110:31:51: Creating viewport on target 'rtt/42794144', 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 
     192210:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192310:31:51: Creating viewport on target 'rtt/42794208', 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 
     192410:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192510:31:51: Creating viewport on target 'rtt/42794272', 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 
     192610:31:51: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     192710:31:51: 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. 
     192810:31:51: Creating viewport on target 'rtt/42795328', 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 
     192910:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193010:31:51: Creating viewport on target 'rtt/42795392', 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 
     193110:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193210:31:51: Creating viewport on target 'rtt/42795456', 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 
     193310:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193410:31:51: Creating viewport on target 'rtt/42795520', 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 
     193510:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193610:31:51: Creating viewport on target 'rtt/42795584', 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 
     193710:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     193810:31:51: Creating viewport on target 'rtt/42795648', 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 
     193910:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194010:31:51: 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. 
     194110:31:51: Creating viewport on target 'rtt/42796672', 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 
     194210:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194310:31:51: Creating viewport on target 'rtt/42796736', 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 
     194410:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194510:31:51: Creating viewport on target 'rtt/42796800', 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 
     194610:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194710:31:51: Creating viewport on target 'rtt/42796864', 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 
     194810:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     194910:31:51: Creating viewport on target 'rtt/42796928', 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 
     195010:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     195110:31:51: Creating viewport on target 'rtt/42796992', 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 
     195210:31:51: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     195310:31:51: 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. 
     195410:31:51: Win32Input8: DirectInput Activation Starts 
     195510:31:51: Win32Input8: Establishing keyboard input. 
     195610:31:51: Win32Input8: Keyboard input established. 
     195710:31:51: Win32Input8: Initializing mouse input in immediate mode. 
     195810:31:51: Win32Input8: Mouse input in immediate mode initialized. 
     195910:31:51: Win32Input8: DirectInput OK. 
     196010:31:51: Creating viewport on target 'rtt/42808608', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196110:31:51: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     196210:31:51: Creating viewport on target 'rtt/42808480', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196310:31:51: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     196410:31:51: Creating viewport on target 'rtt/42868544', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196510:31:51: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     196610:31:51: Creating viewport on target 'rtt/42868608', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     196710:31:51: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     196810:31:51: 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. 
     196910:31:51: 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. 
     197010:32:45: Unregistering ResourceManager for type BspLevel 
     197110:32:45: Render Target 'rtt/42868608' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     197210:32:45: Render Target 'rtt/42868544' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     197310:32:45: Render Target 'rtt/42808480' Average FPS: 1.78232 Best FPS: 6.77966 Worst FPS: 0.0550509 
     197410:32:45: Render Target 'rtt/42808608' Average FPS: 1.78232 Best FPS: 6.77966 Worst FPS: 0.0550494 
     197510:32:45: Render Target 'rtt/42796672' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 
     197610:32:45: Render Target 'rtt/42796736' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 
     197710:32:45: Render Target 'rtt/42796800' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 
     197810:32:45: Render Target 'rtt/42796864' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 
     197910:32:45: Render Target 'rtt/42796928' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 
     198010:32:45: Render Target 'rtt/42796992' Average FPS: 0.0417258 Best FPS: 0.0417258 Worst FPS: 0.0417258 
     198110:32:45: Render Target 'rtt/42795328' Average FPS: 0.0827815 Best FPS: 0.0827815 Worst FPS: 0.0827815 
     198210:32:45: Render Target 'rtt/42795392' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 
     198310:32:45: Render Target 'rtt/42795456' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 
     198410:32:45: Render Target 'rtt/42795520' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 
     198510:32:45: Render Target 'rtt/42795584' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 
     198610:32:45: Render Target 'rtt/42795648' Average FPS: 0.0827746 Best FPS: 0.0827746 Worst FPS: 0.0827746 
     198710:32:45: Render Target 'rtt/42793952' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198810:32:45: Render Target 'rtt/42794016' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     198910:32:45: Render Target 'rtt/42794080' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199010:32:45: Render Target 'rtt/42794144' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199110:32:45: Render Target 'rtt/42794208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199210:32:45: Render Target 'rtt/42794272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199310:32:45: Render Target 'rtt/42792672' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199410:32:45: Render Target 'rtt/42792736' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199510:32:45: Render Target 'rtt/42792800' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199610:32:45: Render Target 'rtt/42792864' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199710:32:45: Render Target 'rtt/42792928' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199810:32:45: Render Target 'rtt/42792992' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     199910:32:45: *-*-* OGRE Shutdown 
     200010:32:45: Unregistering ResourceManager for type Compositor 
     200110:32:45: Unregistering ResourceManager for type Font 
     200210:32:45: Unregistering ResourceManager for type Skeleton 
     200310:32:45: Unregistering ResourceManager for type Mesh 
     200410:32:45: Unregistering ResourceManager for type HighLevelGpuProgram 
     200510:32:45: Unloading library .\Plugin_CgProgramManager 
     200610:32:45: Unloading library .\Plugin_OctreeSceneManager 
     200710:32:45: Unloading library .\Plugin_BSPSceneManager 
     200810:32:45: Unloading library .\Plugin_ParticleFX 
     200910:32:45: Render Target 'OGRE Render Window' Average FPS: 1.56517 Best FPS: 7.60135 Worst FPS: 0.0275179 
     201010:32:45: D3D9 : Shutting down cleanly. 
     201110:32:45: Unregistering ResourceManager for type Texture 
     201210:32:45: Unregistering ResourceManager for type GpuProgram 
     201310:32:45: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     201410:32:45: Unloading library .\RenderSystem_Direct3D9 
     201510:32:45: Unregistering ResourceManager for type Material 
     201610:32:45: Unloading library OgrePlatform.dll 
Note: See TracChangeset for help on using the changeset viewer.