Changeset 2179


Ignore:
Timestamp:
03/01/07 18:04:37 (17 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum/Ogre
Files:
1 deleted
21 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPBasic.material

    r2040 r2179  
    115115 } 
    116116} 
     117 
     118material GTP/Basic/Distance_Normalized 
     119{ 
     120 technique 
     121 { 
     122  pass 
     123  { 
     124   cull_hardware clockwise 
     125   vertex_program_ref GTP/Basic/CPos_VS 
     126   {   
     127     param_named_auto WorldViewProj worldviewproj_matrix      
     128     param_named_auto WorldView     worldview_matrix 
     129   }  
     130   fragment_program_ref GTP/Basic/CDistNorm_PS 
     131   {     
     132    param_named_auto farPlane far_clip_distance 
     133   }    
     134  } 
     135 } 
     136} 
     137 
     138material GTP/Basic/Distance_NormalizedCCW : GTP/Basic/Distance_Normalized 
     139{ 
     140 technique 0 
     141 { 
     142  pass 0 
     143  { 
     144   cull_hardware anticlockwise    
     145  } 
     146 } 
     147} 
     148 
     149material GTP/Basic/ShadowReciever/Depth 
     150{ 
     151 technique 
     152 { 
     153   pass 
     154   { 
     155     lighting off 
     156     IllumTechniques 
     157     { 
     158        RenderTechnique DepthShadowReciever 
     159                { 
     160                        max_light_count 1 
     161                        vertex_program_name GTP/Basic/LightVPos_VS 
     162                        fragment_program_name GTP/Basic/SM/Depth_PS 
     163                        set_light_view false 
     164                        set_light_farplane false 
     165                }        
     166     } 
     167   } 
     168 } 
     169} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPBasic.program

    r2054 r2179  
    119119} 
    120120 
     121fragment_program GTP/Basic/CDistNorm_PS hlsl 
     122{ 
     123   source GTPBasic_PS.hlsl 
     124   entry_point CDistNorm 
     125   target ps_2_0 
     126} 
     127 
    121128fragment_program GTP/Basic/Plain_PS hlsl 
    122129{ 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPBasic_PS.hlsl

    r2024 r2179  
    2828{ 
    2929 float4 pos = IN.VPosition / IN.VPosition.w; 
    30  return float4(pos.z, pos.z * pos.z, 1, 1);      
     30 return float4(pos.z, pos.z * pos.z, 0, pos.z);  
    3131} 
    3232 
     
    3939{ 
    4040 float dist = length(IN.CPos.xyz); 
     41 return float4(dist, dist * dist, 1, dist);      
     42} 
     43 
     44float4 CDistNorm(CPos_OUT IN, 
     45                                uniform float farPlane) : COLOR 
     46{ 
     47 float dist = length(IN.CPos.xyz) / farPlane; 
    4148 return float4(dist, dist * dist, 1, dist);      
    4249} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPBasic_VS.hlsl

    r2054 r2179  
    149149{ 
    150150 VPos_OUT OUT; 
    151  OUT.VPos = OUT. VPosition = mul(WorldViewProj, position); 
     151 OUT.VPos = OUT.VPosition = mul(WorldViewProj, position); 
    152152 return OUT; 
    153153} 
     
    224224LightVPos_OUT LightVPos(float4 position : POSITION0, 
    225225              uniform float4x4 WorldViewProj, 
    226               uniform float4x4 LightWorldViewProj) 
     226              uniform float4x4 LightViewProj, 
     227                  uniform float4x4 World) 
    227228{ 
    228229 LightVPos_OUT OUT; 
    229230 OUT.VPos = mul(WorldViewProj, position); 
    230  OUT.LightVPos = mul(LightWorldViewProj, position); 
     231 float4 WPos = mul(World, position); 
     232 OUT.LightVPos = mul(LightViewProj, WPos); 
    231233 return OUT; 
    232234} 
     
    242244LightCPos_OUT LightCPos(float4 position : POSITION0, 
    243245              uniform float4x4 WorldViewProj, 
    244               uniform float4x4 LightWorldViewProj, 
    245               uniform float4x4 LightWorldView) 
     246              uniform float4x4 World, 
     247              uniform float4x4 LightViewProj, 
     248              uniform float4x4 LightView) 
    246249{ 
    247250 LightCPos_OUT OUT; 
    248251 OUT.VPos = mul(WorldViewProj, position); 
    249  OUT.LightVPos = mul(LightWorldViewProj, position); 
    250  OUT.LightCPos = mul(LightWorldView, position); 
    251  return OUT; 
    252 } 
     252 float4 WPos = mul(World, position); 
     253 OUT.LightVPos = mul(LightViewProj, WPos); 
     254 OUT.LightCPos = mul(LightView, WPos); 
     255 return OUT; 
     256} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/GTPBasic/GTPShadowMap_PS.hlsl

    r2024 r2179  
    1515#define DEPTH_BIAS_VSM  0.001 
    1616#define DEPTH_EPSILON   0.001 
    17 #define DIST_BIAS       0.001 
     17#define DIST_BIAS       0.1 
    1818#define DIST_BIAS_VSM   0.001 
    1919#define DIST_EPSILON    0.001 
    2020 
    21 const float4 shadowColor = float4(0.85,0.85,0.85,1); 
     21#define shadowColor float4(0.85,0.85,0.85,1) 
    2222 
    2323float4 shadowMapDepth(LightVPos_OUT IN, 
     
    2525{ 
    2626  float4 light = shadowColor;    
    27   float4 pos = (IN.LightVPos / IN.LightVPos.w); 
    28   if( pos.z > 0.0) 
     27  if( IN.LightVPos.z > 0.0) 
    2928  { 
    30     pos.xy = (pos.xy + 1.0) / 2.0; 
     29    float4 pos = (IN.LightVPos / IN.LightVPos.w); 
     30        pos.xy = (pos.xy + 1.0) / 2.0; 
    3131    pos.y = 1.0 - pos.y; 
    3232    float storedDepth = tex2D(shadowMap, pos.xy).r; 
    33  
    34     if(pos.z - DEPTH_BIAS <= storedDepth.r) 
    35       light = 1; 
     33        pos.z -= DIST_BIAS; 
     34        light = max(pos.z <= storedDepth.r, shadowColor);            
    3635  } 
    37   
    3836  return light;  
    3937} 
     
    7472} 
    7573 
    76 float4 shadowMapDist(LightCPos_OUT IN,                      
    77                      uniform sampler2D shadowMap) : COLOR 
     74float4 shadowMapDist(LightCPos_OUT IN, 
     75                                        //uniform float lightFarPlane, 
     76                                         uniform sampler2D shadowMap) : COLOR 
    7877{ 
    79   float4 light = shadowColor;    
    80   float4 pos = (IN.LightVPos / IN.LightVPos.w); 
     78  float4 light = shadowColor; 
    8179   
    82   if( pos.z > 0.0) 
     80  if( IN.LightVPos.z > 0.0) 
    8381  {      
    84     //float d = length(pos.xy); 
     82    float4 pos = (IN.LightVPos / IN.LightVPos.w); 
     83        //float d = length(pos.xy); 
    8584    //light = saturate((1.0 - d)/0.05);          
    8685    //if(d <= 1.0) 
    87     { 
    88         float dist = length(IN.LightCPos.xyz); 
    89         pos.xy = (pos.xy + 1.0) / 2.0; 
    90         pos.y = 1.0 - pos.y; 
    91         float storedDist = tex2D(shadowMap, pos.xy).r; 
    92         dist -= DIST_BIAS; 
    93  
    94         if(dist <= storedDist); 
    95           light = 1; 
    96      } 
    97   }   
    98          
     86    //{ 
     87                float dist = length(IN.LightCPos.xyz) ; 
     88                pos.xy = (pos.xy + 1.0) / 2.0; 
     89                pos.y = 1.0 - pos.y; 
     90                float4 storedDist = tex2D(shadowMap, pos.xy); 
     91                dist -= DIST_BIAS; 
     92                light = max(dist <= storedDist.r, shadowColor);          
     93    //} 
     94  } 
     95         
    9996  return light; 
    10097} 
     
    105102{ 
    106103  float4 light = float4(1,1,1,1); 
    107          
    108   float4 pos = (IN.LightVPos / IN.LightVPos.w); 
    109104   
    110   if( pos.z > 0.0) 
     105  if( IN.LightVPos.z > 0.0) 
    111106  {      
    112     //float d = length(pos.xy); 
    113     //light = saturate((1.0 - d)/0.05);          
    114     //if(d <= 1.0) 
     107    float4 pos = (IN.LightVPos / IN.LightVPos.w); 
     108        float d = length(pos.xy); 
     109    light = saturate((1.0 - d)/0.05);            
     110    if(d <= 1.0) 
    115111    { 
    116         float dist = length(IN.LightCPos.xyz) / lightFarPlane; 
    117         pos.xy = (pos.xy + 1.0) / 2.0; 
    118         pos.y = 1.0 - pos.y; 
    119         float4 storedDist = tex2D(shadowMap, pos.xy); 
    120         dist -= DIST_BIAS_VSM; 
    121         float lit_factor = light * (dist <= storedDist.r);       
     112                float dist = length(IN.LightCPos.xyz) / lightFarPlane; 
     113                pos.xy = (pos.xy + 1.0) / 2.0; 
     114                pos.y = 1.0 - pos.y; 
     115                float4 storedDist = tex2D(shadowMap, pos.xy); 
     116                dist -= DIST_BIAS_VSM; 
     117                float lit_factor = light * (dist <= storedDist.r);       
    122118          
    123         float M1 = storedDist.r; 
    124         float M2 = storedDist.g; 
    125         float v2 = min(max(M2 - M1 * M1, 0.0) +  DIST_EPSILON, 1.0); 
    126         float m_d = M1 - dist; 
     119                float M1 = storedDist.r; 
     120                float M2 = storedDist.g; 
     121                float v2 = min(max(M2 - M1 * M1, 0.0) +  DIST_EPSILON, 1.0); 
     122                float m_d = M1 - dist; 
    127123        float pmax = v2 / (v2 + m_d * m_d); 
    128124                                                 
    129125        // Adjust the light color based on the shadow attenuation 
    130         light = max(lit_factor, pmax); 
    131          
    132      } 
     126        light = max(lit_factor, pmax);           
     127    } 
    133128  } 
    134129  else 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/difflab.material

    r2175 r2179  
    123123                         { 
    124124                                        max_light_count 3 
    125                                         vertex_program_name GameTools/ShadowMap/ShadowDistVS 
    126                                         fragment_program_name GameTools/ShadowMap/ShadowDistPS 
    127                                         set_light_view true 
    128                                         set_light_farplane true 
     125                                        vertex_program_name GTP/Basic/LightCPos_VS 
     126                                        fragment_program_name GTP/Basic/SM/Dist_VSM_PS 
     127                                        set_light_view true 
     128                                        set_light_farplane true 
     129                                        light_viewproj_param_name LightViewProj 
     130                                        light_view_param_name LightView 
     131                                        light_farplane_param_name lightFarPlane 
     132                                        world_view_proj_param_name WorldViewProj 
     133                                        world_param_name World 
    129134                         }                                       
    130135                    }    
     
    154159                         { 
    155160                                        max_light_count 3 
    156                                         vertex_program_name GameTools/ShadowMap/ShadowDistVS 
    157                                         fragment_program_name GameTools/ShadowMap/ShadowDistPS 
    158                                         set_light_view true 
    159                                         set_light_farplane true 
     161                                        vertex_program_name GTP/Basic/LightCPos_VS 
     162                                        fragment_program_name GTP/Basic/SM/Dist_VSM_PS 
     163                                        set_light_view true 
     164                                        set_light_farplane true 
     165                                        light_viewproj_param_name LightViewProj 
     166                                        light_view_param_name LightView 
     167                                        light_farplane_param_name lightFarPlane 
     168                                        world_view_proj_param_name WorldViewProj 
     169                                        world_param_name World 
    160170                         }                                       
    161171                    }    
     
    206216                        { 
    207217                                        max_light_count 3 
    208                                         vertex_program_name GameTools/ShadowMap/ShadowDistVS 
    209                                         fragment_program_name GameTools/ShadowMap/ShadowDistPS 
    210                                         set_light_view true 
    211                                         set_light_farplane true 
     218                                        vertex_program_name GTP/Basic/LightCPos_VS 
     219                                        fragment_program_name GTP/Basic/SM/Dist_VSM_PS 
     220                                        set_light_view true 
     221                                        set_light_farplane true 
     222                                        light_viewproj_param_name LightViewProj 
     223                                        light_view_param_name LightView 
     224                                        light_farplane_param_name lightFarPlane 
     225                                        world_view_proj_param_name WorldViewProj 
     226                                        world_param_name World 
    212227                        }                                        
    213228                }        
     
    244259                        { 
    245260                                        max_light_count 3 
    246                                         vertex_program_name GameTools/ShadowMap/ShadowDistVS 
    247                                         fragment_program_name GameTools/ShadowMap/ShadowDistPS 
    248                                         set_light_view true 
    249                                         set_light_farplane true 
     261                                        vertex_program_name GTP/Basic/LightCPos_VS 
     262                                        fragment_program_name GTP/Basic/SM/Dist_VSM_PS 
     263                                        set_light_view true 
     264                                        set_light_farplane true 
     265                                        light_viewproj_param_name LightViewProj 
     266                                        light_view_param_name LightView 
     267                                        light_farplane_param_name lightFarPlane 
     268                                        world_view_proj_param_name WorldViewProj 
     269                                        world_param_name World 
    250270                        }                                        
    251271                }        
     
    300320                        { 
    301321                                        max_light_count 3 
    302                                         vertex_program_name GameTools/ShadowMap/ShadowDistVS 
    303                                         fragment_program_name GameTools/ShadowMap/ShadowDistPS 
    304                                         set_light_view true 
    305                                         set_light_farplane true 
     322                                        vertex_program_name GTP/Basic/LightCPos_VS 
     323                                        fragment_program_name GTP/Basic/SM/Dist_VSM_PS 
     324                                        set_light_view true 
     325                                        set_light_farplane true 
     326                                        light_viewproj_param_name LightViewProj 
     327                                        light_view_param_name LightView 
     328                                        light_farplane_param_name lightFarPlane 
     329                                        world_view_proj_param_name WorldViewProj 
     330                                        world_param_name World 
    306331                        }                                        
    307332                }        
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log

    r2175 r2179  
    1 17:48:03: Creating resource group General 
    2 17:48:03: Creating resource group Internal 
    3 17:48:03: Creating resource group Autodetect 
    4 17:48:03: Registering ResourceManager for type Material 
    5 17:48:03: Registering ResourceManager for type Mesh 
    6 17:48:03: Registering ResourceManager for type Skeleton 
    7 17:48:03: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 17:48:03: Loading library OgrePlatform_d.dll 
    9 17:48:03: OverlayElementFactory for type Panel registered. 
    10 17:48:03: OverlayElementFactory for type BorderPanel registered. 
    11 17:48:03: OverlayElementFactory for type TextArea registered. 
    12 17:48:03: Registering ResourceManager for type Font 
    13 17:48:03: ArchiveFactory for archive type FileSystem registered. 
    14 17:48:03: ArchiveFactory for archive type Zip registered. 
    15 17:48:03: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 17:48:03: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
    17 17:48:03: Registering ResourceManager for type HighLevelGpuProgram 
    18 17:48:03: Registering ResourceManager for type Compositor 
    19 17:48:03: MovableObjectFactory for type 'Entity' registered. 
    20 17:48:03: MovableObjectFactory for type 'Light' registered. 
    21 17:48:03: MovableObjectFactory for type 'BillboardSet' registered. 
    22 17:48:03: MovableObjectFactory for type 'ManualObject' registered. 
    23 17:48:03: MovableObjectFactory for type 'BillboardChain' registered. 
    24 17:48:03: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 17:48:03: Loading library .\RenderSystem_Direct3D9 
    26 17:48:03: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 17:48:03: D3D9: Driver Detection Starts 
    28 17:48:03: D3D9: Driver Detection Ends 
    29 17:48:03: Loading library .\Plugin_ParticleFX 
    30 17:48:03: Particle Emitter Type 'Point' registered 
    31 17:48:03: Particle Emitter Type 'Box' registered 
    32 17:48:03: Particle Emitter Type 'Ellipsoid' registered 
    33 17:48:03: Particle Emitter Type 'Cylinder' registered 
    34 17:48:03: Particle Emitter Type 'Ring' registered 
    35 17:48:03: Particle Emitter Type 'HollowEllipsoid' registered 
    36 17:48:03: Particle Affector Type 'LinearForce' registered 
    37 17:48:03: Particle Affector Type 'ColourFader' registered 
    38 17:48:03: Particle Affector Type 'ColourFader2' registered 
    39 17:48:03: Particle Affector Type 'ColourImage' registered 
    40 17:48:03: Particle Affector Type 'ColourInterpolator' registered 
    41 17:48:03: Particle Affector Type 'Scaler' registered 
    42 17:48:03: Particle Affector Type 'Rotator' registered 
    43 17:48:03: Particle Affector Type 'DirectionRandomiser' registered 
    44 17:48:03: Particle Affector Type 'DeflectorPlane' registered 
    45 17:48:03: Loading library .\Plugin_BSPSceneManager 
    46 17:48:03: Registering ResourceManager for type BspLevel 
    47 17:48:03: Loading library .\Plugin_OctreeSceneManager 
    48 17:48:03: Loading library .\Plugin_CgProgramManager 
    49 17:48:03: Loading library .\Plugin_VisibilitySceneManager 
    50 17:48:07: *-*-* OGRE Initialising 
    51 17:48:07: *-*-* Version 1.2.0 (Dagon) 
    52 17:48:07: Creating resource group Bootstrap 
    53 17:48:07: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    54 17:48:07: Creating resource group GTP_Basic 
    55 17:48:07: Added resource location '../../Media/materials/GTPBasic' of type 'FileSystem' to resource group 'GTP_Basic' 
    56 17:48:07: Creating resource group GTP_Caustic 
    57 17:48:07: Added resource location '../../Media/materials/GTPCaustic' of type 'FileSystem' to resource group 'GTP_Caustic' 
    58 17:48:07: Creating resource group GTP_Demo 
    59 17:48:07: Added resource location '../../Media/Demo' of type 'FileSystem' to resource group 'GTP_Demo' 
    60 17:48:07: Creating resource group GTP_Diffuse 
    61 17:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/diffuse' of type 'FileSystem' to resource group 'GTP_Diffuse' 
    62 17:48:07: Creating resource group GTP_EnvMap 
    63 17:48:07: Added resource location '../../Media/materials/GTPEnvMap' of type 'FileSystem' to resource group 'GTP_EnvMap' 
    64 17:48:07: Creating resource group GTP_MultiBounce_Shared 
    65 17:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce' of type 'FileSystem' to resource group 'GTP_MultiBounce_Shared' 
    66 17:48:07: Creating resource group GTP_MultipleReflection 
    67 17:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflection' of type 'FileSystem' to resource group 'GTP_MultipleReflection' 
    68 17:48:07: Creating resource group GTP_MultipleReflection_MinMax 
    69 17:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflectionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleReflection_MinMax' 
    70 17:48:07: Creating resource group GTP_MultipleRefraction 
    71 17:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction' of type 'FileSystem' to resource group 'GTP_MultipleRefraction' 
    72 17:48:07: Creating resource group GTP_MultipleRefraction2L 
    73 17:48:07: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction2L' of type 'FileSystem' to resource group 'GTP_MultipleRefraction2L' 
    74 17:48:07: Creating resource group GTP_Particles 
    75 17:48:07: Added resource location '../../Media/materials/GTPParticles' of type 'FileSystem' to resource group 'GTP_Particles' 
    76 17:48:07: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    77 17:48:07: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    78 17:48:07: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    79 17:48:07: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    80 17:48:07: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    81 17:48:07: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    82 17:48:07: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    83 17:48:07: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    84 17:48:07: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    85 17:48:07: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    86 17:48:07: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    87 17:48:07: Creating resource group PostProc 
    88 17:48:07: Added resource location '../../Media/materials/GTPPostProc' of type 'FileSystem' to resource group 'PostProc' 
    89 17:48:07: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    90 17:48:07: D3D9 : RenderSystem Option: Anti aliasing = None 
    91 17:48:07: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    92 17:48:07: D3D9 : RenderSystem Option: Full Screen = No 
    93 17:48:07: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    94 17:48:07: D3D9 : RenderSystem Option: VSync = No 
    95 17:48:07: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    96 17:48:07: D3D9 : Subsystem Initialising 
    97 17:48:07: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    98 17:48:07: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    99 17:48:07: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    100 17:48:07: Registering ResourceManager for type Texture 
    101 17:48:07: Registering ResourceManager for type GpuProgram 
    102 17:48:07: RenderSystem capabilities 
    103 17:48:07: ------------------------- 
    104 17:48:07:  * Hardware generation of mipmaps: yes 
    105 17:48:07:  * Texture blending: yes 
    106 17:48:07:  * Anisotropic texture filtering: yes 
    107 17:48:07:  * Dot product texture operation: yes 
    108 17:48:07:  * Cube mapping: yes 
    109 17:48:07:  * Hardware stencil buffer: yes 
    110 17:48:07:    - Stencil depth: 8 
    111 17:48:07:    - Two sided stencil support: yes 
    112 17:48:07:    - Wrap stencil values: yes 
    113 17:48:07:  * Hardware vertex / index buffers: yes 
    114 17:48:07:  * Vertex programs: yes 
    115 17:48:07:    - Max vertex program version: vs_3_0 
    116 17:48:07:  * Fragment programs: yes 
    117 17:48:07:    - Max fragment program version: ps_3_0 
    118 17:48:07:  * Texture Compression: yes 
    119 17:48:07:    - DXT: yes 
    120 17:48:07:    - VTC: no 
    121 17:48:07:  * Scissor Rectangle: yes 
    122 17:48:07:  * Hardware Occlusion Query: yes 
    123 17:48:07:  * User clip planes: yes 
    124 17:48:07:  * VET_UBYTE4 vertex element type: yes 
    125 17:48:07:  * Infinite far plane projection: yes 
    126 17:48:07:  * Hardware render-to-texture: yes 
    127 17:48:07:  * Floating point textures: yes 
    128 17:48:07:  * Non-power-of-two textures: yes 
    129 17:48:07:  * Volume textures: yes 
    130 17:48:07:  * Multiple Render Targets: 4 
    131 17:48:07:  * Max Point Size: 8192 
    132 17:48:07: *************************************** 
    133 17:48:07: *** D3D9 : Subsystem Initialised OK *** 
    134 17:48:07: *************************************** 
    135 17:48:07: ResourceBackgroundQueue - threading disabled 
    136 17:48:07: Particle Renderer Type 'billboard' registered 
    137 17:48:07: Particle Renderer Type 'sprite' registered 
    138 17:48:07: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    139 17:48:07: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    140 17:48:07: Initialising resource group Bootstrap 
    141 17:48:07: Parsing scripts for resource group Bootstrap 
    142 17:48:07: Parsing script OgreCore.material 
    143 17:48:07: Parsing script OgreProfiler.material 
    144 17:48:07: Parsing script Ogre.fontdef 
    145 17:48:07: Parsing script OgreDebugPanel.overlay 
    146 17:48:07: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    147 17:48:07: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    148 17:48:07: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    149 17:48:07: Font TrebuchetMSBoldusing texture size 512x512 
    150 17:48:07: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    151 17:48:07: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    152 17:48:08: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    153 17:48:08: Parsing script OgreLoadingPanel.overlay 
    154 17:48:08: Finished parsing scripts for resource group Bootstrap 
    155 17:48:08: Initialising resource group General 
    156 17:48:08: Parsing scripts for resource group General 
    157 17:48:08: Parsing script GameTools.program 
    158 17:48:08: Parsing script atlascube.material 
    159 17:48:08: Parsing script colorcube.material 
    160 17:48:08: Parsing script difflab.material 
    161 17:48:08: An exception has been thrown! 
     118:01:22: Creating resource group General 
     218:01:22: Creating resource group Internal 
     318:01:22: Creating resource group Autodetect 
     418:01:22: Registering ResourceManager for type Material 
     518:01:22: Registering ResourceManager for type Mesh 
     618:01:22: Registering ResourceManager for type Skeleton 
     718:01:22: MovableObjectFactory for type 'ParticleSystem' registered. 
     818:01:22: Loading library OgrePlatform_d.dll 
     918:01:22: OverlayElementFactory for type Panel registered. 
     1018:01:22: OverlayElementFactory for type BorderPanel registered. 
     1118:01:22: OverlayElementFactory for type TextArea registered. 
     1218:01:22: Registering ResourceManager for type Font 
     1318:01:22: ArchiveFactory for archive type FileSystem registered. 
     1418:01:22: ArchiveFactory for archive type Zip registered. 
     1518:01:22: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1618:01:22: 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  
     1718:01:22: Registering ResourceManager for type HighLevelGpuProgram 
     1818:01:22: Registering ResourceManager for type Compositor 
     1918:01:22: MovableObjectFactory for type 'Entity' registered. 
     2018:01:22: MovableObjectFactory for type 'Light' registered. 
     2118:01:22: MovableObjectFactory for type 'BillboardSet' registered. 
     2218:01:22: MovableObjectFactory for type 'ManualObject' registered. 
     2318:01:22: MovableObjectFactory for type 'BillboardChain' registered. 
     2418:01:22: MovableObjectFactory for type 'RibbonTrail' registered. 
     2518:01:22: Loading library .\RenderSystem_Direct3D9 
     2618:01:22: D3D9 : Direct3D9 Rendering Subsystem created. 
     2718:01:22: D3D9: Driver Detection Starts 
     2818:01:22: D3D9: Driver Detection Ends 
     2918:01:22: Loading library .\Plugin_ParticleFX 
     3018:01:22: Particle Emitter Type 'Point' registered 
     3118:01:22: Particle Emitter Type 'Box' registered 
     3218:01:22: Particle Emitter Type 'Ellipsoid' registered 
     3318:01:22: Particle Emitter Type 'Cylinder' registered 
     3418:01:22: Particle Emitter Type 'Ring' registered 
     3518:01:22: Particle Emitter Type 'HollowEllipsoid' registered 
     3618:01:22: Particle Affector Type 'LinearForce' registered 
     3718:01:22: Particle Affector Type 'ColourFader' registered 
     3818:01:22: Particle Affector Type 'ColourFader2' registered 
     3918:01:22: Particle Affector Type 'ColourImage' registered 
     4018:01:22: Particle Affector Type 'ColourInterpolator' registered 
     4118:01:22: Particle Affector Type 'Scaler' registered 
     4218:01:22: Particle Affector Type 'Rotator' registered 
     4318:01:22: Particle Affector Type 'DirectionRandomiser' registered 
     4418:01:22: Particle Affector Type 'DeflectorPlane' registered 
     4518:01:22: Loading library .\Plugin_BSPSceneManager 
     4618:01:22: Registering ResourceManager for type BspLevel 
     4718:01:22: Loading library .\Plugin_OctreeSceneManager 
     4818:01:22: Loading library .\Plugin_CgProgramManager 
     4918:01:22: Loading library .\Plugin_VisibilitySceneManager 
     5018:01:26: *-*-* OGRE Initialising 
     5118:01:26: *-*-* Version 1.2.0 (Dagon) 
     5218:01:26: Creating resource group Bootstrap 
     5318:01:26: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5418:01:26: Creating resource group GTP_Basic 
     5518:01:26: Added resource location '../../Media/materials/GTPBasic' of type 'FileSystem' to resource group 'GTP_Basic' 
     5618:01:26: Creating resource group GTP_Caustic 
     5718:01:26: Added resource location '../../Media/materials/GTPCaustic' of type 'FileSystem' to resource group 'GTP_Caustic' 
     5818:01:26: Creating resource group GTP_Demo 
     5918:01:26: Added resource location '../../Media/Demo' of type 'FileSystem' to resource group 'GTP_Demo' 
     6018:01:26: Creating resource group GTP_Diffuse 
     6118:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/diffuse' of type 'FileSystem' to resource group 'GTP_Diffuse' 
     6218:01:26: Creating resource group GTP_EnvMap 
     6318:01:26: Added resource location '../../Media/materials/GTPEnvMap' of type 'FileSystem' to resource group 'GTP_EnvMap' 
     6418:01:26: Creating resource group GTP_MultiBounce_Shared 
     6518:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce' of type 'FileSystem' to resource group 'GTP_MultiBounce_Shared' 
     6618:01:26: Creating resource group GTP_MultipleReflection 
     6718:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflection' of type 'FileSystem' to resource group 'GTP_MultipleReflection' 
     6818:01:26: Creating resource group GTP_MultipleReflection_MinMax 
     6918:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflectionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleReflection_MinMax' 
     7018:01:26: Creating resource group GTP_MultipleRefraction 
     7118:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction' of type 'FileSystem' to resource group 'GTP_MultipleRefraction' 
     7218:01:26: Creating resource group GTP_MultipleRefraction2L 
     7318:01:26: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction2L' of type 'FileSystem' to resource group 'GTP_MultipleRefraction2L' 
     7418:01:26: Creating resource group GTP_Particles 
     7518:01:26: Added resource location '../../Media/materials/GTPParticles' of type 'FileSystem' to resource group 'GTP_Particles' 
     7618:01:26: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     7718:01:26: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     7818:01:26: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     7918:01:26: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     8018:01:26: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     8118:01:26: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     8218:01:26: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     8318:01:26: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     8418:01:26: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     8518:01:26: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     8618:01:26: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     8718:01:26: Creating resource group PostProc 
     8818:01:26: Added resource location '../../Media/materials/GTPPostProc' of type 'FileSystem' to resource group 'PostProc' 
     8918:01:26: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     9018:01:26: D3D9 : RenderSystem Option: Anti aliasing = None 
     9118:01:26: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     9218:01:26: D3D9 : RenderSystem Option: Full Screen = No 
     9318:01:26: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     9418:01:26: D3D9 : RenderSystem Option: VSync = No 
     9518:01:26: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     9618:01:26: D3D9 : Subsystem Initialising 
     9718:01:26: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     9818:01:26: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     9918:01:26: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     10018:01:26: Registering ResourceManager for type Texture 
     10118:01:26: Registering ResourceManager for type GpuProgram 
     10218:01:26: RenderSystem capabilities 
     10318:01:26: ------------------------- 
     10418:01:26:  * Hardware generation of mipmaps: yes 
     10518:01:26:  * Texture blending: yes 
     10618:01:26:  * Anisotropic texture filtering: yes 
     10718:01:26:  * Dot product texture operation: yes 
     10818:01:26:  * Cube mapping: yes 
     10918:01:26:  * Hardware stencil buffer: yes 
     11018:01:26:    - Stencil depth: 8 
     11118:01:26:    - Two sided stencil support: yes 
     11218:01:26:    - Wrap stencil values: yes 
     11318:01:26:  * Hardware vertex / index buffers: yes 
     11418:01:26:  * Vertex programs: yes 
     11518:01:26:    - Max vertex program version: vs_3_0 
     11618:01:26:  * Fragment programs: yes 
     11718:01:26:    - Max fragment program version: ps_3_0 
     11818:01:26:  * Texture Compression: yes 
     11918:01:26:    - DXT: yes 
     12018:01:26:    - VTC: no 
     12118:01:26:  * Scissor Rectangle: yes 
     12218:01:26:  * Hardware Occlusion Query: yes 
     12318:01:26:  * User clip planes: yes 
     12418:01:26:  * VET_UBYTE4 vertex element type: yes 
     12518:01:26:  * Infinite far plane projection: yes 
     12618:01:26:  * Hardware render-to-texture: yes 
     12718:01:26:  * Floating point textures: yes 
     12818:01:26:  * Non-power-of-two textures: yes 
     12918:01:26:  * Volume textures: yes 
     13018:01:26:  * Multiple Render Targets: 4 
     13118:01:26:  * Max Point Size: 8192 
     13218:01:26: *************************************** 
     13318:01:26: *** D3D9 : Subsystem Initialised OK *** 
     13418:01:26: *************************************** 
     13518:01:26: ResourceBackgroundQueue - threading disabled 
     13618:01:26: Particle Renderer Type 'billboard' registered 
     13718:01:26: Particle Renderer Type 'sprite' registered 
     13818:01: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 
     13918:01:26: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     14018:01:26: Initialising resource group Bootstrap 
     14118:01:26: Parsing scripts for resource group Bootstrap 
     14218:01:26: Parsing script OgreCore.material 
     14318:01:26: Parsing script OgreProfiler.material 
     14418:01:26: Parsing script Ogre.fontdef 
     14518:01:26: Parsing script OgreDebugPanel.overlay 
     14618:01: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. 
     14718:01:26: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     14818:01: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. 
     14918:01:27: Font TrebuchetMSBoldusing texture size 512x512 
     15018:01:27: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     15118:01:27: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     15218:01:27: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     15318:01:27: Parsing script OgreLoadingPanel.overlay 
     15418:01:27: Finished parsing scripts for resource group Bootstrap 
     15518:01:27: Initialising resource group General 
     15618:01:27: Parsing scripts for resource group General 
     15718:01:27: Parsing script GameTools.program 
     15818:01:27: Parsing script atlascube.material 
     15918:01:27: Parsing script colorcube.material 
     16018:01:27: Parsing script difflab.material 
     16118:01:27: An exception has been thrown! 
    162162 
    163163----------------------------------- 
     
    170170Line: 779 
    171171Stack unwinding: <<beginning of stack>> 
    172 17:48:08: Error in material Difflab/TexturedPhong at line 34 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     17218:01:27: Error in material Difflab/TexturedPhong at line 34 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    173173 
    174174----------------------------------- 
     
    181181Line: 779 
    182182Stack unwinding: <<beginning of stack>> 
    183 17:48:08: An exception has been thrown! 
     18318:01:27: An exception has been thrown! 
    184184 
    185185----------------------------------- 
     
    192192Line: 779 
    193193Stack unwinding: <<beginning of stack>> 
    194 17:48:08: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19418:01:27: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    195195 
    196196----------------------------------- 
     
    203203Line: 779 
    204204Stack unwinding: <<beginning of stack>> 
    205 17:48:08: An exception has been thrown! 
     20518:01:27: An exception has been thrown! 
    206206 
    207207----------------------------------- 
     
    214214Line: 779 
    215215Stack unwinding: <<beginning of stack>> 
    216 17:48:08: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21618:01:27: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    217217 
    218218----------------------------------- 
     
    225225Line: 779 
    226226Stack unwinding: <<beginning of stack>> 
    227 17:48:08: An exception has been thrown! 
     22718:01:27: An exception has been thrown! 
    228228 
    229229----------------------------------- 
     
    236236Line: 779 
    237237Stack unwinding: <<beginning of stack>> 
    238 17:48:08: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23818:01:27: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    239239 
    240240----------------------------------- 
     
    247247Line: 779 
    248248Stack unwinding: <<beginning of stack>> 
    249 17:48:08: An exception has been thrown! 
     24918:01:27: An exception has been thrown! 
    250250 
    251251----------------------------------- 
     
    258258Line: 779 
    259259Stack unwinding: <<beginning of stack>> 
    260 17:48:08: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     26018:01:27: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    261261 
    262262----------------------------------- 
     
    269269Line: 779 
    270270Stack unwinding: <<beginning of stack>> 
    271 17:48:08: An exception has been thrown! 
     27118:01:27: An exception has been thrown! 
    272272 
    273273----------------------------------- 
     
    280280Line: 779 
    281281Stack unwinding: <<beginning of stack>> 
    282 17:48:08: Error in material Difflab/TexturedPhong at line 43 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     28218:01:27: Error in material Difflab/TexturedPhong at line 43 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    283283 
    284284----------------------------------- 
     
    291291Line: 779 
    292292Stack unwinding: <<beginning of stack>> 
    293 17:48:08: An exception has been thrown! 
     29318:01:27: An exception has been thrown! 
    294294 
    295295----------------------------------- 
     
    302302Line: 779 
    303303Stack unwinding: <<beginning of stack>> 
    304 17:48:08: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30418:01:27: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    305305 
    306306----------------------------------- 
     
    313313Line: 779 
    314314Stack unwinding: <<beginning of stack>> 
    315 17:48:08: An exception has been thrown! 
     31518:01:27: An exception has been thrown! 
    316316 
    317317----------------------------------- 
     
    324324Line: 779 
    325325Stack unwinding: <<beginning of stack>> 
    326 17:48:08: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32618:01:27: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    327327 
    328328----------------------------------- 
     
    335335Line: 779 
    336336Stack unwinding: <<beginning of stack>> 
    337 17:48:08: An exception has been thrown! 
     33718:01:27: An exception has been thrown! 
    338338 
    339339----------------------------------- 
     
    346346Line: 779 
    347347Stack unwinding: <<beginning of stack>> 
    348 17:48:08: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34818:01:27: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    349349 
    350350----------------------------------- 
     
    357357Line: 779 
    358358Stack unwinding: <<beginning of stack>> 
    359 17:48:08: An exception has been thrown! 
     35918:01:27: An exception has been thrown! 
    360360 
    361361----------------------------------- 
     
    368368Line: 779 
    369369Stack unwinding: <<beginning of stack>> 
    370 17:48:08: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     37018:01:27: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    371371 
    372372----------------------------------- 
     
    379379Line: 779 
    380380Stack unwinding: <<beginning of stack>> 
    381 17:48:08: An exception has been thrown! 
     38118:01:27: An exception has been thrown! 
    382382 
    383383----------------------------------- 
     
    390390Line: 779 
    391391Stack unwinding: <<beginning of stack>> 
    392 17:48:08: Error in material Difflab/TexturedPhong at line 52 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     39218:01:27: Error in material Difflab/TexturedPhong at line 52 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    393393 
    394394----------------------------------- 
     
    401401Line: 779 
    402402Stack unwinding: <<beginning of stack>> 
    403 17:48:08: An exception has been thrown! 
     40318:01:27: An exception has been thrown! 
    404404 
    405405----------------------------------- 
     
    412412Line: 779 
    413413Stack unwinding: <<beginning of stack>> 
    414 17:48:08: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41418:01:27: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    415415 
    416416----------------------------------- 
     
    423423Line: 779 
    424424Stack unwinding: <<beginning of stack>> 
    425 17:48:08: An exception has been thrown! 
     42518:01:27: An exception has been thrown! 
    426426 
    427427----------------------------------- 
     
    434434Line: 779 
    435435Stack unwinding: <<beginning of stack>> 
    436 17:48:08: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43618:01:27: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    437437 
    438438----------------------------------- 
     
    445445Line: 779 
    446446Stack unwinding: <<beginning of stack>> 
    447 17:48:08: An exception has been thrown! 
     44718:01:27: An exception has been thrown! 
    448448 
    449449----------------------------------- 
     
    456456Line: 779 
    457457Stack unwinding: <<beginning of stack>> 
    458 17:48:08: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45818:01:27: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    459459 
    460460----------------------------------- 
     
    467467Line: 779 
    468468Stack unwinding: <<beginning of stack>> 
    469 17:48:08: An exception has been thrown! 
     46918:01:27: An exception has been thrown! 
    470470 
    471471----------------------------------- 
     
    478478Line: 779 
    479479Stack unwinding: <<beginning of stack>> 
    480 17:48:08: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     48018:01:27: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    481481 
    482482----------------------------------- 
     
    489489Line: 779 
    490490Stack unwinding: <<beginning of stack>> 
    491 17:48:08: An exception has been thrown! 
     49118:01:27: An exception has been thrown! 
    492492 
    493493----------------------------------- 
     
    500500Line: 779 
    501501Stack unwinding: <<beginning of stack>> 
    502 17:48:08: Error in material Difflab/TexturedPhong at line 61 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     50218:01:27: Error in material Difflab/TexturedPhong at line 61 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    503503 
    504504----------------------------------- 
     
    511511Line: 779 
    512512Stack unwinding: <<beginning of stack>> 
    513 17:48:08: An exception has been thrown! 
     51318:01:27: An exception has been thrown! 
    514514 
    515515----------------------------------- 
     
    522522Line: 779 
    523523Stack unwinding: <<beginning of stack>> 
    524 17:48:08: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52418:01:27: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    525525 
    526526----------------------------------- 
     
    533533Line: 779 
    534534Stack unwinding: <<beginning of stack>> 
    535 17:48:08: An exception has been thrown! 
     53518:01:27: An exception has been thrown! 
    536536 
    537537----------------------------------- 
     
    544544Line: 779 
    545545Stack unwinding: <<beginning of stack>> 
    546 17:48:08: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54618:01:27: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    547547 
    548548----------------------------------- 
     
    555555Line: 779 
    556556Stack unwinding: <<beginning of stack>> 
    557 17:48:08: An exception has been thrown! 
     55718:01:27: An exception has been thrown! 
    558558 
    559559----------------------------------- 
     
    566566Line: 779 
    567567Stack unwinding: <<beginning of stack>> 
    568 17:48:08: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56818:01:27: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    569569 
    570570----------------------------------- 
     
    577577Line: 779 
    578578Stack unwinding: <<beginning of stack>> 
    579 17:48:08: An exception has been thrown! 
     57918:01:27: An exception has been thrown! 
    580580 
    581581----------------------------------- 
     
    588588Line: 779 
    589589Stack unwinding: <<beginning of stack>> 
    590 17:48:08: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     59018:01:27: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    591591 
    592592----------------------------------- 
     
    599599Line: 779 
    600600Stack unwinding: <<beginning of stack>> 
    601 17:48:08: An exception has been thrown! 
     60118:01:27: An exception has been thrown! 
    602602 
    603603----------------------------------- 
     
    610610Line: 779 
    611611Stack unwinding: <<beginning of stack>> 
    612 17:48:08: Error in material Difflab/TexturedPhong at line 70 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     61218:01:27: Error in material Difflab/TexturedPhong at line 70 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    613613 
    614614----------------------------------- 
     
    621621Line: 779 
    622622Stack unwinding: <<beginning of stack>> 
    623 17:48:08: Parsing script diffscene.material 
    624 17:48:08: An exception has been thrown! 
     62318:01:27: Parsing script diffscene.material 
     62418:01:27: An exception has been thrown! 
    625625 
    626626----------------------------------- 
     
    633633Line: 779 
    634634Stack unwinding: <<beginning of stack>> 
    635 17:48:08: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63518:01:27: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    636636 
    637637----------------------------------- 
     
    644644Line: 779 
    645645Stack unwinding: <<beginning of stack>> 
    646 17:48:08: An exception has been thrown! 
     64618:01:27: An exception has been thrown! 
    647647 
    648648----------------------------------- 
     
    655655Line: 779 
    656656Stack unwinding: <<beginning of stack>> 
    657 17:48:08: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65718:01:27: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    658658 
    659659----------------------------------- 
     
    666666Line: 779 
    667667Stack unwinding: <<beginning of stack>> 
    668 17:48:08: An exception has been thrown! 
     66818:01:27: An exception has been thrown! 
    669669 
    670670----------------------------------- 
     
    677677Line: 779 
    678678Stack unwinding: <<beginning of stack>> 
    679 17:48:08: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67918:01:27: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    680680 
    681681----------------------------------- 
     
    688688Line: 779 
    689689Stack unwinding: <<beginning of stack>> 
    690 17:48:08: An exception has been thrown! 
     69018:01:27: An exception has been thrown! 
    691691 
    692692----------------------------------- 
     
    699699Line: 779 
    700700Stack unwinding: <<beginning of stack>> 
    701 17:48:08: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     70118:01:27: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    702702 
    703703----------------------------------- 
     
    710710Line: 779 
    711711Stack unwinding: <<beginning of stack>> 
    712 17:48:08: An exception has been thrown! 
     71218:01:27: An exception has been thrown! 
    713713 
    714714----------------------------------- 
     
    721721Line: 779 
    722722Stack unwinding: <<beginning of stack>> 
    723 17:48:08: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     72318:01:27: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    724724 
    725725----------------------------------- 
     
    732732Line: 779 
    733733Stack unwinding: <<beginning of stack>> 
    734 17:48:08: An exception has been thrown! 
     73418:01:27: An exception has been thrown! 
    735735 
    736736----------------------------------- 
     
    743743Line: 779 
    744744Stack unwinding: <<beginning of stack>> 
    745 17:48:08: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74518:01:27: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    746746 
    747747----------------------------------- 
     
    754754Line: 779 
    755755Stack unwinding: <<beginning of stack>> 
    756 17:48:08: An exception has been thrown! 
     75618:01:27: An exception has been thrown! 
    757757 
    758758----------------------------------- 
     
    765765Line: 779 
    766766Stack unwinding: <<beginning of stack>> 
    767 17:48:08: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76718:01:27: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    768768 
    769769----------------------------------- 
     
    776776Line: 779 
    777777Stack unwinding: <<beginning of stack>> 
    778 17:48:08: An exception has been thrown! 
     77818:01:27: An exception has been thrown! 
    779779 
    780780----------------------------------- 
     
    787787Line: 779 
    788788Stack unwinding: <<beginning of stack>> 
    789 17:48:08: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     78918:01:27: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    790790 
    791791----------------------------------- 
     
    798798Line: 779 
    799799Stack unwinding: <<beginning of stack>> 
    800 17:48:08: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    801 17:48:08: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    802 17:48:08: Parsing script EnvMetals.material 
    803 17:48:08: An exception has been thrown! 
     80018:01:27: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     80118:01:27: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     80218:01:27: Parsing script EnvMetals.material 
     80318:01:27: An exception has been thrown! 
    804804 
    805805----------------------------------- 
     
    812812Line: 779 
    813813Stack unwinding: <<beginning of stack>> 
    814 17:48:08: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     81418:01:27: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    815815 
    816816----------------------------------- 
     
    823823Line: 779 
    824824Stack unwinding: <<beginning of stack>> 
    825 17:48:08: An exception has been thrown! 
     82518:01:27: An exception has been thrown! 
    826826 
    827827----------------------------------- 
     
    834834Line: 779 
    835835Stack unwinding: <<beginning of stack>> 
    836 17:48:08: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83618:01:27: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    837837 
    838838----------------------------------- 
     
    845845Line: 779 
    846846Stack unwinding: <<beginning of stack>> 
    847 17:48:08: An exception has been thrown! 
     84718:01:27: An exception has been thrown! 
    848848 
    849849----------------------------------- 
     
    856856Line: 779 
    857857Stack unwinding: <<beginning of stack>> 
    858 17:48:08: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     85818:01:27: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    859859 
    860860----------------------------------- 
     
    867867Line: 779 
    868868Stack unwinding: <<beginning of stack>> 
    869 17:48:08: An exception has been thrown! 
     86918:01:27: An exception has been thrown! 
    870870 
    871871----------------------------------- 
     
    878878Line: 779 
    879879Stack unwinding: <<beginning of stack>> 
    880 17:48:08: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     88018:01:27: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    881881 
    882882----------------------------------- 
     
    889889Line: 779 
    890890Stack unwinding: <<beginning of stack>> 
    891 17:48:08: Parsing script GameTools.material 
    892 17:48:08: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    893 17:48:08: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    894 17:48:08: An exception has been thrown! 
     89118:01:27: Parsing script GameTools.material 
     89218:01:27: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     89318:01:27: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     89418:01:27: An exception has been thrown! 
    895895 
    896896----------------------------------- 
     
    903903Line: 779 
    904904Stack unwinding: <<beginning of stack>> 
    905 17:48:08: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     90518:01:27: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    906906 
    907907----------------------------------- 
     
    914914Line: 779 
    915915Stack unwinding: <<beginning of stack>> 
    916 17:48:08: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    917 17:48:08: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    918 17:48:08: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    919 17:48:08: Error in material GameTools/ShadowMapDistance at line 266 of GameTools.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    920 17:48:08: Parsing script GlassHead.material 
    921 17:48:08: An exception has been thrown! 
     91618:01:27: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     91718:01:27: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     91818:01:27: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     91918:01:27: Error in material GameTools/ShadowMapDistance at line 266 of GameTools.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     92018:01:27: Parsing script GlassHead.material 
     92118:01:27: An exception has been thrown! 
    922922 
    923923----------------------------------- 
     
    930930Line: 779 
    931931Stack unwinding: <<beginning of stack>> 
    932 17:48:08: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     93218:01:27: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    933933 
    934934----------------------------------- 
     
    941941Line: 779 
    942942Stack unwinding: <<beginning of stack>> 
    943 17:48:08: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    944 17:48:08: An exception has been thrown! 
     94318:01:27: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     94418:01:27: An exception has been thrown! 
    945945 
    946946----------------------------------- 
     
    953953Line: 779 
    954954Stack unwinding: <<beginning of stack>> 
    955 17:48:08: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     95518:01:27: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    956956 
    957957----------------------------------- 
     
    964964Line: 779 
    965965Stack unwinding: <<beginning of stack>> 
    966 17:48:08: An exception has been thrown! 
     96618:01:27: An exception has been thrown! 
    967967 
    968968----------------------------------- 
     
    975975Line: 779 
    976976Stack unwinding: <<beginning of stack>> 
    977 17:48:08: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     97718:01:27: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    978978 
    979979----------------------------------- 
     
    986986Line: 779 
    987987Stack unwinding: <<beginning of stack>> 
    988 17:48:08: An exception has been thrown! 
     98818:01:27: An exception has been thrown! 
    989989 
    990990----------------------------------- 
     
    997997Line: 779 
    998998Stack unwinding: <<beginning of stack>> 
    999 17:48:08: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     99918:01:27: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10001000 
    10011001----------------------------------- 
     
    10081008Line: 779 
    10091009Stack unwinding: <<beginning of stack>> 
    1010 17:48:08: Parsing script Glow.material 
    1011 17:48:08: Error in material GameTools/PostProcBlack at line 7 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1012 17:48:08: Error in material GameTools/PostProcBlack at line 10 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc_Black has not been defined. 
    1013 17:48:08: Error in material GameTools/PostProc1 at line 23 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1014 17:48:08: Error in material GameTools/PostProc1 at line 26 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc1_PS has not been defined. 
    1015 17:48:08: Error in material GameTools/GlowCut at line 45 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1016 17:48:08: Error in material GameTools/GlowCut at line 48 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowCut_PS has not been defined. 
    1017 17:48:08: Error in material GameTools/Luminance at line 75 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1018 17:48:08: Error in material GameTools/Luminance at line 78 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/Luminance_PS has not been defined. 
    1019 17:48:08: Error in material GameTools/GlowBlurH at line 102 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1020 17:48:08: Error in material GameTools/GlowBlurH at line 105 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 
    1021 17:48:08: Error in material GameTools/GlowBlurV at line 128 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1022 17:48:08: Error in material GameTools/GlowBlurV at line 131 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurV_PS has not been defined. 
    1023 17:48:08: Error in material GameTools/GlowBlurHTB at line 154 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1024 17:48:08: Error in material GameTools/GlowBlurHTB at line 157 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 
    1025 17:48:08: Error in material GameTools/TextureCopy at line 179 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1026 17:48:08: Error in material GameTools/TextureCopy at line 182 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/TextureCopy_PS has not been defined. 
    1027 17:48:08: Error in material GameTools/GlowAdd at line 203 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1028 17:48:08: Error in material GameTools/GlowAdd at line 206 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowAdd_PS has not been defined. 
    1029 17:48:08: Error in material GameTools/ToneMap at line 232 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1030 17:48:08: Error in material GameTools/ToneMap at line 235 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/ToneMap_PS has not been defined. 
    1031 17:48:08: Parsing script hangar.material 
    1032 17:48:08: Parsing script kupola.material 
    1033 17:48:08: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1034 17:48:08: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1035 17:48:08: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1036 17:48:08: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1037 17:48:08: Parsing script Ogre.material 
    1038 17:48:08: Parsing script RaytraceDemo.material 
    1039 17:48:08: Parsing script stairs.material 
    1040 17:48:08: Parsing script terito.material 
    1041 17:48:08: Parsing script uvegfolyoso2.material 
    1042 17:48:08: An exception has been thrown! 
     101018:01:27: Parsing script Glow.material 
     101118:01:27: Error in material GameTools/PostProcBlack at line 7 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     101218:01:27: Error in material GameTools/PostProcBlack at line 10 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc_Black has not been defined. 
     101318:01:27: Error in material GameTools/PostProc1 at line 23 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     101418:01:27: Error in material GameTools/PostProc1 at line 26 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc1_PS has not been defined. 
     101518:01:27: Error in material GameTools/GlowCut at line 45 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     101618:01:27: Error in material GameTools/GlowCut at line 48 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowCut_PS has not been defined. 
     101718:01:27: Error in material GameTools/Luminance at line 75 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     101818:01:27: Error in material GameTools/Luminance at line 78 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/Luminance_PS has not been defined. 
     101918:01:27: Error in material GameTools/GlowBlurH at line 102 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102018:01:27: Error in material GameTools/GlowBlurH at line 105 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 
     102118:01:27: Error in material GameTools/GlowBlurV at line 128 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102218:01:27: Error in material GameTools/GlowBlurV at line 131 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurV_PS has not been defined. 
     102318:01:27: Error in material GameTools/GlowBlurHTB at line 154 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102418:01:27: Error in material GameTools/GlowBlurHTB at line 157 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 
     102518:01:27: Error in material GameTools/TextureCopy at line 179 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102618:01:27: Error in material GameTools/TextureCopy at line 182 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/TextureCopy_PS has not been defined. 
     102718:01:27: Error in material GameTools/GlowAdd at line 203 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102818:01:27: Error in material GameTools/GlowAdd at line 206 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowAdd_PS has not been defined. 
     102918:01:27: Error in material GameTools/ToneMap at line 232 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     103018:01:27: Error in material GameTools/ToneMap at line 235 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/ToneMap_PS has not been defined. 
     103118:01:27: Parsing script hangar.material 
     103218:01:27: Parsing script kupola.material 
     103318:01:27: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     103418:01:27: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     103518:01:27: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     103618:01:27: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     103718:01:27: Parsing script Ogre.material 
     103818:01:27: Parsing script RaytraceDemo.material 
     103918:01:27: Parsing script stairs.material 
     104018:01:27: Parsing script terito.material 
     104118:01:27: Parsing script uvegfolyoso2.material 
     104218:01:27: An exception has been thrown! 
    10431043 
    10441044----------------------------------- 
     
    10511051Line: 779 
    10521052Stack unwinding: <<beginning of stack>> 
    1053 17:48:08: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     105318:01:27: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10541054 
    10551055----------------------------------- 
     
    10621062Line: 779 
    10631063Stack unwinding: <<beginning of stack>> 
    1064 17:48:08: An exception has been thrown! 
     106418:01:27: An exception has been thrown! 
    10651065 
    10661066----------------------------------- 
     
    10731073Line: 779 
    10741074Stack unwinding: <<beginning of stack>> 
    1075 17:48:08: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     107518:01:27: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10761076 
    10771077----------------------------------- 
     
    10841084Line: 779 
    10851085Stack unwinding: <<beginning of stack>> 
    1086 17:48:08: An exception has been thrown! 
     108618:01:27: An exception has been thrown! 
    10871087 
    10881088----------------------------------- 
     
    10951095Line: 779 
    10961096Stack unwinding: <<beginning of stack>> 
    1097 17:48:08: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     109718:01:27: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10981098 
    10991099----------------------------------- 
     
    11061106Line: 779 
    11071107Stack unwinding: <<beginning of stack>> 
    1108 17:48:08: An exception has been thrown! 
     110818:01:27: An exception has been thrown! 
    11091109 
    11101110----------------------------------- 
     
    11171117Line: 779 
    11181118Stack unwinding: <<beginning of stack>> 
    1119 17:48:08: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     111918:01:27: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11201120 
    11211121----------------------------------- 
     
    11281128Line: 779 
    11291129Stack unwinding: <<beginning of stack>> 
    1130 17:48:08: An exception has been thrown! 
     113018:01:27: An exception has been thrown! 
    11311131 
    11321132----------------------------------- 
     
    11391139Line: 779 
    11401140Stack unwinding: <<beginning of stack>> 
    1141 17:48:08: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     114118:01:27: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11421142 
    11431143----------------------------------- 
     
    11501150Line: 779 
    11511151Stack unwinding: <<beginning of stack>> 
    1152 17:48:08: An exception has been thrown! 
     115218:01:27: An exception has been thrown! 
    11531153 
    11541154----------------------------------- 
     
    11611161Line: 779 
    11621162Stack unwinding: <<beginning of stack>> 
    1163 17:48:08: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     116318:01:27: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11641164 
    11651165----------------------------------- 
     
    11721172Line: 779 
    11731173Stack unwinding: <<beginning of stack>> 
    1174 17:48:08: An exception has been thrown! 
     117418:01:27: An exception has been thrown! 
    11751175 
    11761176----------------------------------- 
     
    11831183Line: 779 
    11841184Stack unwinding: <<beginning of stack>> 
    1185 17:48:08: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     118518:01:27: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11861186 
    11871187----------------------------------- 
     
    11941194Line: 779 
    11951195Stack unwinding: <<beginning of stack>> 
    1196 17:48:08: An exception has been thrown! 
     119618:01:27: An exception has been thrown! 
    11971197 
    11981198----------------------------------- 
     
    12051205Line: 779 
    12061206Stack unwinding: <<beginning of stack>> 
    1207 17:48:08: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     120718:01:27: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12081208 
    12091209----------------------------------- 
     
    12161216Line: 779 
    12171217Stack unwinding: <<beginning of stack>> 
    1218 17:48:08: An exception has been thrown! 
     121818:01:27: An exception has been thrown! 
    12191219 
    12201220----------------------------------- 
     
    12271227Line: 779 
    12281228Stack unwinding: <<beginning of stack>> 
    1229 17:48:08: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     122918:01:27: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12301230 
    12311231----------------------------------- 
     
    12381238Line: 779 
    12391239Stack unwinding: <<beginning of stack>> 
    1240 17:48:08: An exception has been thrown! 
     124018:01:27: An exception has been thrown! 
    12411241 
    12421242----------------------------------- 
     
    12491249Line: 779 
    12501250Stack unwinding: <<beginning of stack>> 
    1251 17:48:08: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     125118:01:27: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12521252 
    12531253----------------------------------- 
     
    12601260Line: 779 
    12611261Stack unwinding: <<beginning of stack>> 
    1262 17:48:08: An exception has been thrown! 
     126218:01:27: An exception has been thrown! 
    12631263 
    12641264----------------------------------- 
     
    12711271Line: 779 
    12721272Stack unwinding: <<beginning of stack>> 
    1273 17:48:08: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     127318:01:27: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12741274 
    12751275----------------------------------- 
     
    12821282Line: 779 
    12831283Stack unwinding: <<beginning of stack>> 
    1284 17:48:08: An exception has been thrown! 
     128418:01:27: An exception has been thrown! 
    12851285 
    12861286----------------------------------- 
     
    12931293Line: 779 
    12941294Stack unwinding: <<beginning of stack>> 
    1295 17:48:08: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     129518:01:27: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12961296 
    12971297----------------------------------- 
     
    13041304Line: 779 
    13051305Stack unwinding: <<beginning of stack>> 
    1306 17:48:08: An exception has been thrown! 
     130618:01:27: An exception has been thrown! 
    13071307 
    13081308----------------------------------- 
     
    13151315Line: 779 
    13161316Stack unwinding: <<beginning of stack>> 
    1317 17:48:08: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     131718:01:27: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13181318 
    13191319----------------------------------- 
     
    13261326Line: 779 
    13271327Stack unwinding: <<beginning of stack>> 
    1328 17:48:08: An exception has been thrown! 
     132818:01:27: An exception has been thrown! 
    13291329 
    13301330----------------------------------- 
     
    13371337Line: 779 
    13381338Stack unwinding: <<beginning of stack>> 
    1339 17:48:08: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     133918:01:27: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13401340 
    13411341----------------------------------- 
     
    13481348Line: 779 
    13491349Stack unwinding: <<beginning of stack>> 
    1350 17:48:08: An exception has been thrown! 
     135018:01:27: An exception has been thrown! 
    13511351 
    13521352----------------------------------- 
     
    13591359Line: 779 
    13601360Stack unwinding: <<beginning of stack>> 
    1361 17:48:08: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     136118:01:27: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13621362 
    13631363----------------------------------- 
     
    13701370Line: 779 
    13711371Stack unwinding: <<beginning of stack>> 
    1372 17:48:08: An exception has been thrown! 
     137218:01:27: An exception has been thrown! 
    13731373 
    13741374----------------------------------- 
     
    13811381Line: 779 
    13821382Stack unwinding: <<beginning of stack>> 
    1383 17:48:08: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     138318:01:27: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13841384 
    13851385----------------------------------- 
     
    13921392Line: 779 
    13931393Stack unwinding: <<beginning of stack>> 
    1394 17:48:08: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1395 17:48:08: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1396 17:48:08: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1397 17:48:08: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1398 17:48:08: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1399 17:48:08: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1400 17:48:08: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1401 17:48:08: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1402 17:48:08: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1403 17:48:08: Parsing script X3D.material 
    1404 17:48:08: Parsing script GameTools_Glow.compositor 
    1405 17:48:08: Parsing script GameTools_ToneMap.compositor 
    1406 17:48:08: Parsing script sample.fontdef 
    1407 17:48:08: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1408 17:48:08: Parsing script GameTools.particle 
    1409 17:48:08: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1410 17:48:08: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1411 17:48:08: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1412 17:48:08: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
    1413 17:48:08: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
    1414 17:48:08: Parsing script Compositor.overlay 
    1415 17:48:08: Parsing script DP3.overlay 
    1416 17:48:08: Parsing script Example-CubeMapping.overlay 
    1417 17:48:08: Parsing script Example-DynTex.overlay 
    1418 17:48:08: Parsing script Example-Water.overlay 
    1419 17:48:08: Parsing script FullScreen.overlay 
    1420 17:48:08: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1421 17:48:08: Parsing script Shadows.overlay 
    1422 17:48:08: Finished parsing scripts for resource group General 
    1423 17:48:08: Initialising resource group PostProc 
    1424 17:48:08: Parsing scripts for resource group PostProc 
    1425 17:48:08: Parsing script GTPPostProc.program 
    1426 17:48:08: Parsing script GTPPostProc.material 
    1427 17:48:08: Parsing script GTPGlow.compositor 
    1428 17:48:08: Parsing script GTPToneMap.compositor 
    1429 17:48:08: Finished parsing scripts for resource group PostProc 
    1430 17:48:08: Creating viewport on target 'rtt/3120448', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1431 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    1432 17:48:08: Creating viewport on target 'rtt/3119040', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1433 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1434 17:48:08: Creating viewport on target 'rtt/3100768', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1435 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1436 17:48:08: Creating viewport on target 'rtt/3153760', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1437 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1438 17:48:08: Creating viewport on target 'rtt/3153824', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1439 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1440 17:48:08: Creating viewport on target 'rtt/3153888', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1441 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    1442 17:48:08: Creating viewport on target 'rtt/3125376', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1443 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1444 17:48:08: Creating viewport on target 'rtt/3125728', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1445 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1446 17:48:08: Creating viewport on target 'rtt/3126080', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1447 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1448 17:48:08: Creating viewport on target 'rtt/3126432', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1449 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1450 17:48:08: Creating viewport on target 'rtt/3126784', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1451 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1452 17:48:08: Creating viewport on target 'rtt/3127136', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1453 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 
    1454 17:48:08: Creating viewport on target 'rtt/3127584', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1455 17:48:08: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 
    1456 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_fr.dds' with 5 mip map levels 
    1457 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_bk.dds' with 5 mip map levels 
    1458 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_lf.dds' with 5 mip map levels 
    1459 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_rt.dds' with 5 mip map levels 
    1460 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_up.dds' with 5 mip map levels 
    1461 17:48:08: D3D9 : Loading 2D Texture, image name : 'Forest_dn.dds' with 5 mip map levels 
    1462 17:48:08: Mesh: Loading kupola.mesh. 
    1463 17:48:09: Texture: falt2.tga: Loading 1 faces(PF_R8G8B8,2048x2048x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x2048x1. 
    1464 17:48:09: D3D9 : Loading 2D Texture, image name : 'falnormal.dds' with 2147483647 mip map levels 
    1465 17:48:09: Texture: talaj2.tga: Loading 1 faces(PF_R8G8B8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1466 17:48:09: D3D9 : Loading 2D Texture, image name : 'talajnormal.dds' with 2147483647 mip map levels 
    1467 17:48:09: Mesh: Loading ogrehead.mesh. 
    1468 17:48:09: Texture: WeirdEye.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1469 17:48:09: Texture: GreenSkin.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1470 17:48:09: Texture: spheremap.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1471 17:48:09: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 
    1472 17:48:09: Win32Input8: DirectInput Activation Starts 
    1473 17:48:09: Win32Input8: Establishing keyboard input. 
    1474 17:48:09: Win32Input8: Keyboard input established. 
    1475 17:48:09: Win32Input8: Initializing mouse input in immediate mode. 
    1476 17:48:09: Win32Input8: Mouse input in immediate mode initialized. 
    1477 17:48:09: Win32Input8: DirectInput OK. 
    1478 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1479 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1480 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1481 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1482 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1483 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture5' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1484 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture6' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1485 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture7' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1486 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture8' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1487 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture9' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1488 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture10' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1489 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture11' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1490 17:48:09: WARNING: Texture instance 'CompositorInstanceTexture12' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1491 17:48:56: Unregistering ResourceManager for type BspLevel 
    1492 17:48:56: Render Target 'rtt/3120448' Average FPS: 174.415 Best FPS: 185.444 Worst FPS: 151.848 
    1493 17:48:56: Render Target 'rtt/3153760' Average FPS: 174.451 Best FPS: 185.629 Worst FPS: 151.697 
    1494 17:48:56: Render Target 'rtt/3100768' Average FPS: 174.415 Best FPS: 185.444 Worst FPS: 151.697 
    1495 17:48:56: Render Target 'rtt/3153824' Average FPS: 174.415 Best FPS: 185.444 Worst FPS: 152.695 
    1496 17:48:56: Render Target 'rtt/3119040' Average FPS: 174.54 Best FPS: 185.629 Worst FPS: 151.848 
    1497 17:48:56: Render Target 'rtt/3153888' Average FPS: 174.609 Best FPS: 185.444 Worst FPS: 151.697 
    1498 17:48:56: Render Target 'rtt/3127584' Average FPS: 174.525 Best FPS: 185.444 Worst FPS: 152.542 
    1499 17:48:56: Render Target 'rtt/3127136' Average FPS: 174.609 Best FPS: 185.444 Worst FPS: 151.545 
    1500 17:48:56: Render Target 'rtt/3126784' Average FPS: 174.474 Best FPS: 185.444 Worst FPS: 151.545 
    1501 17:48:56: Render Target 'rtt/3126432' Average FPS: 174.451 Best FPS: 185.629 Worst FPS: 151.545 
    1502 17:48:56: Render Target 'rtt/3126080' Average FPS: 174.415 Best FPS: 185.444 Worst FPS: 151.545 
    1503 17:48:56: Render Target 'rtt/3125728' Average FPS: 174.701 Best FPS: 185.444 Worst FPS: 151.545 
    1504 17:48:56: Render Target 'rtt/3125376' Average FPS: 174.525 Best FPS: 185.444 Worst FPS: 151.697 
    1505 17:48:56: *-*-* OGRE Shutdown 
    1506 17:48:56: Unregistering ResourceManager for type Compositor 
    1507 17:48:56: Unregistering ResourceManager for type Font 
    1508 17:48:56: Unregistering ResourceManager for type Skeleton 
    1509 17:48:56: Unregistering ResourceManager for type Mesh 
    1510 17:48:56: Unregistering ResourceManager for type HighLevelGpuProgram 
    1511 17:48:56: Unloading library .\Plugin_VisibilitySceneManager 
    1512 17:48:56: Unloading library .\Plugin_CgProgramManager 
    1513 17:48:56: Unloading library .\Plugin_OctreeSceneManager 
    1514 17:48:56: Unloading library .\Plugin_BSPSceneManager 
    1515 17:48:56: Unloading library .\Plugin_ParticleFX 
    1516 17:48:56: Render Target 'OGRE Render Window' Average FPS: 174.453 Best FPS: 185.444 Worst FPS: 151.244 
    1517 17:48:56: D3D9 : Shutting down cleanly. 
    1518 17:48:56: Unregistering ResourceManager for type Texture 
    1519 17:48:56: Unregistering ResourceManager for type GpuProgram 
    1520 17:48:56: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    1521 17:48:56: Unloading library .\RenderSystem_Direct3D9 
    1522 17:48:56: Unregistering ResourceManager for type Material 
    1523 17:48:56: Unloading library OgrePlatform_d.dll 
     139418:01:27: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     139518:01:27: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     139618:01:27: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     139718:01:27: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     139818:01:27: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     139918:01:27: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     140018:01:27: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     140118:01:27: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     140218:01:27: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     140318:01:27: Parsing script X3D.material 
     140418:01:27: Parsing script GameTools_Glow.compositor 
     140518:01:27: Parsing script GameTools_ToneMap.compositor 
     140618:01:27: Parsing script sample.fontdef 
     140718:01:27: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     140818:01:27: Parsing script GameTools.particle 
     140918:01:27: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     141018:01:27: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     141118:01:27: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     141218:01:27: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
     141318:01:27: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
     141418:01:27: Parsing script Compositor.overlay 
     141518:01:27: Parsing script DP3.overlay 
     141618:01:27: Parsing script Example-CubeMapping.overlay 
     141718:01:27: Parsing script Example-DynTex.overlay 
     141818:01:27: Parsing script Example-Water.overlay 
     141918:01:27: Parsing script FullScreen.overlay 
     142018:01:27: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     142118:01:27: Parsing script Shadows.overlay 
     142218:01:27: Finished parsing scripts for resource group General 
     142318:01:27: Initialising resource group GTP_Basic 
     142418:01:27: Parsing scripts for resource group GTP_Basic 
     142518:01:27: Parsing script GTPBasic.program 
     142618:01:27: Parsing script GTPBasic.material 
     142718:01:28: Finished parsing scripts for resource group GTP_Basic 
     142818:01:28: Initialising resource group PostProc 
     142918:01:28: Parsing scripts for resource group PostProc 
     143018:01:28: Parsing script GTPPostProc.program 
     143118:01:28: Parsing script GTPPostProc.material 
     143218:01:28: Parsing script GTPGlow.compositor 
     143318:01:28: Parsing script GTPToneMap.compositor 
     143418:01:28: Finished parsing scripts for resource group PostProc 
     143518:01:28: Initialising resource group GTP_Demo 
     143618:01:28: Parsing scripts for resource group GTP_Demo 
     143718:01:28: Parsing script tower.material 
     143818:01:28: Finished parsing scripts for resource group GTP_Demo 
     143918:01:28: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     144018:01:28: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     144118:01:28: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     144218:01:28: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     144318:01:28: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     144418:01:28: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     144518:01:28: Error at line 15 of level.txt: Unrecognised command: xfile 
     144618:01:28: Mesh: Loading stairs.mesh. 
     144718:01:28: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 
     144818:01:28: Error at line 23 of level.txt: Unrecognised command: pathmapfile 
     144918:01:28: Error at line 30 of level.txt: Unrecognised command: pathmapfile 
     145018:01:28: Error at line 37 of level.txt: Unrecognised command: pathmapfile 
     145118:01:28: Error at line 44 of level.txt: Unrecognised command: pathmapfile 
     145218:01:28: Error at line 51 of level.txt: Unrecognised command: pathmapfile 
     145318:01:28: Error at line 58 of level.txt: Unrecognised command: pathmapfile 
     145418:01:28: Error at line 65 of level.txt: Unrecognised command: pathmapfile 
     145518:01:28: Error at line 72 of level.txt: Unrecognised command: pathmapfile 
     145618:01:28: Win32Input8: DirectInput Activation Starts 
     145718:01:28: Win32Input8: Establishing keyboard input. 
     145818:01:28: Win32Input8: Keyboard input established. 
     145918:01:28: Win32Input8: Initializing mouse input in immediate mode. 
     146018:01:28: Win32Input8: Mouse input in immediate mode initialized. 
     146118:01:28: Win32Input8: DirectInput OK. 
     146218:01:28: Creating viewport on target 'rtt/57614848', rendering from camera 'MainLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     146318:01:28: Viewport for camera 'MainLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     146418:01:28: Creating viewport on target 'rtt/57615520', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     146518:01:28: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     146618:01:28: Creating viewport on target 'rtt/57616064', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     146718:01:28: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     146818:01:29: WARNING: Texture instance 'MainLightDEPTH_SHADOW_MAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     146918:01:56: Unregistering ResourceManager for type BspLevel 
     147018:01:56: Render Target 'rtt/57616064' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     147118:01:56: Render Target 'rtt/57615520' Average FPS: 1.82937 Best FPS: 2.6738 Worst FPS: 1.81984 
     147218:01:56: Render Target 'rtt/57614848' Average FPS: 1.82998 Best FPS: 2.6643 Worst FPS: 1.81984 
     147318:01:56: *-*-* OGRE Shutdown 
     147418:01:56: Unregistering ResourceManager for type Compositor 
     147518:01:56: Unregistering ResourceManager for type Font 
     147618:01:56: Unregistering ResourceManager for type Skeleton 
     147718:01:56: Unregistering ResourceManager for type Mesh 
     147818:01:56: Unregistering ResourceManager for type HighLevelGpuProgram 
     147918:01:56: Unloading library .\Plugin_VisibilitySceneManager 
     148018:01:56: Unloading library .\Plugin_CgProgramManager 
     148118:01:56: Unloading library .\Plugin_OctreeSceneManager 
     148218:01:56: Unloading library .\Plugin_BSPSceneManager 
     148318:01:56: Unloading library .\Plugin_ParticleFX 
     148418:01:56: Render Target 'OGRE Render Window' Average FPS: 1.82984 Best FPS: 1.83486 Worst FPS: 1.7762 
     148518:01:56: D3D9 : Shutting down cleanly. 
     148618:01:56: Unregistering ResourceManager for type Texture 
     148718:01:56: Unregistering ResourceManager for type GpuProgram 
     148818:01:56: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     148918:01:56: Unloading library .\RenderSystem_Direct3D9 
     149018:01:56: Unregistering ResourceManager for type Material 
     149118:01:56: Unloading library OgrePlatform_d.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log

    r2175 r2179  
    11 ----------------------------------------------------------------------------------------------------------------------------------  
    2 |                                          Memory leak report for:  02/28/2007 17:48:56                                            | 
     2|                                          Memory leak report for:  03/01/2007 18:01:56                                            | 
    33 ----------------------------------------------------------------------------------------------------------------------------------  
    44 
    55 
    6 269 memory leaks found: 
     6333 memory leaks found: 
    77 
    88Alloc.   Addr       Size       Addr       Size                        BreakOn BreakOn               
    99Number Reported   Reported    Actual     Actual     Unused    Method  Dealloc Realloc Allocated by  
    1010------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------  
    11 000589 0x01FAF358 0x00000010 0x01FAF348 0x00000030 0x00000000 new         N       N    ogreoctreescenemanagerdll.cpp(41) Ogre::dllStartPlugin 
    12 006780 0x0204FC20 0x00000048 0x0204FC10 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    13 006774 0x020501C0 0x00000028 0x020501B0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    14 006775 0x02050238 0x00000048 0x02050228 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    15 006784 0x020504E8 0x00000028 0x020504D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    16 006785 0x02050560 0x00000048 0x02050550 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    17 006790 0x02050650 0x00000048 0x02050640 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    18 006794 0x02050770 0x00000048 0x02050760 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    19 006798 0x02050868 0x00000048 0x02050858 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    20 006802 0x020509B0 0x00000048 0x020509A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    21 006806 0x02050A48 0x00000048 0x02050A38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    22 007419 0x02055B10 0x00000048 0x02055B00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    23 007403 0x02056158 0x00000048 0x02056148 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    24 007397 0x020561F8 0x00000028 0x020561E8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    25 007398 0x02056270 0x00000048 0x02056260 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    26 007411 0x020563F8 0x00000048 0x020563E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    27 007407 0x020564A8 0x00000048 0x02056498 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    28 007415 0x020565F0 0x00000048 0x020565E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    29 007522 0x02056878 0x00000028 0x02056868 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    30 007523 0x020568F0 0x00000048 0x020568E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    31 007528 0x0205F408 0x00000048 0x0205F3F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    32 007532 0x0205F500 0x00000048 0x0205F4F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    33 007536 0x0205F648 0x00000048 0x0205F638 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    34 007540 0x0205F790 0x00000048 0x0205F780 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    35 007544 0x0205F828 0x00000048 0x0205F818 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    36 007739 0x020603C0 0x00000048 0x020603B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    37 007733 0x020604E8 0x00000028 0x020604D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    38 007734 0x0206A560 0x00000048 0x0206A550 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    39 007747 0x0206A698 0x00000048 0x0206A688 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    40 007743 0x0206A748 0x00000048 0x0206A738 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    41 007751 0x0206A890 0x00000048 0x0206A880 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    42 007878 0x0206A9F0 0x00000028 0x0206A9E0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    43 007755 0x0206AAC8 0x00000048 0x0206AAB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    44 007884 0x0206ABC8 0x00000048 0x0206ABB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    45 007879 0x0206D038 0x00000048 0x0206D028 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    46 007888 0x0206D208 0x00000048 0x0206D1F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    47 007892 0x0206D350 0x00000048 0x0206D340 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    48 007896 0x0206D498 0x00000048 0x0206D488 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    49 007900 0x0206D530 0x00000048 0x0206D520 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    50 008101 0x0206E0F0 0x00000048 0x0206E0E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    51 008095 0x0206E218 0x00000028 0x0206E208 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    52 008096 0x02070640 0x00000048 0x02070630 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    53 008109 0x02070778 0x00000048 0x02070768 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    54 008105 0x02070828 0x00000048 0x02070818 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    55 008113 0x02070970 0x00000048 0x02070960 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    56 008117 0x02070BA8 0x00000048 0x02070B98 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    57 009288 0x0364C1D8 0x00000048 0x0364C1C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    58 009264 0x0364C820 0x00000028 0x0364C810 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    59 009265 0x03654EE8 0x00000048 0x03654ED8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    60 009270 0x03654F80 0x00000048 0x03654F70 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    61 009274 0x03655018 0x00000048 0x03655008 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    62 009278 0x036550B0 0x00000048 0x036550A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    63 009282 0x03655148 0x00000028 0x03655138 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    64 009283 0x036551C0 0x00000048 0x036551B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    65 009292 0x036552B0 0x00000048 0x036552A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    66 009296 0x03655348 0x00000048 0x03655338 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    67 009447 0x03655708 0x00000048 0x036556F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    68 009452 0x036557F0 0x00000048 0x036557E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    69 009456 0x03655888 0x00000048 0x03655878 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    70 009460 0x03655920 0x00000048 0x03655910 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    71 009464 0x036559B8 0x00000028 0x036559A8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    72 009465 0x03655A30 0x00000048 0x03655A20 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    73 009470 0x03655B20 0x00000048 0x03655B10 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    74 009474 0x03655BB8 0x00000048 0x03655BA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    75 009478 0x03655C50 0x00000048 0x03655C40 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    76 009621 0x03657850 0x00000048 0x03657840 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    77 009638 0x036578E8 0x00000028 0x036578D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    78 009626 0x03657970 0x00000048 0x03657960 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    79 009630 0x03657A08 0x00000048 0x036579F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    80 009634 0x03657AA0 0x00000048 0x03657A90 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    81 009639 0x03657B38 0x00000048 0x03657B28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    82 009644 0x03657BD0 0x00000048 0x03657BC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    83 009648 0x03657C68 0x00000048 0x03657C58 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    84 009652 0x03657D00 0x00000048 0x03657CF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    85 009794 0x03659758 0x00000028 0x03659748 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    86 009795 0x036597D0 0x00000048 0x036597C0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    87 009800 0x036598B8 0x00000048 0x036598A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    88 009804 0x03659950 0x00000048 0x03659940 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    89 009808 0x036599E8 0x00000048 0x036599D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    90 009812 0x03659A80 0x00000028 0x03659A70 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    91 009813 0x03659AF8 0x00000048 0x03659AE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    92 009818 0x03659BE8 0x00000048 0x03659BD8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    93 009822 0x03659C80 0x00000048 0x03659C70 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    94 009826 0x03659D18 0x00000048 0x03659D08 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    95 009620 0x0365DC68 0x00000028 0x0365DC58 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    96 009446 0x03661F88 0x00000028 0x03661F78 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    97 010316 0x03670460 0x00000028 0x03670450 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    98 010317 0x036704D8 0x00000048 0x036704C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    99 010322 0x036706E8 0x00000048 0x036706D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    100 011714 0x03690C58 0x00000048 0x03690C48 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    101 011718 0x03690CF0 0x00000048 0x03690CE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    102 011722 0x03690DD8 0x00000048 0x03690DC8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    103 011726 0x03690EC0 0x00000048 0x03690EB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    104 011730 0x03690FA8 0x00000048 0x03690F98 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    105 011668 0x03692598 0x00000028 0x03692588 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    106 011686 0x036940A8 0x00000028 0x03694098 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    107 011669 0x03694130 0x00000048 0x03694120 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    108 011674 0x03694250 0x00000048 0x03694240 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    109 011678 0x036942E8 0x00000048 0x036942D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    110 011682 0x03694380 0x00000048 0x03694370 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    111 011687 0x03694418 0x00000048 0x03694408 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    112 011692 0x036944B0 0x00000048 0x036944A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    113 011696 0x036A1C68 0x00000048 0x036A1C58 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    114 011700 0x036A1D00 0x00000048 0x036A1CF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    115 011704 0x036A1D98 0x00000028 0x036A1D88 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    116 011705 0x036A1E10 0x00000048 0x036A1E00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    117 011710 0x036A1F88 0x00000048 0x036A1F78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    118 012497 0x036B6F08 0x00000028 0x036B6EF8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    119 012498 0x036B6F80 0x00000048 0x036B6F70 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    120 012503 0x036B7190 0x00000048 0x036B7180 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    121 012652 0x036B8238 0x00000028 0x036B8228 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    122 012653 0x036B82B0 0x00000048 0x036B82A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    123 012658 0x036BA038 0x00000048 0x036BA028 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    124 024508 0x03773818 0x00000170 0x03773808 0x00000190 0x00000000 new         N       N    ogreilluminationmanager.cpp(125) OgreIlluminationManager::getSingleton 
    125 024509 0x037739D8 0x0000000C 0x037739C8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    126 024510 0x03773A30 0x00000018 0x03773A20 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    127 024511 0x03773A98 0x0000000C 0x03773A88 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    128 024512 0x03773AF0 0x00000018 0x03773AE0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    129 024513 0x03773B58 0x00000018 0x03773B48 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    130 024514 0x03773BC0 0x00000030 0x03773BB0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    131 024515 0x03773C40 0x00000030 0x03773C30 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    132 024516 0x03773CC0 0x00000018 0x03773CB0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    133 024517 0x03773D28 0x00000008 0x03773D18 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(78) OgreIlluminationManager::OgreIlluminati 
    134 024518 0x03773D80 0x00000018 0x03773D70 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    135 024519 0x03773DE8 0x00000018 0x03773DD8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    136 024520 0x03773E50 0x00000018 0x03773E40 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    137 024521 0x03773EB8 0x00000018 0x03773EA8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    138 024522 0x03773F20 0x00000018 0x03773F10 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    139 024523 0x03773F88 0x00000018 0x03773F78 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    140 024524 0x03773FF0 0x00000018 0x03773FE0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    141 024525 0x03774058 0x00000018 0x03774048 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    142 024526 0x037740C0 0x00000018 0x037740B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    143 024527 0x03774128 0x00000018 0x03774118 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    144 024528 0x03774190 0x00000018 0x03774180 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    145 024529 0x037741F8 0x00000018 0x037741E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    146 024530 0x03774260 0x00000018 0x03774250 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    147 024531 0x037742C8 0x00000018 0x037742B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    148 024532 0x03774330 0x00000018 0x03774320 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    149 024533 0x03774398 0x00000018 0x03774388 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    150 024534 0x03774400 0x00000018 0x037743F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    151 024535 0x03774468 0x00000018 0x03774458 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    152 024536 0x037744D0 0x00000018 0x037744C0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    153 024537 0x03774538 0x00000018 0x03774528 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    154 024538 0x037745A0 0x00000018 0x03774590 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    155 024539 0x03774608 0x00000018 0x037745F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    156 024540 0x03774670 0x00000018 0x03774660 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    157 024541 0x037746D8 0x00000018 0x037746C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    158 024542 0x03774740 0x000000C0 0x03774730 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
    159 024543 0x03774850 0x00000030 0x03774840 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    160 024544 0x037748D0 0x00000030 0x037748C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    161 024545 0x03774950 0x00000030 0x03774940 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    162 024546 0x037749D0 0x00000030 0x037749C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    163 024547 0x03774A50 0x00000030 0x03774A40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    164 024548 0x03774AD0 0x00000030 0x03774AC0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    165 024549 0x03774B50 0x00000030 0x03774B40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    166 024550 0x03774BD0 0x00000030 0x03774BC0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    167 024551 0x03774C50 0x00000030 0x03774C40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    168 024552 0x03774CD0 0x00000030 0x03774CC0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    169 024553 0x03774D50 0x00000030 0x03774D40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    170 024554 0x03774DD0 0x00000030 0x03774DC0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    171 024555 0x03774E50 0x00000030 0x03774E40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    172 024556 0x03774ED0 0x00000030 0x03774EC0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    173 024557 0x03774FA0 0x00000030 0x03774F90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    174 024558 0x03775070 0x00000030 0x03775060 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    175 024559 0x037750F0 0x00000030 0x037750E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    176 024560 0x03775170 0x0000000C 0x03775160 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    177 024561 0x037751C8 0x000000C0 0x037751B8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
    178 024562 0x037752D8 0x00000030 0x037752C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    179 024563 0x03775358 0x00000030 0x03775348 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    180 024564 0x037753D8 0x00000030 0x037753C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    181 024565 0x03775458 0x00000030 0x03775448 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    182 024566 0x037754D8 0x00000030 0x037754C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    183 024567 0x03775558 0x00000030 0x03775548 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    184 024568 0x037755D8 0x00000030 0x037755C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    185 024569 0x03775658 0x00000030 0x03775648 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    186 024570 0x037756D8 0x00000030 0x037756C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    187 024571 0x03775758 0x00000030 0x03775748 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    188 024572 0x037757D8 0x00000030 0x037757C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    189 024573 0x03775858 0x00000030 0x03775848 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    190 024574 0x037758D8 0x00000030 0x037758C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    191 024575 0x03775958 0x00000030 0x03775948 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    192 024576 0x037759D8 0x00000030 0x037759C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    193 024577 0x03775AA8 0x00000030 0x03775A98 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    194 024578 0x03775B28 0x00000030 0x03775B18 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    195 024579 0x03775BA8 0x0000000C 0x03775B98 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    196 024580 0x03775C00 0x000000C4 0x03775BF0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
    197 024581 0x03775D10 0x00000030 0x03775D00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    198 024582 0x03775D90 0x00000030 0x03775D80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    199 024583 0x03775E10 0x00000030 0x03775E00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    200 024584 0x03775E90 0x00000030 0x03775E80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    201 024585 0x03775F10 0x00000030 0x03775F00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    202 024586 0x03775F90 0x00000030 0x03775F80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    203 024587 0x03776010 0x00000030 0x03776000 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    204 024588 0x03776090 0x00000030 0x03776080 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    205 024589 0x03776110 0x00000030 0x03776100 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    206 024590 0x03776190 0x00000030 0x03776180 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    207 024591 0x03776210 0x00000030 0x03776200 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    208 024592 0x03776290 0x00000030 0x03776280 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    209 024593 0x03776310 0x00000030 0x03776300 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    210 024594 0x03776390 0x00000030 0x03776380 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    211 024595 0x03776410 0x00000030 0x03776400 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    212 024596 0x037764E0 0x00000030 0x037764D0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    213 024597 0x03776560 0x00000030 0x03776550 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    214 024598 0x03776630 0x00000030 0x03776620 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    215 024599 0x03776700 0x0000000C 0x037766F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    216 024600 0x03776758 0x00000080 0x03776748 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
    217 024601 0x03776828 0x00000030 0x03776818 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    218 024602 0x037768A8 0x00000030 0x03776898 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    219 024603 0x03776928 0x00000030 0x03776918 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    220 024604 0x037769A8 0x00000030 0x03776998 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    221 024605 0x03776A78 0x00000030 0x03776A68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    222 024606 0x03776B48 0x00000030 0x03776B38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    223 024607 0x03776C18 0x00000030 0x03776C08 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    224 024608 0x03776CE8 0x00000030 0x03776CD8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    225 024609 0x03776DB8 0x00000030 0x03776DA8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    226 024610 0x03776E88 0x00000030 0x03776E78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    227 024611 0x03776F08 0x00000030 0x03776EF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    228 024612 0x03776F88 0x00000030 0x03776F78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    229 024613 0x03777008 0x00000030 0x03776FF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    230 024614 0x037770D8 0x0000000C 0x037770C8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    231 024615 0x03777130 0x00000068 0x03777120 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
    232 024616 0x037771E8 0x00000030 0x037771D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    233 024617 0x03777268 0x00000030 0x03777258 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    234 024618 0x03777338 0x00000030 0x03777328 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    235 024619 0x03777408 0x00000030 0x037773F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    236 024620 0x037774D8 0x0000000C 0x037774C8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    237 024621 0x03777530 0x000000C0 0x03777520 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
    238 024622 0x03777640 0x00000030 0x03777630 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    239 024623 0x037776C0 0x00000030 0x037776B0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    240 024624 0x03777790 0x00000030 0x03777780 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    241 024625 0x03777860 0x00000030 0x03777850 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    242 024626 0x03777930 0x00000030 0x03777920 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    243 024627 0x03777A00 0x00000030 0x037779F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    244 024628 0x03777A80 0x00000030 0x03777A70 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    245 024629 0x03777B50 0x0000000C 0x03777B40 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    246 024630 0x03777BA8 0x00000030 0x03777B98 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
    247 024631 0x03777C28 0x00000030 0x03777C18 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    248 024632 0x03777CA8 0x00000030 0x03777C98 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    249 024633 0x03777D28 0x0000000C 0x03777D18 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    250 024634 0x03777D80 0x00000030 0x03777D70 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
    251 024635 0x03777E00 0x00000030 0x03777DF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    252 024636 0x03777E80 0x00000030 0x03777E70 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    253 024637 0x03777F00 0x0000000C 0x03777EF0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    254 024638 0x03777F58 0x000000B4 0x03777F48 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(111) OgreIlluminationManager::OgreIlluminati 
    255 024639 0x03778058 0x00000030 0x03778048 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    256 024640 0x037780D8 0x00000030 0x037780C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    257 024641 0x03778158 0x00000030 0x03778148 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    258 024642 0x037781D8 0x00000030 0x037781C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    259 024643 0x03778258 0x00000030 0x03778248 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    260 024644 0x037782D8 0x00000030 0x037782C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    261 024645 0x03778358 0x00000030 0x03778348 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    262 024646 0x037783D8 0x00000030 0x037783C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    263 024647 0x03778458 0x00000030 0x03778448 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    264 024648 0x037784D8 0x00000030 0x037784C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    265 024649 0x03778558 0x00000030 0x03778548 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    266 024650 0x037785D8 0x0000000C 0x037785C8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    267 024651 0x03778630 0x00000080 0x03778620 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(113) OgreIlluminationManager::OgreIlluminati 
    268 024652 0x03778700 0x00000030 0x037786F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    269 024653 0x03778780 0x00000030 0x03778770 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    270 024654 0x03778800 0x00000030 0x037787F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    271 024655 0x03778880 0x00000030 0x03778870 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    272 024656 0x03778900 0x00000030 0x037788F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    273 024657 0x03778980 0x00000030 0x03778970 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    274 024658 0x03778A50 0x00000030 0x03778A40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    275 024659 0x03778B20 0x00000030 0x03778B10 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    276 024660 0x03778BA0 0x00000030 0x03778B90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    277 024661 0x03778C20 0x00000030 0x03778C10 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    278 024662 0x03778CA0 0x00000030 0x03778C90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    279 024663 0x03778D70 0x0000000C 0x03778D60 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     11000589 0x01FB6A18 0x00000010 0x01FB6A08 0x00000030 0x00000000 new         N       N    ogreoctreescenemanagerdll.cpp(41) Ogre::dllStartPlugin 
     12026396 0x02024708 0x00000018 0x020246F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     13026397 0x02024780 0x00000018 0x02024770 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     14026398 0x020247F8 0x00000018 0x020247E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     15026379 0x02024958 0x00000018 0x02024948 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     16026370 0x02037578 0x0000000C 0x02037568 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     17006774 0x020518D0 0x00000028 0x020518C0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     18006775 0x02051958 0x00000048 0x02051948 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     19006790 0x02051AD0 0x00000048 0x02051AC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     20006780 0x02051BB8 0x00000048 0x02051BA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     21006784 0x02051CC0 0x00000028 0x02051CB0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     22006785 0x02051D48 0x00000048 0x02051D38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     23006794 0x02051F60 0x00000048 0x02051F50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     24006798 0x02052138 0x00000048 0x02052128 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     25006802 0x02052250 0x00000048 0x02052240 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     26006806 0x020522F8 0x00000048 0x020522E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     27007560 0x02054FA8 0x00000048 0x02054F98 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     28007403 0x02055690 0x00000048 0x02055680 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     29007397 0x02055750 0x00000028 0x02055740 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     30007398 0x020557D8 0x00000048 0x020557C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     31007407 0x02055A60 0x00000048 0x02055A50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     32007411 0x02055BC8 0x00000048 0x02055BB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     33007415 0x02055CD0 0x00000048 0x02055CC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     34007419 0x02055D78 0x00000048 0x02055D68 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     35007423 0x02055E80 0x00000048 0x02055E70 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     36007427 0x02055F88 0x00000048 0x02055F78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     37026383 0x02056038 0x00000018 0x02056028 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     38026419 0x020560B0 0x0000000C 0x020560A0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     39026399 0x020561F0 0x00000018 0x020561E0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     40026400 0x02056268 0x00000018 0x02056258 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     41026401 0x020562E0 0x000000C0 0x020562D0 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
     42026402 0x02056400 0x00000030 0x020563F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     43026393 0x02056608 0x00000018 0x020565F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     44026394 0x02056680 0x00000018 0x02056670 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     45026395 0x020566F8 0x00000018 0x020566E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     46007431 0x02068048 0x00000048 0x02068038 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     47007435 0x02068150 0x00000048 0x02068140 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     48007439 0x02068258 0x00000048 0x02068248 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     49007542 0x02068360 0x00000028 0x02068350 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     50007543 0x020683E8 0x00000048 0x020683D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     51007548 0x0206AC48 0x00000048 0x0206AC38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     52007552 0x0206AD50 0x00000048 0x0206AD40 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     53007556 0x0206AEB8 0x00000048 0x0206AEA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     54026371 0x0206D1F0 0x00000018 0x0206D1E0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     55026367 0x0206E0D0 0x00000170 0x0206E0C0 0x00000190 0x00000000 new         N       N    ogreilluminationmanager.cpp(125) OgreIlluminationManager::getSingleton 
     56026384 0x0206E2A0 0x00000018 0x0206E290 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     57026385 0x0206E318 0x00000018 0x0206E308 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     58007564 0x0207D038 0x00000048 0x0207D028 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     59007568 0x0207D178 0x00000048 0x0207D168 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     60007572 0x0207D280 0x00000048 0x0207D270 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     61007576 0x0207D388 0x00000048 0x0207D378 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     62007580 0x0207D490 0x00000048 0x0207D480 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     63007584 0x0207D598 0x00000048 0x0207D588 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     64007779 0x0207E2A0 0x00000048 0x0207E290 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     65007773 0x0207E3F8 0x00000028 0x0207E3E8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     66007774 0x02088800 0x00000048 0x020887F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     67007783 0x02088A28 0x00000048 0x02088A18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     68007787 0x02088B90 0x00000048 0x02088B80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     69007791 0x02088C98 0x00000048 0x02088C88 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     70007795 0x02088D40 0x00000048 0x02088D30 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     71007799 0x02088E48 0x00000048 0x02088E38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     72007803 0x02088F50 0x00000048 0x02088F40 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     73007807 0x02089058 0x00000048 0x02089048 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     74007811 0x02089160 0x00000048 0x02089150 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     75007815 0x02089268 0x00000048 0x02089258 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     76007938 0x020895F0 0x00000028 0x020895E0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     77007939 0x0208BBF8 0x00000048 0x0208BBE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     78007944 0x0208BD00 0x00000048 0x0208BCF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     79007948 0x0208BE08 0x00000048 0x0208BDF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     80007952 0x0208BF70 0x00000048 0x0208BF60 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     81007956 0x0208C078 0x00000048 0x0208C068 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     82007960 0x0208C120 0x00000048 0x0208C110 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     83007964 0x0208C228 0x00000048 0x0208C218 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     84007968 0x0208C330 0x00000048 0x0208C320 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     85007972 0x0208C438 0x00000048 0x0208C428 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     86007976 0x0208C540 0x00000048 0x0208C530 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     87007980 0x0208C648 0x00000048 0x0208C638 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     88008181 0x0208D388 0x00000048 0x0208D378 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     89008175 0x0208D4E0 0x00000028 0x0208D4D0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     90026382 0x0208F2C8 0x00000018 0x0208F2B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     91008176 0x034A1CA8 0x00000048 0x034A1C98 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     92008185 0x034A1ED0 0x00000048 0x034A1EC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     93008189 0x034A2038 0x00000048 0x034A2028 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     94008193 0x034A2140 0x00000048 0x034A2130 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     95008197 0x034A21E8 0x00000048 0x034A21D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     96008201 0x034A22F0 0x00000048 0x034A22E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     97008205 0x034A23F8 0x00000048 0x034A23E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     98008209 0x034A2500 0x00000048 0x034A24F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     99008213 0x034A2608 0x00000048 0x034A25F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     100008217 0x034A2710 0x00000048 0x034A2700 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     101026386 0x034A33D8 0x00000018 0x034A33C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     102026387 0x034A3450 0x00000018 0x034A3440 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     103027899 0x034A4FC8 0x000000D0 0x034A4FB8 0x000000F0 0x00000000 new         N       N    ogreilluminationmanager.cpp(590) OgreIlluminationManager::createPerLight 
     104009388 0x034C56B0 0x00000048 0x034C56A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     105009364 0x034C5B00 0x00000028 0x034C5AF0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     106009365 0x034C6248 0x00000048 0x034C6238 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     107009370 0x034C62F0 0x00000048 0x034C62E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     108009374 0x034C6398 0x00000048 0x034C6388 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     109009378 0x034C6440 0x00000048 0x034C6430 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     110009382 0x034C64E8 0x00000028 0x034C64D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     111009383 0x034C6570 0x00000048 0x034C6560 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     112009392 0x034C67B0 0x00000048 0x034C67A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     113009396 0x034C6858 0x00000048 0x034C6848 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     114009720 0x034C70F8 0x00000028 0x034C70E8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     115009726 0x034C77C8 0x00000048 0x034C77B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     116009738 0x034C7870 0x00000028 0x034C7860 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     117009721 0x034C78F8 0x00000048 0x034C78E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     118009744 0x034C79A0 0x00000048 0x034C7990 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     119009730 0x034C7AD0 0x00000048 0x034C7AC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     120009734 0x034C7B78 0x00000048 0x034C7B68 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     121009739 0x034C7C20 0x00000048 0x034C7C10 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     122009748 0x034C7DF8 0x00000048 0x034C7DE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     123009752 0x034C7EA0 0x00000048 0x034C7E90 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     124009894 0x034C99F0 0x00000028 0x034C99E0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     125009895 0x034C9A78 0x00000048 0x034C9A68 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     126009900 0x034C9B80 0x00000048 0x034C9B70 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     127009904 0x034C9C28 0x00000048 0x034C9C18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     128009908 0x034C9CD0 0x00000048 0x034C9CC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     129009912 0x034C9D78 0x00000028 0x034C9D68 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     130009913 0x034C9E00 0x00000048 0x034C9DF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     131009918 0x034C9F10 0x00000048 0x034C9F00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     132009922 0x034C9FB8 0x00000048 0x034C9FA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     133009926 0x034CA060 0x00000048 0x034CA050 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     134009546 0x034D3750 0x00000028 0x034D3740 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     135009547 0x034D37D8 0x00000048 0x034D37C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     136009552 0x034D38E0 0x00000048 0x034D38D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     137009556 0x034D3988 0x00000048 0x034D3978 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     138009560 0x034D3A30 0x00000048 0x034D3A20 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     139009564 0x034D3AD8 0x00000028 0x034D3AC8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     140009565 0x034D3B60 0x00000048 0x034D3B50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     141009570 0x034D3C70 0x00000048 0x034D3C60 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     142009574 0x034D3D18 0x00000048 0x034D3D08 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     143009578 0x034D3DC0 0x00000048 0x034D3DB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     144027955 0x034DF680 0x00000018 0x034DF670 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     145027904 0x034E2480 0x000000E0 0x034E2470 0x00000100 0x00000000 new         N       N    ogreilluminationmanager.cpp(602) OgreIlluminationManager::createPerLight 
     146010422 0x034E2C38 0x00000048 0x034E2C28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     147010416 0x034E3320 0x00000028 0x034E3310 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     148010417 0x034E33A8 0x00000048 0x034E3398 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     149027981 0x034E9400 0x00000018 0x034E93F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     150027931 0x034E9CF0 0x00000030 0x034E9CE0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     151011786 0x03507648 0x00000028 0x03507638 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     152011774 0x035076E0 0x00000048 0x035076D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     153011778 0x03507788 0x00000048 0x03507778 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     154011782 0x03507830 0x00000048 0x03507820 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     155011787 0x035078D8 0x00000048 0x035078C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     156011804 0x03507980 0x00000028 0x03507970 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     157011792 0x03507A18 0x00000048 0x03507A08 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     158011796 0x03507AC0 0x00000048 0x03507AB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     159011800 0x03507B68 0x00000048 0x03507B58 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     160011805 0x03507C10 0x00000048 0x03507C00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     161011810 0x03507D50 0x00000048 0x03507D40 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     162011814 0x03507DF8 0x00000048 0x03507DE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     163011818 0x03507F00 0x00000048 0x03507EF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     164011822 0x03508008 0x00000048 0x03507FF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     165011826 0x03508110 0x00000048 0x03508100 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     166011830 0x035081B8 0x00000048 0x035081A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     167011769 0x035187A0 0x00000048 0x03518790 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     168011768 0x03518F80 0x00000028 0x03518F70 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     169027929 0x0351D140 0x00000018 0x0351D130 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     170037551 0x03522FC8 0x00000008 0x03522FB8 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     171012597 0x0352ED18 0x00000028 0x0352ED08 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     172012603 0x0352EDA0 0x00000048 0x0352ED90 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     173012598 0x0352EE48 0x00000048 0x0352EE38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     174012758 0x0352F888 0x00000048 0x0352F878 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     175012752 0x0352FEA0 0x00000028 0x0352FE90 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     176012753 0x0352FF28 0x00000048 0x0352FF18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     177027901 0x0354B9A8 0x00000018 0x0354B998 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     178027900 0x0355B2D0 0x00000018 0x0355B2C0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     179026377 0x0356D6D8 0x00000018 0x0356D6C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     180026368 0x03577CA8 0x0000000C 0x03577C98 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     181026381 0x035B33C0 0x00000018 0x035B33B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     182026369 0x035B4A90 0x00000018 0x035B4A80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     183024419 0x035C2B48 0x00000048 0x035C2B38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     184026390 0x035C3750 0x00000018 0x035C3740 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     185026391 0x035C37C8 0x00000018 0x035C37B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     186026392 0x035C3840 0x00000018 0x035C3830 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     187027930 0x035C3D08 0x000000CC 0x035C3CF8 0x000000EC 0x00000000 new         N       N    ogreilluminationmanager.cpp(526) OgreIlluminationManager::createGlobalRu 
     188026376 0x035C4560 0x00000008 0x035C4550 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(78) OgreIlluminationManager::OgreIlluminati 
     189026378 0x035C4630 0x00000018 0x035C4620 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     190026380 0x035C47F0 0x00000018 0x035C47E0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     191027957 0x035CE288 0x00000030 0x035CE278 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     192026375 0x035D32B8 0x00000018 0x035D32A8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     193026373 0x035D3558 0x00000030 0x035D3548 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     194027634 0x035D6248 0x00000004 0x035D6238 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     195027905 0x035DEFA8 0x00000030 0x035DEF98 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     196024413 0x035DFDE0 0x00000028 0x035DFDD0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     197024414 0x035E04C8 0x00000048 0x035E04B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     198024423 0x035E06F0 0x00000048 0x035E06E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     199024427 0x035E0858 0x00000048 0x035E0848 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     200024431 0x035E0960 0x00000048 0x035E0950 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     201024435 0x035E0A08 0x00000048 0x035E09F8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     202026403 0x035E6430 0x00000030 0x035E6420 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     203026404 0x035E64C0 0x00000030 0x035E64B0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     204026405 0x035E6550 0x00000030 0x035E6540 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     205026406 0x035E65E0 0x00000030 0x035E65D0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     206026407 0x035E6670 0x00000030 0x035E6660 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     207026408 0x035E6700 0x00000030 0x035E66F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     208026409 0x035E6790 0x00000030 0x035E6780 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     209026410 0x035E6820 0x00000030 0x035E6810 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     210026411 0x035E68B0 0x00000030 0x035E68A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     211026412 0x035E6940 0x00000030 0x035E6930 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     212026413 0x035E69D0 0x00000030 0x035E69C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     213026414 0x035E6A60 0x00000030 0x035E6A50 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     214026415 0x035E6AF0 0x00000030 0x035E6AE0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     215026416 0x035E6B80 0x00000030 0x035E6B70 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     216026417 0x035E6C10 0x00000030 0x035E6C00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     217026418 0x035E6CA0 0x00000030 0x035E6C90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     218026420 0x035E6D30 0x000000C0 0x035E6D20 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
     219026421 0x035E6E50 0x00000030 0x035E6E40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     220026422 0x035E6EE0 0x00000030 0x035E6ED0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     221026423 0x035E6F70 0x00000030 0x035E6F60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     222026424 0x035E7000 0x00000030 0x035E6FF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     223026425 0x035E7090 0x00000030 0x035E7080 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     224026426 0x035E7120 0x00000030 0x035E7110 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     225026427 0x035E71B0 0x00000030 0x035E71A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     226026428 0x035E7240 0x00000030 0x035E7230 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     227026429 0x035E72D0 0x00000030 0x035E72C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     228026430 0x035E7360 0x00000030 0x035E7350 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     229026438 0x035E73F0 0x0000000C 0x035E73E0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     230027903 0x035EB788 0x00000030 0x035EB778 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     231027902 0x035EE0C8 0x00000030 0x035EE0B8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     232026374 0x03607D90 0x00000030 0x03607D80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     233026388 0x03607F18 0x00000018 0x03607F08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     234026389 0x03607F90 0x00000018 0x03607F80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     235027956 0x03613A18 0x000000B4 0x03613A08 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(537) OgreIlluminationManager::createGlobalRu 
     236026372 0x03619E68 0x00000018 0x03619E58 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     237026467 0x0361A018 0x00000030 0x0361A008 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     238026468 0x0361A0A8 0x00000030 0x0361A098 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     239026469 0x0361A138 0x00000030 0x0361A128 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     240026470 0x0361A1C8 0x00000030 0x0361A1B8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     241026471 0x0361A258 0x00000030 0x0361A248 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     242026472 0x0361A2E8 0x00000030 0x0361A2D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     243026474 0x0361A378 0x00000068 0x0361A368 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
     244026475 0x0361A440 0x00000030 0x0361A430 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     245026476 0x0361A4D0 0x00000030 0x0361A4C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     246026477 0x0361A5C0 0x00000030 0x0361A5B0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     247026478 0x0361A6B0 0x00000030 0x0361A6A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     248026479 0x0361A7A0 0x0000000C 0x0361A790 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     249026480 0x0361A808 0x000000F8 0x0361A7F8 0x00000118 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
     250026481 0x0361A960 0x00000030 0x0361A950 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     251026482 0x0361A9F0 0x00000030 0x0361A9E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     252026483 0x0361AAE0 0x00000030 0x0361AAD0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     253026484 0x0361ABD0 0x00000030 0x0361ABC0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     254026485 0x0361ACC0 0x00000030 0x0361ACB0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     255026486 0x0361ADB0 0x00000030 0x0361ADA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     256026487 0x0361AE40 0x00000030 0x0361AE30 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     257026488 0x0361AF30 0x00000030 0x0361AF20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     258026489 0x0361B020 0x00000030 0x0361B010 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     259026490 0x0361B110 0x00000030 0x0361B100 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     260026491 0x0361B200 0x00000030 0x0361B1F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     261026492 0x0361B2F0 0x00000030 0x0361B2E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     262026493 0x0361B3E0 0x0000000C 0x0361B3D0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     263026494 0x0361B448 0x00000030 0x0361B438 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
     264026495 0x0361B4D8 0x00000030 0x0361B4C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     265026496 0x0361B568 0x00000030 0x0361B558 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     266026497 0x0361B5F8 0x0000000C 0x0361B5E8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     267026498 0x0361B660 0x00000030 0x0361B650 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
     268026499 0x0361B6F0 0x00000030 0x0361B6E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     269026500 0x0361B780 0x00000030 0x0361B770 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     270026501 0x0361B810 0x0000000C 0x0361B800 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     271026502 0x0361B878 0x000000B4 0x0361B868 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(111) OgreIlluminationManager::OgreIlluminati 
     272026503 0x0361B988 0x00000030 0x0361B978 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     273026504 0x0361BA18 0x00000030 0x0361BA08 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     274026505 0x0361BAA8 0x00000030 0x0361BA98 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     275026512 0x0361BB38 0x00000030 0x0361BB28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     276026513 0x0361BBC8 0x00000030 0x0361BBB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     277026515 0x0361BC58 0x00000080 0x0361BC48 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(113) OgreIlluminationManager::OgreIlluminati 
     278026516 0x0361BD38 0x00000030 0x0361BD28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     279026517 0x0361BDC8 0x00000030 0x0361BDB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     280026518 0x0361BE58 0x00000030 0x0361BE48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     281026519 0x0361BEE8 0x00000030 0x0361BED8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     282026520 0x0361BF78 0x00000030 0x0361BF68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     283026521 0x0361C008 0x00000030 0x0361BFF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     284026522 0x0361C0F8 0x00000030 0x0361C0E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     285026431 0x0361DB48 0x00000030 0x0361DB38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     286026432 0x0361DBD8 0x00000030 0x0361DBC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     287026433 0x0361DC68 0x00000030 0x0361DC58 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     288026434 0x0361DCF8 0x00000030 0x0361DCE8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     289026435 0x0361DD88 0x00000030 0x0361DD78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     290026436 0x0361DE18 0x00000030 0x0361DE08 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     291026437 0x0361DEA8 0x00000030 0x0361DE98 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     292026439 0x0361DF38 0x000000C4 0x0361DF28 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
     293026440 0x0361E058 0x00000030 0x0361E048 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     294026441 0x0361E0E8 0x00000030 0x0361E0D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     295026442 0x0361E178 0x00000030 0x0361E168 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     296026443 0x0361E208 0x00000030 0x0361E1F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     297026444 0x0361E298 0x00000030 0x0361E288 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     298026445 0x0361E328 0x00000030 0x0361E318 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     299026446 0x0361E3B8 0x00000030 0x0361E3A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     300026447 0x0361E448 0x00000030 0x0361E438 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     301026448 0x0361E4D8 0x00000030 0x0361E4C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     302026449 0x0361E568 0x00000030 0x0361E558 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     303026450 0x0361E5F8 0x00000030 0x0361E5E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     304026451 0x0361E688 0x00000030 0x0361E678 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     305026452 0x0361E718 0x00000030 0x0361E708 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     306026453 0x0361E7A8 0x00000030 0x0361E798 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     307026454 0x0361E838 0x00000030 0x0361E828 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     308026455 0x0361E8C8 0x00000030 0x0361E8B8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     309026456 0x0361E958 0x00000030 0x0361E948 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     310026457 0x0361E9E8 0x00000030 0x0361E9D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     311026458 0x0361EA78 0x0000000C 0x0361EA68 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     312026459 0x0361EAE0 0x00000080 0x0361EAD0 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
     313026460 0x0361EBC0 0x00000030 0x0361EBB0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     314026461 0x0361EC50 0x00000030 0x0361EC40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     315026462 0x0361ECE0 0x00000030 0x0361ECD0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     316026463 0x0361ED70 0x00000030 0x0361ED60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     317026464 0x0361EE00 0x00000030 0x0361EDF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     318026465 0x0361EE90 0x00000030 0x0361EE80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     319026466 0x0361EF20 0x00000030 0x0361EF10 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     320026473 0x0361EFB0 0x0000000C 0x0361EFA0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     321026506 0x03626C58 0x00000030 0x03626C48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     322026507 0x03626CE8 0x00000030 0x03626CD8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     323026508 0x03626D78 0x00000030 0x03626D68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     324026509 0x03626E08 0x00000030 0x03626DF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     325026510 0x03626E98 0x00000030 0x03626E88 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     326026511 0x03626F28 0x00000030 0x03626F18 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     327026514 0x03626FB8 0x0000000C 0x03626FA8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     328026523 0x03627020 0x00000030 0x03627010 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     329026524 0x036270B0 0x00000030 0x036270A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     330026525 0x03627140 0x00000030 0x03627130 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     331026526 0x036271D0 0x00000030 0x036271C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     332026527 0x03627260 0x0000000C 0x03627250 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     333027617 0x0365D900 0x00000004 0x0365D8F0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     334027601 0x03661730 0x000000C0 0x03661720 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(212) OgreIlluminationManager::initTechniques 
     335027611 0x036620F8 0x0000001C 0x036620E8 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(213) OgreIlluminationManager::initTechniques 
     336027612 0x03662170 0x000000D0 0x03662160 0x000000F0 0x00000000 new         N       N    ogreilluminationmanager.cpp(218) OgreIlluminationManager::initTechniques 
     337027613 0x036622A0 0x00000018 0x03662290 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     338027614 0x03662318 0x00000018 0x03662308 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     339027615 0x03662390 0x00000030 0x03662380 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     340027616 0x03662420 0x0000000C 0x03662410 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     341027618 0x03662488 0x00000018 0x03662478 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     342027630 0x036625C0 0x00000104 0x036625B0 0x00000124 0x00000000 new         N       N    ogredepthshadowrecieverrendertechnique.(263) OgreDepthShadowRecieverRenderTechniqueF 
     343027664 0x036679D8 0x00000004 0x036679C8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log

    r2175 r2179  
    11-------------------------------------------------------------------------------- 
    22 
    3       OgreMemory.log - Memory logging file created on Wed Feb 28 17:48:03 2007 
     3      OgreMemory.log - Memory logging file created on Thu Mar 01 18:01:22 2007 
    44 
    55-------------------------------------------------------------------------------- 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log

    r2175 r2179  
    1 18:03:18: Creating resource group General 
    2 18:03:18: Creating resource group Internal 
    3 18:03:18: Creating resource group Autodetect 
    4 18:03:18: Registering ResourceManager for type Material 
    5 18:03:18: Registering ResourceManager for type Mesh 
    6 18:03:18: Registering ResourceManager for type Skeleton 
    7 18:03:18: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 18:03:18: Loading library OgrePlatform.dll 
    9 18:03:18: OverlayElementFactory for type Panel registered. 
    10 18:03:18: OverlayElementFactory for type BorderPanel registered. 
    11 18:03:18: OverlayElementFactory for type TextArea registered. 
    12 18:03:18: Registering ResourceManager for type Font 
    13 18:03:18: ArchiveFactory for archive type FileSystem registered. 
    14 18:03:18: ArchiveFactory for archive type Zip registered. 
    15 18:03:18: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 18:03:18: 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 18:03:18: Registering ResourceManager for type HighLevelGpuProgram 
    18 18:03:18: Registering ResourceManager for type Compositor 
    19 18:03:18: MovableObjectFactory for type 'Entity' registered. 
    20 18:03:18: MovableObjectFactory for type 'Light' registered. 
    21 18:03:18: MovableObjectFactory for type 'BillboardSet' registered. 
    22 18:03:18: MovableObjectFactory for type 'ManualObject' registered. 
    23 18:03:18: MovableObjectFactory for type 'BillboardChain' registered. 
    24 18:03:18: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 18:03:18: Loading library .\RenderSystem_Direct3D9 
    26 18:03:18: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 18:03:18: D3D9: Driver Detection Starts 
    28 18:03:18: D3D9: Driver Detection Ends 
    29 18:03:18: Loading library .\Plugin_ParticleFX 
    30 18:03:18: Particle Emitter Type 'Point' registered 
    31 18:03:18: Particle Emitter Type 'Box' registered 
    32 18:03:18: Particle Emitter Type 'Ellipsoid' registered 
    33 18:03:18: Particle Emitter Type 'Cylinder' registered 
    34 18:03:18: Particle Emitter Type 'Ring' registered 
    35 18:03:18: Particle Emitter Type 'HollowEllipsoid' registered 
    36 18:03:18: Particle Affector Type 'LinearForce' registered 
    37 18:03:18: Particle Affector Type 'ColourFader' registered 
    38 18:03:18: Particle Affector Type 'ColourFader2' registered 
    39 18:03:18: Particle Affector Type 'ColourImage' registered 
    40 18:03:18: Particle Affector Type 'ColourInterpolator' registered 
    41 18:03:18: Particle Affector Type 'Scaler' registered 
    42 18:03:18: Particle Affector Type 'Rotator' registered 
    43 18:03:18: Particle Affector Type 'DirectionRandomiser' registered 
    44 18:03:18: Particle Affector Type 'DeflectorPlane' registered 
    45 18:03:18: Loading library .\Plugin_BSPSceneManager 
    46 18:03:18: Registering ResourceManager for type BspLevel 
    47 18:03:18: Loading library .\Plugin_OctreeSceneManager 
    48 18:03:18: Loading library .\Plugin_CgProgramManager 
    49 18:03:18: Loading library .\Plugin_VisibilitySceneManager 
    50 18:03:20: *-*-* OGRE Initialising 
    51 18:03:20: *-*-* Version 1.2.0 (Dagon) 
    52 18:03:20: Creating resource group Bootstrap 
    53 18:03:20: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    54 18:03:20: Creating resource group GTP_Basic 
    55 18:03:20: Added resource location '../../Media/materials/GTPBasic' of type 'FileSystem' to resource group 'GTP_Basic' 
    56 18:03:20: Creating resource group GTP_Caustic 
    57 18:03:20: Added resource location '../../Media/materials/GTPCaustic' of type 'FileSystem' to resource group 'GTP_Caustic' 
    58 18:03:20: Creating resource group GTP_Demo 
    59 18:03:20: Added resource location '../../Media/Demo' of type 'FileSystem' to resource group 'GTP_Demo' 
    60 18:03:20: Creating resource group GTP_Diffuse 
    61 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/diffuse' of type 'FileSystem' to resource group 'GTP_Diffuse' 
    62 18:03:20: Creating resource group GTP_EnvMap 
    63 18:03:20: Added resource location '../../Media/materials/GTPEnvMap' of type 'FileSystem' to resource group 'GTP_EnvMap' 
    64 18:03:20: Creating resource group GTP_MultiBounce_Shared 
    65 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce' of type 'FileSystem' to resource group 'GTP_MultiBounce_Shared' 
    66 18:03:20: Creating resource group GTP_MultipleCausticRefraction 
    67 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleCausticRefraction' of type 'FileSystem' to resource group 'GTP_MultipleCausticRefraction' 
    68 18:03:20: Creating resource group GTP_MultipleCausticRefraction_MinMax 
    69 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleCausticRefractionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleCausticRefraction_MinMax' 
    70 18:03:20: Creating resource group GTP_MultipleReflection 
    71 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflection' of type 'FileSystem' to resource group 'GTP_MultipleReflection' 
    72 18:03:20: Creating resource group GTP_MultipleReflection_MinMax 
    73 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflectionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleReflection_MinMax' 
    74 18:03:20: Creating resource group GTP_MultipleRefraction 
    75 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction' of type 'FileSystem' to resource group 'GTP_MultipleRefraction' 
    76 18:03:20: Creating resource group GTP_MultipleRefraction_MinMax 
    77 18:03:20: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefractionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleRefraction_MinMax' 
    78 18:03:20: Creating resource group GTP_Particles 
    79 18:03:20: Added resource location '../../Media/materials/GTPParticles' of type 'FileSystem' to resource group 'GTP_Particles' 
    80 18:03:20: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    81 18:03:20: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    82 18:03:20: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    83 18:03:20: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    84 18:03:20: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    85 18:03:20: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    86 18:03:20: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    87 18:03:20: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    88 18:03:20: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    89 18:03:20: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    90 18:03:20: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    91 18:03:20: Creating resource group PostProc 
    92 18:03:20: Added resource location '../../Media/materials/GTPPostProc' of type 'FileSystem' to resource group 'PostProc' 
    93 18:03:20: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    94 18:03:20: D3D9 : RenderSystem Option: Anti aliasing = None 
    95 18:03:20: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    96 18:03:20: D3D9 : RenderSystem Option: Full Screen = No 
    97 18:03:20: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    98 18:03:20: D3D9 : RenderSystem Option: VSync = No 
    99 18:03:20: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    100 18:03:21: D3D9 : Subsystem Initialising 
    101 18:03:21: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    102 18:03:21: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    103 18:03:21: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    104 18:03:21: Registering ResourceManager for type Texture 
    105 18:03:21: Registering ResourceManager for type GpuProgram 
    106 18:03:21: RenderSystem capabilities 
    107 18:03:21: ------------------------- 
    108 18:03:21:  * Hardware generation of mipmaps: yes 
    109 18:03:21:  * Texture blending: yes 
    110 18:03:21:  * Anisotropic texture filtering: yes 
    111 18:03:21:  * Dot product texture operation: yes 
    112 18:03:21:  * Cube mapping: yes 
    113 18:03:21:  * Hardware stencil buffer: yes 
    114 18:03:21:    - Stencil depth: 8 
    115 18:03:21:    - Two sided stencil support: yes 
    116 18:03:21:    - Wrap stencil values: yes 
    117 18:03:21:  * Hardware vertex / index buffers: yes 
    118 18:03:21:  * Vertex programs: yes 
    119 18:03:21:    - Max vertex program version: vs_3_0 
    120 18:03:21:  * Fragment programs: yes 
    121 18:03:21:    - Max fragment program version: ps_3_0 
    122 18:03:21:  * Texture Compression: yes 
    123 18:03:21:    - DXT: yes 
    124 18:03:21:    - VTC: no 
    125 18:03:21:  * Scissor Rectangle: yes 
    126 18:03:21:  * Hardware Occlusion Query: yes 
    127 18:03:21:  * User clip planes: yes 
    128 18:03:21:  * VET_UBYTE4 vertex element type: yes 
    129 18:03:21:  * Infinite far plane projection: yes 
    130 18:03:21:  * Hardware render-to-texture: yes 
    131 18:03:21:  * Floating point textures: yes 
    132 18:03:21:  * Non-power-of-two textures: yes 
    133 18:03:21:  * Volume textures: yes 
    134 18:03:21:  * Multiple Render Targets: 4 
    135 18:03:21:  * Max Point Size: 8192 
    136 18:03:21: *************************************** 
    137 18:03:21: *** D3D9 : Subsystem Initialised OK *** 
    138 18:03:21: *************************************** 
    139 18:03:21: ResourceBackgroundQueue - threading disabled 
    140 18:03:21: Particle Renderer Type 'billboard' registered 
    141 18:03:21: Particle Renderer Type 'sprite' registered 
    142 18:03:21: creating occlusion culling scene manager 
    143 18:03:21: TerrainSceneManager: Registered a new PageSource for type Heightmap 
    144 18:03:21: 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 
    145 18:03:21: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    146 18:03:21: Initialising resource group Bootstrap 
    147 18:03:21: Parsing scripts for resource group Bootstrap 
    148 18:03:21: Parsing script OgreCore.material 
    149 18:03:21: Parsing script OgreProfiler.material 
    150 18:03:21: Parsing script Ogre.fontdef 
    151 18:03:21: Parsing script OgreDebugPanel.overlay 
    152 18:03:21: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    153 18:03:21: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    154 18:03:21: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    155 18:03:21: Font TrebuchetMSBoldusing texture size 512x512 
    156 18:03:21: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    157 18:03:21: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    158 18:03:21: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    159 18:03:21: Parsing script OgreLoadingPanel.overlay 
    160 18:03:21: Finished parsing scripts for resource group Bootstrap 
    161 18:03:21: Initialising resource group General 
    162 18:03:21: Parsing scripts for resource group General 
    163 18:03:21: Parsing script GameTools.program 
    164 18:03:21: Parsing script atlascube.material 
    165 18:03:21: Parsing script colorcube.material 
    166 18:03:21: Parsing script difflab.material 
    167 18:03:22: An exception has been thrown! 
     114:06:38: Creating resource group General 
     214:06:38: Creating resource group Internal 
     314:06:38: Creating resource group Autodetect 
     414:06:38: Registering ResourceManager for type Material 
     514:06:38: Registering ResourceManager for type Mesh 
     614:06:38: Registering ResourceManager for type Skeleton 
     714:06:38: MovableObjectFactory for type 'ParticleSystem' registered. 
     814:06:38: Loading library OgrePlatform.dll 
     914:06:38: OverlayElementFactory for type Panel registered. 
     1014:06:38: OverlayElementFactory for type BorderPanel registered. 
     1114:06:38: OverlayElementFactory for type TextArea registered. 
     1214:06:38: Registering ResourceManager for type Font 
     1314:06:38: ArchiveFactory for archive type FileSystem registered. 
     1414:06:38: ArchiveFactory for archive type Zip registered. 
     1514:06:38: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1614:06:38: 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  
     1714:06:38: Registering ResourceManager for type HighLevelGpuProgram 
     1814:06:38: Registering ResourceManager for type Compositor 
     1914:06:38: MovableObjectFactory for type 'Entity' registered. 
     2014:06:38: MovableObjectFactory for type 'Light' registered. 
     2114:06:38: MovableObjectFactory for type 'BillboardSet' registered. 
     2214:06:38: MovableObjectFactory for type 'ManualObject' registered. 
     2314:06:38: MovableObjectFactory for type 'BillboardChain' registered. 
     2414:06:38: MovableObjectFactory for type 'RibbonTrail' registered. 
     2514:06:38: Loading library .\RenderSystem_Direct3D9 
     2614:06:38: D3D9 : Direct3D9 Rendering Subsystem created. 
     2714:06:38: D3D9: Driver Detection Starts 
     2814:06:38: D3D9: Driver Detection Ends 
     2914:06:38: Loading library .\Plugin_ParticleFX 
     3014:06:38: Particle Emitter Type 'Point' registered 
     3114:06:38: Particle Emitter Type 'Box' registered 
     3214:06:38: Particle Emitter Type 'Ellipsoid' registered 
     3314:06:38: Particle Emitter Type 'Cylinder' registered 
     3414:06:38: Particle Emitter Type 'Ring' registered 
     3514:06:38: Particle Emitter Type 'HollowEllipsoid' registered 
     3614:06:38: Particle Affector Type 'LinearForce' registered 
     3714:06:38: Particle Affector Type 'ColourFader' registered 
     3814:06:38: Particle Affector Type 'ColourFader2' registered 
     3914:06:38: Particle Affector Type 'ColourImage' registered 
     4014:06:38: Particle Affector Type 'ColourInterpolator' registered 
     4114:06:38: Particle Affector Type 'Scaler' registered 
     4214:06:38: Particle Affector Type 'Rotator' registered 
     4314:06:38: Particle Affector Type 'DirectionRandomiser' registered 
     4414:06:38: Particle Affector Type 'DeflectorPlane' registered 
     4514:06:38: Loading library .\Plugin_BSPSceneManager 
     4614:06:38: Registering ResourceManager for type BspLevel 
     4714:06:38: Loading library .\Plugin_OctreeSceneManager 
     4814:06:38: Loading library .\Plugin_CgProgramManager 
     4914:06:38: Loading library .\Plugin_VisibilitySceneManager 
     5014:06:40: *-*-* OGRE Initialising 
     5114:06:40: *-*-* Version 1.2.0 (Dagon) 
     5214:06:40: Creating resource group Bootstrap 
     5314:06:40: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5414:06:40: Creating resource group GTP_Basic 
     5514:06:40: Added resource location '../../Media/materials/GTPBasic' of type 'FileSystem' to resource group 'GTP_Basic' 
     5614:06:40: Creating resource group GTP_Caustic 
     5714:06:40: Added resource location '../../Media/materials/GTPCaustic' of type 'FileSystem' to resource group 'GTP_Caustic' 
     5814:06:40: Creating resource group GTP_Demo 
     5914:06:40: Added resource location '../../Media/Demo' of type 'FileSystem' to resource group 'GTP_Demo' 
     6014:06:40: Creating resource group GTP_Diffuse 
     6114:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/diffuse' of type 'FileSystem' to resource group 'GTP_Diffuse' 
     6214:06:40: Creating resource group GTP_EnvMap 
     6314:06:40: Added resource location '../../Media/materials/GTPEnvMap' of type 'FileSystem' to resource group 'GTP_EnvMap' 
     6414:06:40: Creating resource group GTP_MultiBounce_Shared 
     6514:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce' of type 'FileSystem' to resource group 'GTP_MultiBounce_Shared' 
     6614:06:40: Creating resource group GTP_MultipleCausticRefraction 
     6714:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleCausticRefraction' of type 'FileSystem' to resource group 'GTP_MultipleCausticRefraction' 
     6814:06:40: Creating resource group GTP_MultipleCausticRefraction_MinMax 
     6914:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleCausticRefractionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleCausticRefraction_MinMax' 
     7014:06:40: Creating resource group GTP_MultipleReflection 
     7114:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflection' of type 'FileSystem' to resource group 'GTP_MultipleReflection' 
     7214:06:40: Creating resource group GTP_MultipleReflection_MinMax 
     7314:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleReflectionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleReflection_MinMax' 
     7414:06:40: Creating resource group GTP_MultipleRefraction 
     7514:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefraction' of type 'FileSystem' to resource group 'GTP_MultipleRefraction' 
     7614:06:40: Creating resource group GTP_MultipleRefraction_MinMax 
     7714:06:40: Added resource location '../../Media/materials/GTPAdvancedEnvMap/multibounce/multipleRefractionMinMax' of type 'FileSystem' to resource group 'GTP_MultipleRefraction_MinMax' 
     7814:06:40: Creating resource group GTP_Particles 
     7914:06:40: Added resource location '../../Media/materials/GTPParticles' of type 'FileSystem' to resource group 'GTP_Particles' 
     8014:06:40: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     8114:06:40: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     8214:06:40: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     8314:06:40: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     8414:06:40: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     8514:06:40: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     8614:06:40: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     8714:06:40: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     8814:06:40: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     8914:06:40: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     9014:06:40: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     9114:06:40: Creating resource group PostProc 
     9214:06:40: Added resource location '../../Media/materials/GTPPostProc' of type 'FileSystem' to resource group 'PostProc' 
     9314:06:40: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     9414:06:40: D3D9 : RenderSystem Option: Anti aliasing = None 
     9514:06:40: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     9614:06:40: D3D9 : RenderSystem Option: Full Screen = No 
     9714:06:40: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     9814:06:40: D3D9 : RenderSystem Option: VSync = No 
     9914:06:40: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     10014:06:41: D3D9 : Subsystem Initialising 
     10114:06:41: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     10214:06:41: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     10314:06:41: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     10414:06:41: Registering ResourceManager for type Texture 
     10514:06:41: Registering ResourceManager for type GpuProgram 
     10614:06:41: RenderSystem capabilities 
     10714:06:41: ------------------------- 
     10814:06:41:  * Hardware generation of mipmaps: yes 
     10914:06:41:  * Texture blending: yes 
     11014:06:41:  * Anisotropic texture filtering: yes 
     11114:06:41:  * Dot product texture operation: yes 
     11214:06:41:  * Cube mapping: yes 
     11314:06:41:  * Hardware stencil buffer: yes 
     11414:06:41:    - Stencil depth: 8 
     11514:06:41:    - Two sided stencil support: yes 
     11614:06:41:    - Wrap stencil values: yes 
     11714:06:41:  * Hardware vertex / index buffers: yes 
     11814:06:41:  * Vertex programs: yes 
     11914:06:41:    - Max vertex program version: vs_3_0 
     12014:06:41:  * Fragment programs: yes 
     12114:06:41:    - Max fragment program version: ps_3_0 
     12214:06:41:  * Texture Compression: yes 
     12314:06:41:    - DXT: yes 
     12414:06:41:    - VTC: no 
     12514:06:41:  * Scissor Rectangle: yes 
     12614:06:41:  * Hardware Occlusion Query: yes 
     12714:06:41:  * User clip planes: yes 
     12814:06:41:  * VET_UBYTE4 vertex element type: yes 
     12914:06:41:  * Infinite far plane projection: yes 
     13014:06:41:  * Hardware render-to-texture: yes 
     13114:06:41:  * Floating point textures: yes 
     13214:06:41:  * Non-power-of-two textures: yes 
     13314:06:41:  * Volume textures: yes 
     13414:06:41:  * Multiple Render Targets: 4 
     13514:06:41:  * Max Point Size: 8192 
     13614:06:41: *************************************** 
     13714:06:41: *** D3D9 : Subsystem Initialised OK *** 
     13814:06:41: *************************************** 
     13914:06:41: ResourceBackgroundQueue - threading disabled 
     14014:06:41: Particle Renderer Type 'billboard' registered 
     14114:06:41: Particle Renderer Type 'sprite' registered 
     14214:06:41: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     14314:06:41: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     14414:06:41: Initialising resource group Bootstrap 
     14514:06:41: Parsing scripts for resource group Bootstrap 
     14614:06:41: Parsing script OgreCore.material 
     14714:06:41: Parsing script OgreProfiler.material 
     14814:06:41: Parsing script Ogre.fontdef 
     14914:06:41: Parsing script OgreDebugPanel.overlay 
     15014:06:41: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     15114:06:41: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     15214:06:41: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     15314:06:41: Font TrebuchetMSBoldusing texture size 512x512 
     15414:06:41: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     15514:06:41: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     15614:06:41: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     15714:06:41: Parsing script OgreLoadingPanel.overlay 
     15814:06:41: Finished parsing scripts for resource group Bootstrap 
     15914:06:41: Initialising resource group General 
     16014:06:41: Parsing scripts for resource group General 
     16114:06:41: Parsing script GameTools.program 
     16214:06:41: Parsing script atlascube.material 
     16314:06:41: Parsing script colorcube.material 
     16414:06:41: Parsing script difflab.material 
     16514:06:41: An exception has been thrown! 
    168166 
    169167----------------------------------- 
     
    176174Line: 779 
    177175Stack unwinding: <<beginning of stack>> 
    178 18:03:22: Error in material Difflab/TexturedPhong at line 34 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     17614:06:41: Error in material Difflab/TexturedPhong at line 34 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    179177 
    180178----------------------------------- 
     
    187185Line: 779 
    188186Stack unwinding: <<beginning of stack>> 
    189 18:03:22: An exception has been thrown! 
     18714:06:41: An exception has been thrown! 
    190188 
    191189----------------------------------- 
     
    198196Line: 779 
    199197Stack unwinding: <<beginning of stack>> 
    200 18:03:22: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19814:06:41: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    201199 
    202200----------------------------------- 
     
    209207Line: 779 
    210208Stack unwinding: <<beginning of stack>> 
    211 18:03:22: An exception has been thrown! 
     20914:06:41: An exception has been thrown! 
    212210 
    213211----------------------------------- 
     
    220218Line: 779 
    221219Stack unwinding: <<beginning of stack>> 
    222 18:03:22: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     22014:06:41: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    223221 
    224222----------------------------------- 
     
    231229Line: 779 
    232230Stack unwinding: <<beginning of stack>> 
    233 18:03:22: An exception has been thrown! 
     23114:06:41: An exception has been thrown! 
    234232 
    235233----------------------------------- 
     
    242240Line: 779 
    243241Stack unwinding: <<beginning of stack>> 
    244 18:03:22: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     24214:06:41: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    245243 
    246244----------------------------------- 
     
    253251Line: 779 
    254252Stack unwinding: <<beginning of stack>> 
    255 18:03:22: An exception has been thrown! 
     25314:06:41: An exception has been thrown! 
    256254 
    257255----------------------------------- 
     
    264262Line: 779 
    265263Stack unwinding: <<beginning of stack>> 
    266 18:03:22: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     26414:06:41: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    267265 
    268266----------------------------------- 
     
    275273Line: 779 
    276274Stack unwinding: <<beginning of stack>> 
    277 18:03:22: An exception has been thrown! 
     27514:06:41: An exception has been thrown! 
    278276 
    279277----------------------------------- 
     
    286284Line: 779 
    287285Stack unwinding: <<beginning of stack>> 
    288 18:03:22: Error in material Difflab/TexturedPhong at line 43 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     28614:06:41: Error in material Difflab/TexturedPhong at line 43 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    289287 
    290288----------------------------------- 
     
    297295Line: 779 
    298296Stack unwinding: <<beginning of stack>> 
    299 18:03:22: An exception has been thrown! 
     29714:06:41: An exception has been thrown! 
    300298 
    301299----------------------------------- 
     
    308306Line: 779 
    309307Stack unwinding: <<beginning of stack>> 
    310 18:03:22: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30814:06:41: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    311309 
    312310----------------------------------- 
     
    319317Line: 779 
    320318Stack unwinding: <<beginning of stack>> 
    321 18:03:22: An exception has been thrown! 
     31914:06:41: An exception has been thrown! 
    322320 
    323321----------------------------------- 
     
    330328Line: 779 
    331329Stack unwinding: <<beginning of stack>> 
    332 18:03:22: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     33014:06:41: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    333331 
    334332----------------------------------- 
     
    341339Line: 779 
    342340Stack unwinding: <<beginning of stack>> 
    343 18:03:22: An exception has been thrown! 
     34114:06:41: An exception has been thrown! 
    344342 
    345343----------------------------------- 
     
    352350Line: 779 
    353351Stack unwinding: <<beginning of stack>> 
    354 18:03:22: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     35214:06:41: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    355353 
    356354----------------------------------- 
     
    363361Line: 779 
    364362Stack unwinding: <<beginning of stack>> 
    365 18:03:22: An exception has been thrown! 
     36314:06:41: An exception has been thrown! 
    366364 
    367365----------------------------------- 
     
    374372Line: 779 
    375373Stack unwinding: <<beginning of stack>> 
    376 18:03:22: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     37414:06:41: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    377375 
    378376----------------------------------- 
     
    385383Line: 779 
    386384Stack unwinding: <<beginning of stack>> 
    387 18:03:22: An exception has been thrown! 
     38514:06:41: An exception has been thrown! 
    388386 
    389387----------------------------------- 
     
    396394Line: 779 
    397395Stack unwinding: <<beginning of stack>> 
    398 18:03:22: Error in material Difflab/TexturedPhong at line 52 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     39614:06:41: Error in material Difflab/TexturedPhong at line 52 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    399397 
    400398----------------------------------- 
     
    407405Line: 779 
    408406Stack unwinding: <<beginning of stack>> 
    409 18:03:22: An exception has been thrown! 
     40714:06:41: An exception has been thrown! 
    410408 
    411409----------------------------------- 
     
    418416Line: 779 
    419417Stack unwinding: <<beginning of stack>> 
    420 18:03:22: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41814:06:41: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    421419 
    422420----------------------------------- 
     
    429427Line: 779 
    430428Stack unwinding: <<beginning of stack>> 
    431 18:03:22: An exception has been thrown! 
     42914:06:41: An exception has been thrown! 
    432430 
    433431----------------------------------- 
     
    440438Line: 779 
    441439Stack unwinding: <<beginning of stack>> 
    442 18:03:22: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     44014:06:41: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    443441 
    444442----------------------------------- 
     
    451449Line: 779 
    452450Stack unwinding: <<beginning of stack>> 
    453 18:03:22: An exception has been thrown! 
     45114:06:41: An exception has been thrown! 
    454452 
    455453----------------------------------- 
     
    462460Line: 779 
    463461Stack unwinding: <<beginning of stack>> 
    464 18:03:22: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     46214:06:41: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    465463 
    466464----------------------------------- 
     
    473471Line: 779 
    474472Stack unwinding: <<beginning of stack>> 
    475 18:03:22: An exception has been thrown! 
     47314:06:41: An exception has been thrown! 
    476474 
    477475----------------------------------- 
     
    484482Line: 779 
    485483Stack unwinding: <<beginning of stack>> 
    486 18:03:22: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     48414:06:41: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    487485 
    488486----------------------------------- 
     
    495493Line: 779 
    496494Stack unwinding: <<beginning of stack>> 
    497 18:03:22: An exception has been thrown! 
     49514:06:41: An exception has been thrown! 
    498496 
    499497----------------------------------- 
     
    506504Line: 779 
    507505Stack unwinding: <<beginning of stack>> 
    508 18:03:22: Error in material Difflab/TexturedPhong at line 61 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     50614:06:41: Error in material Difflab/TexturedPhong at line 61 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    509507 
    510508----------------------------------- 
     
    517515Line: 779 
    518516Stack unwinding: <<beginning of stack>> 
    519 18:03:22: An exception has been thrown! 
     51714:06:41: An exception has been thrown! 
    520518 
    521519----------------------------------- 
     
    528526Line: 779 
    529527Stack unwinding: <<beginning of stack>> 
    530 18:03:22: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52814:06:41: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    531529 
    532530----------------------------------- 
     
    539537Line: 779 
    540538Stack unwinding: <<beginning of stack>> 
    541 18:03:22: An exception has been thrown! 
     53914:06:41: An exception has been thrown! 
    542540 
    543541----------------------------------- 
     
    550548Line: 779 
    551549Stack unwinding: <<beginning of stack>> 
    552 18:03:22: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     55014:06:41: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    553551 
    554552----------------------------------- 
     
    561559Line: 779 
    562560Stack unwinding: <<beginning of stack>> 
    563 18:03:22: An exception has been thrown! 
     56114:06:41: An exception has been thrown! 
    564562 
    565563----------------------------------- 
     
    572570Line: 779 
    573571Stack unwinding: <<beginning of stack>> 
    574 18:03:22: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     57214:06:41: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    575573 
    576574----------------------------------- 
     
    583581Line: 779 
    584582Stack unwinding: <<beginning of stack>> 
    585 18:03:22: An exception has been thrown! 
     58314:06:41: An exception has been thrown! 
    586584 
    587585----------------------------------- 
     
    594592Line: 779 
    595593Stack unwinding: <<beginning of stack>> 
    596 18:03:22: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     59414:06:41: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    597595 
    598596----------------------------------- 
     
    605603Line: 779 
    606604Stack unwinding: <<beginning of stack>> 
    607 18:03:22: An exception has been thrown! 
     60514:06:41: An exception has been thrown! 
    608606 
    609607----------------------------------- 
     
    616614Line: 779 
    617615Stack unwinding: <<beginning of stack>> 
    618 18:03:22: Error in material Difflab/TexturedPhong at line 70 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     61614:06:41: Error in material Difflab/TexturedPhong at line 70 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    619617 
    620618----------------------------------- 
     
    627625Line: 779 
    628626Stack unwinding: <<beginning of stack>> 
    629 18:03:22: Parsing script diffscene.material 
    630 18:03:22: An exception has been thrown! 
     62714:06:41: Parsing script diffscene.material 
     62814:06:41: An exception has been thrown! 
    631629 
    632630----------------------------------- 
     
    639637Line: 779 
    640638Stack unwinding: <<beginning of stack>> 
    641 18:03:22: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63914:06:41: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    642640 
    643641----------------------------------- 
     
    650648Line: 779 
    651649Stack unwinding: <<beginning of stack>> 
    652 18:03:22: An exception has been thrown! 
     65014:06:41: An exception has been thrown! 
    653651 
    654652----------------------------------- 
     
    661659Line: 779 
    662660Stack unwinding: <<beginning of stack>> 
    663 18:03:22: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     66114:06:41: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    664662 
    665663----------------------------------- 
     
    672670Line: 779 
    673671Stack unwinding: <<beginning of stack>> 
    674 18:03:22: An exception has been thrown! 
     67214:06:41: An exception has been thrown! 
    675673 
    676674----------------------------------- 
     
    683681Line: 779 
    684682Stack unwinding: <<beginning of stack>> 
    685 18:03:22: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     68314:06:41: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    686684 
    687685----------------------------------- 
     
    694692Line: 779 
    695693Stack unwinding: <<beginning of stack>> 
    696 18:03:22: An exception has been thrown! 
     69414:06:41: An exception has been thrown! 
    697695 
    698696----------------------------------- 
     
    705703Line: 779 
    706704Stack unwinding: <<beginning of stack>> 
    707 18:03:22: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     70514:06:41: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    708706 
    709707----------------------------------- 
     
    716714Line: 779 
    717715Stack unwinding: <<beginning of stack>> 
    718 18:03:22: An exception has been thrown! 
     71614:06:41: An exception has been thrown! 
    719717 
    720718----------------------------------- 
     
    727725Line: 779 
    728726Stack unwinding: <<beginning of stack>> 
    729 18:03:22: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     72714:06:41: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    730728 
    731729----------------------------------- 
     
    738736Line: 779 
    739737Stack unwinding: <<beginning of stack>> 
    740 18:03:22: An exception has been thrown! 
     73814:06:41: An exception has been thrown! 
    741739 
    742740----------------------------------- 
     
    749747Line: 779 
    750748Stack unwinding: <<beginning of stack>> 
    751 18:03:22: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74914:06:41: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    752750 
    753751----------------------------------- 
     
    760758Line: 779 
    761759Stack unwinding: <<beginning of stack>> 
    762 18:03:22: An exception has been thrown! 
     76014:06:41: An exception has been thrown! 
    763761 
    764762----------------------------------- 
     
    771769Line: 779 
    772770Stack unwinding: <<beginning of stack>> 
    773 18:03:22: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     77114:06:41: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    774772 
    775773----------------------------------- 
     
    782780Line: 779 
    783781Stack unwinding: <<beginning of stack>> 
    784 18:03:22: An exception has been thrown! 
     78214:06:41: An exception has been thrown! 
    785783 
    786784----------------------------------- 
     
    793791Line: 779 
    794792Stack unwinding: <<beginning of stack>> 
    795 18:03:22: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     79314:06:41: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    796794 
    797795----------------------------------- 
     
    804802Line: 779 
    805803Stack unwinding: <<beginning of stack>> 
    806 18:03:22: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    807 18:03:22: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    808 18:03:22: Parsing script EnvMetals.material 
    809 18:03:22: An exception has been thrown! 
     80414:06:41: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     80514:06:41: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     80614:06:41: Parsing script EnvMetals.material 
     80714:06:41: An exception has been thrown! 
    810808 
    811809----------------------------------- 
     
    818816Line: 779 
    819817Stack unwinding: <<beginning of stack>> 
    820 18:03:22: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     81814:06:41: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    821819 
    822820----------------------------------- 
     
    829827Line: 779 
    830828Stack unwinding: <<beginning of stack>> 
    831 18:03:22: An exception has been thrown! 
     82914:06:41: An exception has been thrown! 
    832830 
    833831----------------------------------- 
     
    840838Line: 779 
    841839Stack unwinding: <<beginning of stack>> 
    842 18:03:22: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     84014:06:41: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    843841 
    844842----------------------------------- 
     
    851849Line: 779 
    852850Stack unwinding: <<beginning of stack>> 
    853 18:03:22: An exception has been thrown! 
     85114:06:41: An exception has been thrown! 
    854852 
    855853----------------------------------- 
     
    862860Line: 779 
    863861Stack unwinding: <<beginning of stack>> 
    864 18:03:22: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     86214:06:41: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    865863 
    866864----------------------------------- 
     
    873871Line: 779 
    874872Stack unwinding: <<beginning of stack>> 
    875 18:03:22: An exception has been thrown! 
     87314:06:41: An exception has been thrown! 
    876874 
    877875----------------------------------- 
     
    884882Line: 779 
    885883Stack unwinding: <<beginning of stack>> 
    886 18:03:22: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     88414:06:41: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    887885 
    888886----------------------------------- 
     
    895893Line: 779 
    896894Stack unwinding: <<beginning of stack>> 
    897 18:03:22: Parsing script GameTools.material 
    898 18:03:22: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    899 18:03:22: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    900 18:03:22: An exception has been thrown! 
     89514:06:41: Parsing script GameTools.material 
     89614:06:41: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     89714:06:41: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     89814:06:41: An exception has been thrown! 
    901899 
    902900----------------------------------- 
     
    909907Line: 779 
    910908Stack unwinding: <<beginning of stack>> 
    911 18:03:22: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     90914:06:41: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    912910 
    913911----------------------------------- 
     
    920918Line: 779 
    921919Stack unwinding: <<beginning of stack>> 
    922 18:03:22: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    923 18:03:22: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    924 18:03:22: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    925 18:03:22: Error in material GameTools/ShadowMapDistance at line 266 of GameTools.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    926 18:03:22: Parsing script GlassHead.material 
    927 18:03:22: An exception has been thrown! 
     92014:06:41: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     92114:06:41: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     92214:06:41: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     92314:06:41: Error in material GameTools/ShadowMapDistance at line 266 of GameTools.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     92414:06:42: Parsing script GlassHead.material 
     92514:06:42: An exception has been thrown! 
    928926 
    929927----------------------------------- 
     
    936934Line: 779 
    937935Stack unwinding: <<beginning of stack>> 
    938 18:03:22: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     93614:06:42: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    939937 
    940938----------------------------------- 
     
    947945Line: 779 
    948946Stack unwinding: <<beginning of stack>> 
    949 18:03:22: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    950 18:03:22: An exception has been thrown! 
     94714:06:42: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     94814:06:42: An exception has been thrown! 
    951949 
    952950----------------------------------- 
     
    959957Line: 779 
    960958Stack unwinding: <<beginning of stack>> 
    961 18:03:22: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     95914:06:42: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    962960 
    963961----------------------------------- 
     
    970968Line: 779 
    971969Stack unwinding: <<beginning of stack>> 
    972 18:03:22: An exception has been thrown! 
     97014:06:42: An exception has been thrown! 
    973971 
    974972----------------------------------- 
     
    981979Line: 779 
    982980Stack unwinding: <<beginning of stack>> 
    983 18:03:22: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     98114:06:42: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    984982 
    985983----------------------------------- 
     
    992990Line: 779 
    993991Stack unwinding: <<beginning of stack>> 
    994 18:03:22: An exception has been thrown! 
     99214:06:42: An exception has been thrown! 
    995993 
    996994----------------------------------- 
     
    10031001Line: 779 
    10041002Stack unwinding: <<beginning of stack>> 
    1005 18:03:22: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     100314:06:42: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10061004 
    10071005----------------------------------- 
     
    10141012Line: 779 
    10151013Stack unwinding: <<beginning of stack>> 
    1016 18:03:22: Parsing script Glow.material 
    1017 18:03:22: Error in material GameTools/PostProcBlack at line 7 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1018 18:03:22: Error in material GameTools/PostProcBlack at line 10 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc_Black has not been defined. 
    1019 18:03:22: Error in material GameTools/PostProc1 at line 23 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1020 18:03:22: Error in material GameTools/PostProc1 at line 26 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc1_PS has not been defined. 
    1021 18:03:22: Error in material GameTools/GlowCut at line 45 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1022 18:03:22: Error in material GameTools/GlowCut at line 48 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowCut_PS has not been defined. 
    1023 18:03:22: Error in material GameTools/Luminance at line 75 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1024 18:03:22: Error in material GameTools/Luminance at line 78 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/Luminance_PS has not been defined. 
    1025 18:03:22: Error in material GameTools/GlowBlurH at line 102 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1026 18:03:22: Error in material GameTools/GlowBlurH at line 105 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 
    1027 18:03:22: Error in material GameTools/GlowBlurV at line 128 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1028 18:03:22: Error in material GameTools/GlowBlurV at line 131 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurV_PS has not been defined. 
    1029 18:03:22: Error in material GameTools/GlowBlurHTB at line 154 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1030 18:03:22: Error in material GameTools/GlowBlurHTB at line 157 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 
    1031 18:03:22: Error in material GameTools/TextureCopy at line 179 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1032 18:03:22: Error in material GameTools/TextureCopy at line 182 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/TextureCopy_PS has not been defined. 
    1033 18:03:22: Error in material GameTools/GlowAdd at line 203 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1034 18:03:22: Error in material GameTools/GlowAdd at line 206 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowAdd_PS has not been defined. 
    1035 18:03:22: Error in material GameTools/ToneMap at line 232 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
    1036 18:03:22: Error in material GameTools/ToneMap at line 235 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/ToneMap_PS has not been defined. 
    1037 18:03:22: Parsing script hangar.material 
    1038 18:03:22: Parsing script kupola.material 
    1039 18:03:22: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1040 18:03:22: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1041 18:03:22: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1042 18:03:22: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1043 18:03:22: Parsing script Ogre.material 
    1044 18:03:22: Parsing script RaytraceDemo.material 
    1045 18:03:22: Parsing script stairs.material 
    1046 18:03:22: Parsing script terito.material 
    1047 18:03:22: Parsing script uvegfolyoso2.material 
    1048 18:03:22: An exception has been thrown! 
     101414:06:42: Parsing script Glow.material 
     101514:06:42: Error in material GameTools/PostProcBlack at line 7 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     101614:06:42: Error in material GameTools/PostProcBlack at line 10 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc_Black has not been defined. 
     101714:06:42: Error in material GameTools/PostProc1 at line 23 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     101814:06:42: Error in material GameTools/PostProc1 at line 26 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/PostProc1_PS has not been defined. 
     101914:06:42: Error in material GameTools/GlowCut at line 45 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102014:06:42: Error in material GameTools/GlowCut at line 48 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowCut_PS has not been defined. 
     102114:06:42: Error in material GameTools/Luminance at line 75 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102214:06:42: Error in material GameTools/Luminance at line 78 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/Luminance_PS has not been defined. 
     102314:06:42: Error in material GameTools/GlowBlurH at line 102 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102414:06:42: Error in material GameTools/GlowBlurH at line 105 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 
     102514:06:42: Error in material GameTools/GlowBlurV at line 128 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102614:06:42: Error in material GameTools/GlowBlurV at line 131 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurV_PS has not been defined. 
     102714:06:42: Error in material GameTools/GlowBlurHTB at line 154 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     102814:06:42: Error in material GameTools/GlowBlurHTB at line 157 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowBlurH_PS has not been defined. 
     102914:06:42: Error in material GameTools/TextureCopy at line 179 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     103014:06:42: Error in material GameTools/TextureCopy at line 182 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/TextureCopy_PS has not been defined. 
     103114:06:42: Error in material GameTools/GlowAdd at line 203 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     103214:06:42: Error in material GameTools/GlowAdd at line 206 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/GlowAdd_PS has not been defined. 
     103314:06:42: Error in material GameTools/ToneMap at line 232 of Glow.material: Invalid vertex_program_ref entry - vertex program GameTools/PostProc1_VS has not been defined. 
     103414:06:42: Error in material GameTools/ToneMap at line 235 of Glow.material: Invalid fragment_program_ref entry - fragment program GameTools/ToneMap_PS has not been defined. 
     103514:06:42: Parsing script hangar.material 
     103614:06:42: Parsing script kupola.material 
     103714:06:42: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     103814:06:42: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     103914:06:42: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     104014:06:42: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     104114:06:42: Parsing script Ogre.material 
     104214:06:42: Parsing script RaytraceDemo.material 
     104314:06:42: Parsing script stairs.material 
     104414:06:42: Parsing script terito.material 
     104514:06:42: Parsing script uvegfolyoso2.material 
     104614:06:42: An exception has been thrown! 
    10491047 
    10501048----------------------------------- 
     
    10571055Line: 779 
    10581056Stack unwinding: <<beginning of stack>> 
    1059 18:03:22: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     105714:06:42: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10601058 
    10611059----------------------------------- 
     
    10681066Line: 779 
    10691067Stack unwinding: <<beginning of stack>> 
    1070 18:03:22: An exception has been thrown! 
     106814:06:42: An exception has been thrown! 
    10711069 
    10721070----------------------------------- 
     
    10791077Line: 779 
    10801078Stack unwinding: <<beginning of stack>> 
    1081 18:03:22: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     107914:06:42: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10821080 
    10831081----------------------------------- 
     
    10901088Line: 779 
    10911089Stack unwinding: <<beginning of stack>> 
    1092 18:03:22: An exception has been thrown! 
     109014:06:42: An exception has been thrown! 
    10931091 
    10941092----------------------------------- 
     
    11011099Line: 779 
    11021100Stack unwinding: <<beginning of stack>> 
    1103 18:03:22: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     110114:06:42: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11041102 
    11051103----------------------------------- 
     
    11121110Line: 779 
    11131111Stack unwinding: <<beginning of stack>> 
    1114 18:03:22: An exception has been thrown! 
     111214:06:42: An exception has been thrown! 
    11151113 
    11161114----------------------------------- 
     
    11231121Line: 779 
    11241122Stack unwinding: <<beginning of stack>> 
    1125 18:03:22: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     112314:06:42: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11261124 
    11271125----------------------------------- 
     
    11341132Line: 779 
    11351133Stack unwinding: <<beginning of stack>> 
    1136 18:03:22: An exception has been thrown! 
     113414:06:42: An exception has been thrown! 
    11371135 
    11381136----------------------------------- 
     
    11451143Line: 779 
    11461144Stack unwinding: <<beginning of stack>> 
    1147 18:03:22: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     114514:06:42: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11481146 
    11491147----------------------------------- 
     
    11561154Line: 779 
    11571155Stack unwinding: <<beginning of stack>> 
    1158 18:03:22: An exception has been thrown! 
     115614:06:42: An exception has been thrown! 
    11591157 
    11601158----------------------------------- 
     
    11671165Line: 779 
    11681166Stack unwinding: <<beginning of stack>> 
    1169 18:03:22: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     116714:06:42: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11701168 
    11711169----------------------------------- 
     
    11781176Line: 779 
    11791177Stack unwinding: <<beginning of stack>> 
    1180 18:03:22: An exception has been thrown! 
     117814:06:42: An exception has been thrown! 
    11811179 
    11821180----------------------------------- 
     
    11891187Line: 779 
    11901188Stack unwinding: <<beginning of stack>> 
    1191 18:03:22: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     118914:06:42: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11921190 
    11931191----------------------------------- 
     
    12001198Line: 779 
    12011199Stack unwinding: <<beginning of stack>> 
    1202 18:03:22: An exception has been thrown! 
     120014:06:42: An exception has been thrown! 
    12031201 
    12041202----------------------------------- 
     
    12111209Line: 779 
    12121210Stack unwinding: <<beginning of stack>> 
    1213 18:03:22: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     121114:06:42: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12141212 
    12151213----------------------------------- 
     
    12221220Line: 779 
    12231221Stack unwinding: <<beginning of stack>> 
    1224 18:03:22: An exception has been thrown! 
     122214:06:42: An exception has been thrown! 
    12251223 
    12261224----------------------------------- 
     
    12331231Line: 779 
    12341232Stack unwinding: <<beginning of stack>> 
    1235 18:03:22: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     123314:06:42: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12361234 
    12371235----------------------------------- 
     
    12441242Line: 779 
    12451243Stack unwinding: <<beginning of stack>> 
    1246 18:03:22: An exception has been thrown! 
     124414:06:42: An exception has been thrown! 
    12471245 
    12481246----------------------------------- 
     
    12551253Line: 779 
    12561254Stack unwinding: <<beginning of stack>> 
    1257 18:03:22: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     125514:06:42: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12581256 
    12591257----------------------------------- 
     
    12661264Line: 779 
    12671265Stack unwinding: <<beginning of stack>> 
    1268 18:03:22: An exception has been thrown! 
     126614:06:42: An exception has been thrown! 
    12691267 
    12701268----------------------------------- 
     
    12771275Line: 779 
    12781276Stack unwinding: <<beginning of stack>> 
    1279 18:03:22: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     127714:06:42: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12801278 
    12811279----------------------------------- 
     
    12881286Line: 779 
    12891287Stack unwinding: <<beginning of stack>> 
    1290 18:03:22: An exception has been thrown! 
     128814:06:42: An exception has been thrown! 
    12911289 
    12921290----------------------------------- 
     
    12991297Line: 779 
    13001298Stack unwinding: <<beginning of stack>> 
    1301 18:03:22: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     129914:06:42: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13021300 
    13031301----------------------------------- 
     
    13101308Line: 779 
    13111309Stack unwinding: <<beginning of stack>> 
    1312 18:03:22: An exception has been thrown! 
     131014:06:42: An exception has been thrown! 
    13131311 
    13141312----------------------------------- 
     
    13211319Line: 779 
    13221320Stack unwinding: <<beginning of stack>> 
    1323 18:03:22: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     132114:06:42: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13241322 
    13251323----------------------------------- 
     
    13321330Line: 779 
    13331331Stack unwinding: <<beginning of stack>> 
    1334 18:03:22: An exception has been thrown! 
     133214:06:42: An exception has been thrown! 
    13351333 
    13361334----------------------------------- 
     
    13431341Line: 779 
    13441342Stack unwinding: <<beginning of stack>> 
    1345 18:03:22: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     134314:06:42: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13461344 
    13471345----------------------------------- 
     
    13541352Line: 779 
    13551353Stack unwinding: <<beginning of stack>> 
    1356 18:03:22: An exception has been thrown! 
     135414:06:42: An exception has been thrown! 
    13571355 
    13581356----------------------------------- 
     
    13651363Line: 779 
    13661364Stack unwinding: <<beginning of stack>> 
    1367 18:03:22: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     136514:06:42: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13681366 
    13691367----------------------------------- 
     
    13761374Line: 779 
    13771375Stack unwinding: <<beginning of stack>> 
    1378 18:03:22: An exception has been thrown! 
     137614:06:42: An exception has been thrown! 
    13791377 
    13801378----------------------------------- 
     
    13871385Line: 779 
    13881386Stack unwinding: <<beginning of stack>> 
    1389 18:03:22: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     138714:06:42: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13901388 
    13911389----------------------------------- 
     
    13981396Line: 779 
    13991397Stack unwinding: <<beginning of stack>> 
    1400 18:03:22: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1401 18:03:22: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1402 18:03:22: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1403 18:03:22: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1404 18:03:22: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1405 18:03:22: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1406 18:03:22: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1407 18:03:22: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1408 18:03:22: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1409 18:03:22: Parsing script X3D.material 
    1410 18:03:22: Parsing script GameTools_Glow.compositor 
    1411 18:03:22: Parsing script GameTools_ToneMap.compositor 
    1412 18:03:22: Parsing script sample.fontdef 
    1413 18:03:22: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1414 18:03:22: Parsing script GameTools.particle 
    1415 18:03:22: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1416 18:03:22: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1417 18:03:22: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1418 18:03:22: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
    1419 18:03:22: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
    1420 18:03:22: Parsing script Compositor.overlay 
    1421 18:03:22: Parsing script DP3.overlay 
    1422 18:03:22: Parsing script Example-CubeMapping.overlay 
    1423 18:03:22: Parsing script Example-DynTex.overlay 
    1424 18:03:22: Parsing script Example-Water.overlay 
    1425 18:03:22: Parsing script FullScreen.overlay 
    1426 18:03:22: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1427 18:03:22: Parsing script Shadows.overlay 
    1428 18:03:22: Finished parsing scripts for resource group General 
    1429 18:03:22: Initialising resource group GTP_Basic 
    1430 18:03:22: Parsing scripts for resource group GTP_Basic 
    1431 18:03:22: Parsing script GTPBasic.program 
    1432 18:03:22: Parsing script GTPBasic.material 
    1433 18:03:22: Finished parsing scripts for resource group GTP_Basic 
    1434 18:03:22: Initialising resource group PostProc 
    1435 18:03:22: Parsing scripts for resource group PostProc 
    1436 18:03:22: Parsing script GTPPostProc.program 
    1437 18:03:22: Parsing script GTPPostProc.material 
    1438 18:03:22: Parsing script GTPGlow.compositor 
    1439 18:03:22: Parsing script GTPToneMap.compositor 
    1440 18:03:22: Finished parsing scripts for resource group PostProc 
    1441 18:03:22: Initialising resource group GTP_EnvMap 
    1442 18:03:22: Parsing scripts for resource group GTP_EnvMap 
    1443 18:03:22: Parsing script GTPEnvMap.program 
    1444 18:03:22: Parsing script GTPEnvMap.material 
    1445 18:03:22: Finished parsing scripts for resource group GTP_EnvMap 
    1446 18:03:22: Initialising resource group GTP_Caustic 
    1447 18:03:22: Parsing scripts for resource group GTP_Caustic 
    1448 18:03:22: Parsing script GTPCaustic.program 
    1449 18:03:22: Parsing script GTPCaustic.material 
    1450 18:03:22: Finished parsing scripts for resource group GTP_Caustic 
    1451 18:03:22: Creating viewport on target 'rtt/3116480', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1452 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    1453 18:03:22: Creating viewport on target 'rtt/3118336', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1454 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1455 18:03:22: Creating viewport on target 'rtt/3097792', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1456 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1457 18:03:22: Creating viewport on target 'rtt/3116160', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1458 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1459 18:03:22: Creating viewport on target 'rtt/3126176', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1460 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1461 18:03:22: Creating viewport on target 'rtt/3126528', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1462 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    1463 18:03:22: Creating viewport on target 'rtt/3126880', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1464 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1465 18:03:22: Creating viewport on target 'rtt/3127232', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1466 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1467 18:03:22: Creating viewport on target 'rtt/3127584', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1468 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1469 18:03:22: Creating viewport on target 'rtt/44302464', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1470 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 
    1471 18:03:22: Creating viewport on target 'rtt/44302816', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1472 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1473 18:03:22: Creating viewport on target 'rtt/44303168', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1474 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 
    1475 18:03:22: Creating viewport on target 'rtt/44303616', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1476 18:03:22: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 
    1477 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_fr.dds' with 5 mip map levels 
    1478 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_bk.dds' with 5 mip map levels 
    1479 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_lf.dds' with 5 mip map levels 
    1480 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_rt.dds' with 5 mip map levels 
    1481 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_up.dds' with 5 mip map levels 
    1482 18:03:22: D3D9 : Loading 2D Texture, image name : 'Forest_dn.dds' with 5 mip map levels 
    1483 18:03:22: Mesh: Loading kupola.mesh. 
    1484 18:03:23: Texture: falt2.tga: Loading 1 faces(PF_R8G8B8,2048x2048x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,2048x2048x1. 
    1485 18:03:23: D3D9 : Loading 2D Texture, image name : 'falnormal.dds' with 2147483647 mip map levels 
    1486 18:03:23: Texture: talaj2.tga: Loading 1 faces(PF_R8G8B8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1487 18:03:23: D3D9 : Loading 2D Texture, image name : 'talajnormal.dds' with 2147483647 mip map levels 
    1488 18:03:23: Mesh: Loading head.mesh. 
    1489 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of centerHead because this Material does not exist. Have you forgotten to define it in a .material script? 
    1490 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of goldHead because this Material does not exist. Have you forgotten to define it in a .material script? 
    1491 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of silverHeade because this Material does not exist. Have you forgotten to define it in a .material script? 
    1492 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of copperHead because this Material does not exist. Have you forgotten to define it in a .material script? 
    1493 18:03:23: Can't assign material initialShadingGroup2 to SubEntity of aluHead because this Material does not exist. Have you forgotten to define it in a .material script? 
    1494 18:03:23: Creating viewport on target 'rtt/3145984', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1495 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1496 18:03:23: Creating viewport on target 'rtt/3146048', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1497 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1498 18:03:23: Creating viewport on target 'rtt/3146112', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1499 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1500 18:03:23: Creating viewport on target 'rtt/3170208', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1501 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1502 18:03:23: Creating viewport on target 'rtt/3170272', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1503 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1504 18:03:23: Creating viewport on target 'rtt/3170336', rendering from camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1505 18:03:23: Viewport for camera 'aluHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1506 18:03:23: WARNING: Texture instance 'aluHead_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. 
    1507 18:03:23: Creating viewport on target 'rtt/3170528', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1508 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1509 18:03:23: Creating viewport on target 'rtt/3170592', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1510 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1511 18:03:23: Creating viewport on target 'rtt/3134208', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1512 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1513 18:03:23: Creating viewport on target 'rtt/3134272', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1514 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1515 18:03:23: Creating viewport on target 'rtt/3134336', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1516 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1517 18:03:23: Creating viewport on target 'rtt/3134400', rendering from camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1518 18:03:23: Viewport for camera 'aluHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1519 18:03:23: WARNING: Texture instance 'aluHead_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. 
    1520 18:03:23: Creating viewport on target 'rtt/3135456', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1521 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1522 18:03:23: Creating viewport on target 'rtt/3135520', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1523 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1524 18:03:23: Creating viewport on target 'rtt/3135584', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1525 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1526 18:03:23: Creating viewport on target 'rtt/3135648', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1527 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1528 18:03:23: Creating viewport on target 'rtt/3135712', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1529 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1530 18:03:23: Creating viewport on target 'rtt/3135776', rendering from camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1531 18:03:23: Viewport for camera 'centerHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1532 18:03:23: WARNING: Texture instance 'centerHead_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. 
    1533 18:03:23: Creating viewport on target 'rtt/3136800', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1534 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1535 18:03:23: Creating viewport on target 'rtt/3136864', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1536 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1537 18:03:23: Creating viewport on target 'rtt/3136928', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1538 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1539 18:03:23: Creating viewport on target 'rtt/3136992', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1540 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1541 18:03:23: Creating viewport on target 'rtt/3137056', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1542 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1543 18:03:23: Creating viewport on target 'rtt/3137120', rendering from camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1544 18:03:23: Viewport for camera 'centerHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1545 18:03:23: WARNING: Texture instance 'centerHead_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. 
    1546 18:03:23: Creating viewport on target 'rtt/3138176', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1547 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1548 18:03:23: Creating viewport on target 'rtt/3138240', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1549 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1550 18:03:23: Creating viewport on target 'rtt/3138304', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1551 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1552 18:03:23: Creating viewport on target 'rtt/3138368', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1553 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1554 18:03:23: Creating viewport on target 'rtt/3138432', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1555 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1556 18:03:23: Creating viewport on target 'rtt/3138496', rendering from camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1557 18:03:23: Viewport for camera 'centerHead_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1558 18:03:23: Creating viewport on target 'rtt/3138944', rendering from camera 'centerHead_SE_0_PHOTONMAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1559 18:03:23: Viewport for camera 'centerHead_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 64 H: 64 
    1560 18:03:23: centerHead_SE_0_CAUSTICCUBEMAP map: centerHead_SE_0_PHOTONMAP material: GTP/Caustic/CauCube_PointSpritecenterHead_SE_0_clone 
    1561 18:03:23: Creating viewport on target 'rtt/44310720', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1562 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1563 18:03:23: Creating viewport on target 'rtt/44310784', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1564 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1565 18:03:23: Creating viewport on target 'rtt/44310848', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1566 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1567 18:03:23: Creating viewport on target 'rtt/44310912', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1568 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1569 18:03:23: Creating viewport on target 'rtt/44310976', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1570 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1571 18:03:23: Creating viewport on target 'rtt/44311040', rendering from camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1572 18:03:23: Viewport for camera 'copperHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1573 18:03:23: WARNING: Texture instance 'copperHead_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. 
    1574 18:03:23: Creating viewport on target 'rtt/44312096', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1575 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1576 18:03:23: Creating viewport on target 'rtt/44312160', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1577 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1578 18:03:23: Creating viewport on target 'rtt/44312224', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1579 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1580 18:03:23: Creating viewport on target 'rtt/44312288', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1581 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1582 18:03:23: Creating viewport on target 'rtt/44312352', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1583 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1584 18:03:23: Creating viewport on target 'rtt/44312416', rendering from camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1585 18:03:23: Viewport for camera 'copperHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1586 18:03:23: WARNING: Texture instance 'copperHead_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. 
    1587 18:03:23: Creating viewport on target 'rtt/44313440', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1588 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1589 18:03:23: Creating viewport on target 'rtt/44313504', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1590 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1591 18:03:23: Creating viewport on target 'rtt/44313568', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1592 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1593 18:03:23: Creating viewport on target 'rtt/44313632', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1594 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1595 18:03:23: Creating viewport on target 'rtt/44313696', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1596 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1597 18:03:23: Creating viewport on target 'rtt/44313760', rendering from camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1598 18:03:23: Viewport for camera 'goldHead_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1599 18:03:23: WARNING: Texture instance 'goldHead_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. 
    1600 18:03:23: Creating viewport on target 'rtt/44314816', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1601 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1602 18:03:23: Creating viewport on target 'rtt/44314880', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1603 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1604 18:03:23: Creating viewport on target 'rtt/44314944', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1605 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1606 18:03:23: Creating viewport on target 'rtt/44315008', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1607 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1608 18:03:23: Creating viewport on target 'rtt/44315072', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1609 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1610 18:03:23: Creating viewport on target 'rtt/44315136', rendering from camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1611 18:03:23: Viewport for camera 'goldHead_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1612 18:03:23: WARNING: Texture instance 'goldHead_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. 
    1613 18:03:23: Creating viewport on target 'rtt/44334944', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1614 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1615 18:03:23: Creating viewport on target 'rtt/44335008', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1616 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1617 18:03:23: Creating viewport on target 'rtt/44335072', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1618 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1619 18:03:23: Creating viewport on target 'rtt/44335136', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1620 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1621 18:03:23: Creating viewport on target 'rtt/44335200', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1622 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1623 18:03:23: Creating viewport on target 'rtt/44335264', rendering from camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1624 18:03:23: Viewport for camera 'silverHeade_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1625 18:03:23: WARNING: Texture instance 'silverHeade_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. 
    1626 18:03:23: Creating viewport on target 'rtt/44335776', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1627 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1628 18:03:23: Creating viewport on target 'rtt/44335840', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1629 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1630 18:03:23: Creating viewport on target 'rtt/44335904', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1631 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1632 18:03:23: Creating viewport on target 'rtt/44335968', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1633 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1634 18:03:23: Creating viewport on target 'rtt/44336032', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1635 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1636 18:03:23: Creating viewport on target 'rtt/44336096', rendering from camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1637 18:03:23: Viewport for camera 'silverHeade_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1638 18:03:23: WARNING: Texture instance 'silverHeade_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. 
    1639 18:03:23: Win32Input8: DirectInput Activation Starts 
    1640 18:03:23: Win32Input8: Establishing keyboard input. 
    1641 18:03:23: Win32Input8: Keyboard input established. 
    1642 18:03:23: Win32Input8: Initializing mouse input in immediate mode. 
    1643 18:03:23: Win32Input8: Mouse input in immediate mode initialized. 
    1644 18:03:23: Win32Input8: DirectInput OK. 
    1645 18:03:23: WARNING: Texture instance 'centerHead_SE_0_PHOTONMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1646 18:03:23: D3D9 : Loading 2D Texture, image name : 'PowerOfPhotonHitTexel.dds' with 2147483647 mip map levels 
    1647 18:03:23: WARNING: Texture instance 'centerHead_SE_0_CAUSTICCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1648 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1649 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1650 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1651 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1652 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1653 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture5' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1654 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture6' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1655 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture7' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1656 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture8' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1657 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture9' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1658 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture10' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1659 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture11' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1660 18:03:23: WARNING: Texture instance 'CompositorInstanceTexture12' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1661 18:04:09: Unregistering ResourceManager for type BspLevel 
    1662 18:04:09: Render Target 'rtt/3116480' Average FPS: 37.4109 Best FPS: 65.6716 Worst FPS: 20.854 
    1663 18:04:09: Render Target 'rtt/3116160' Average FPS: 37.4035 Best FPS: 65.6716 Worst FPS: 20.8127 
    1664 18:04:09: Render Target 'rtt/3097792' Average FPS: 37.4122 Best FPS: 65.6716 Worst FPS: 20.8333 
    1665 18:04:09: Render Target 'rtt/3126176' Average FPS: 37.4086 Best FPS: 65.6064 Worst FPS: 21.7822 
    1666 18:04:09: Render Target 'rtt/3118336' Average FPS: 37.456 Best FPS: 65.6716 Worst FPS: 20.8333 
    1667 18:04:09: Render Target 'rtt/3126528' Average FPS: 37.4035 Best FPS: 65.6064 Worst FPS: 20.7921 
    1668 18:04:09: Render Target 'rtt/44303616' Average FPS: 37.4112 Best FPS: 65.5412 Worst FPS: 21.215 
    1669 18:04:09: Render Target 'rtt/44303168' Average FPS: 37.4012 Best FPS: 65.5412 Worst FPS: 20.2507 
    1670 18:04:09: Render Target 'rtt/44302816' Average FPS: 37.4081 Best FPS: 65.5412 Worst FPS: 20.2507 
    1671 18:04:09: Render Target 'rtt/44302464' Average FPS: 37.4133 Best FPS: 65.5412 Worst FPS: 20.2703 
    1672 18:04:09: Render Target 'rtt/3127584' Average FPS: 37.4035 Best FPS: 65.6064 Worst FPS: 20.2899 
    1673 18:04:09: Render Target 'rtt/3127232' Average FPS: 37.4105 Best FPS: 65.6064 Worst FPS: 20.4678 
    1674 18:04:09: Render Target 'rtt/3126880' Average FPS: 37.4132 Best FPS: 65.5412 Worst FPS: 20.7715 
    1675 18:04:09: Render Target 'rtt/44335776' Average FPS: 6.22367 Best FPS: 6.80934 Worst FPS: 0.961538 
    1676 18:04:09: Render Target 'rtt/44335840' Average FPS: 6.2236 Best FPS: 6.80934 Worst FPS: 0.680041 
    1677 18:04:09: Render Target 'rtt/44335904' Average FPS: 6.16038 Best FPS: 6.81597 Worst FPS: 0.965872 
    1678 18:04:09: Render Target 'rtt/44335968' Average FPS: 6.16066 Best FPS: 6.80934 Worst FPS: 0.966495 
    1679 18:04:09: Render Target 'rtt/44336032' Average FPS: 6.2231 Best FPS: 6.80272 Worst FPS: 0.96743 
    1680 18:04:09: Render Target 'rtt/44336096' Average FPS: 6.22353 Best FPS: 6.80272 Worst FPS: 0.967742 
    1681 18:04:09: Render Target 'rtt/44334944' Average FPS: 6.22221 Best FPS: 6.80934 Worst FPS: 0.961538 
    1682 18:04:09: Render Target 'rtt/44335008' Average FPS: 6.22198 Best FPS: 6.80272 Worst FPS: 0.67981 
    1683 18:04:09: Render Target 'rtt/44335072' Average FPS: 6.16026 Best FPS: 6.80934 Worst FPS: 0.965872 
    1684 18:04:09: Render Target 'rtt/44335136' Average FPS: 6.16065 Best FPS: 6.80934 Worst FPS: 0.966495 
    1685 18:04:09: Render Target 'rtt/44335200' Average FPS: 6.22185 Best FPS: 6.80934 Worst FPS: 1.22436 
    1686 18:04:09: Render Target 'rtt/44335264' Average FPS: 6.22142 Best FPS: 6.80934 Worst FPS: 0.968054 
    1687 18:04:09: Render Target 'rtt/44314816' Average FPS: 6.03252 Best FPS: 7.52587 Worst FPS: 1.49142 
    1688 18:04:09: Render Target 'rtt/44314880' Average FPS: 6.03062 Best FPS: 7.52587 Worst FPS: 0.851789 
    1689 18:04:09: Render Target 'rtt/44314944' Average FPS: 6.0299 Best FPS: 7.54006 Worst FPS: 0.851789 
    1690 18:04:09: Render Target 'rtt/44315008' Average FPS: 6.07837 Best FPS: 7.75194 Worst FPS: 2.39521 
    1691 18:04:09: Render Target 'rtt/44315072' Average FPS: 6.06637 Best FPS: 7.51174 Worst FPS: 1.98939 
    1692 18:04:09: Render Target 'rtt/44315136' Average FPS: 6.04682 Best FPS: 7.5188 Worst FPS: 1.49365 
    1693 18:04:09: Render Target 'rtt/44313440' Average FPS: 6.03249 Best FPS: 7.5188 Worst FPS: 1.49031 
    1694 18:04:09: Render Target 'rtt/44313504' Average FPS: 6.02961 Best FPS: 7.5188 Worst FPS: 0.852515 
    1695 18:04:09: Render Target 'rtt/44313568' Average FPS: 6.02886 Best FPS: 7.54006 Worst FPS: 0.851789 
    1696 18:04:09: Render Target 'rtt/44313632' Average FPS: 6.07769 Best FPS: 7.75194 Worst FPS: 2.39521 
    1697 18:04:09: Render Target 'rtt/44313696' Average FPS: 6.06403 Best FPS: 7.5188 Worst FPS: 1.99071 
    1698 18:04:09: Render Target 'rtt/44313760' Average FPS: 6.06539 Best FPS: 7.5188 Worst FPS: 1.98939 
    1699 18:04:09: Render Target 'rtt/44312096' Average FPS: 6.15619 Best FPS: 6.80934 Worst FPS: 1.33601 
    1700 18:04:09: Render Target 'rtt/44312160' Average FPS: 6.15241 Best FPS: 6.80934 Worst FPS: 0.841751 
    1701 18:04:09: Render Target 'rtt/44312224' Average FPS: 6.15597 Best FPS: 6.80934 Worst FPS: 0.746826 
    1702 18:04:09: Render Target 'rtt/44312288' Average FPS: 6.15883 Best FPS: 6.80934 Worst FPS: 0.746269 
    1703 18:04:09: Render Target 'rtt/44312352' Average FPS: 6.18535 Best FPS: 6.80272 Worst FPS: 1.33422 
    1704 18:04:09: Render Target 'rtt/44312416' Average FPS: 6.15684 Best FPS: 6.80934 Worst FPS: 1.33511 
    1705 18:04:09: Render Target 'rtt/44310720' Average FPS: 6.15705 Best FPS: 6.80934 Worst FPS: 1.33511 
    1706 18:04:09: Render Target 'rtt/44310784' Average FPS: 6.15278 Best FPS: 6.80272 Worst FPS: 0.841043 
    1707 18:04:09: Render Target 'rtt/44310848' Average FPS: 6.15727 Best FPS: 6.80934 Worst FPS: 0.746269 
    1708 18:04:09: Render Target 'rtt/44310912' Average FPS: 6.15883 Best FPS: 6.80272 Worst FPS: 0.746269 
    1709 18:04:09: Render Target 'rtt/44310976' Average FPS: 6.18352 Best FPS: 6.80272 Worst FPS: 1.33422 
    1710 18:04:09: Render Target 'rtt/44311040' Average FPS: 6.15792 Best FPS: 6.80934 Worst FPS: 1.33511 
    1711 18:04:09: Render Target 'rtt/3138944' Average FPS: 37.4513 Best FPS: 65.4762 Worst FPS: 21.1132 
    1712 18:04:09: Render Target 'rtt/3138176' Average FPS: 37.4326 Best FPS: 65.4762 Worst FPS: 21.093 
    1713 18:04:09: Render Target 'rtt/3138240' Average FPS: 37.4327 Best FPS: 65.4762 Worst FPS: 21.093 
    1714 18:04:09: Render Target 'rtt/3138304' Average FPS: 37.4411 Best FPS: 65.5412 Worst FPS: 21.093 
    1715 18:04:09: Render Target 'rtt/3138368' Average FPS: 37.4411 Best FPS: 65.4762 Worst FPS: 21.093 
    1716 18:04:09: Render Target 'rtt/3138432' Average FPS: 37.4016 Best FPS: 65.4762 Worst FPS: 21.093 
    1717 18:04:09: Render Target 'rtt/3138496' Average FPS: 37.4513 Best FPS: 65.4762 Worst FPS: 21.093 
    1718 18:04:09: Render Target 'rtt/3136800' Average FPS: 37.4506 Best FPS: 65.4762 Worst FPS: 21.1538 
    1719 18:04:09: Render Target 'rtt/3136864' Average FPS: 37.439 Best FPS: 65.5412 Worst FPS: 21.1538 
    1720 18:04:09: Render Target 'rtt/3136928' Average FPS: 37.4408 Best FPS: 65.4762 Worst FPS: 21.1335 
    1721 18:04:09: Render Target 'rtt/3136992' Average FPS: 37.4506 Best FPS: 65.4762 Worst FPS: 21.1335 
    1722 18:04:09: Render Target 'rtt/3137056' Average FPS: 37.438 Best FPS: 65.4762 Worst FPS: 21.1335 
    1723 18:04:09: Render Target 'rtt/3137120' Average FPS: 37.4508 Best FPS: 65.4762 Worst FPS: 21.1132 
    1724 18:04:09: Render Target 'rtt/3135456' Average FPS: 37.374 Best FPS: 40.8367 Worst FPS: 20.2232 
    1725 18:04:09: Render Target 'rtt/3135520' Average FPS: 37.3903 Best FPS: 40.8367 Worst FPS: 20.2232 
    1726 18:04:09: Render Target 'rtt/3135584' Average FPS: 37.3757 Best FPS: 40.1567 Worst FPS: 20.5198 
    1727 18:04:09: Render Target 'rtt/3135648' Average FPS: 37.3806 Best FPS: 40.1567 Worst FPS: 20.5198 
    1728 18:04:09: Render Target 'rtt/3135712' Average FPS: 37.3903 Best FPS: 40.1567 Worst FPS: 20.5058 
    1729 18:04:09: Render Target 'rtt/3135776' Average FPS: 37.3897 Best FPS: 40.1961 Worst FPS: 20.4918 
    1730 18:04:09: Render Target 'rtt/3170528' Average FPS: 6.14547 Best FPS: 6.80934 Worst FPS: 1.71527 
    1731 18:04:09: Render Target 'rtt/3170592' Average FPS: 6.12827 Best FPS: 6.80934 Worst FPS: 1.24961 
    1732 18:04:09: Render Target 'rtt/3134208' Average FPS: 6.12737 Best FPS: 6.80934 Worst FPS: 1.24922 
    1733 18:04:09: Render Target 'rtt/3134272' Average FPS: 6.12621 Best FPS: 6.80934 Worst FPS: 1.91781 
    1734 18:04:09: Render Target 'rtt/3134336' Average FPS: 6.14745 Best FPS: 6.80934 Worst FPS: 1.71576 
    1735 18:04:09: Render Target 'rtt/3134400' Average FPS: 6.14379 Best FPS: 6.80934 Worst FPS: 0.364432 
    1736 18:04:09: Render Target 'rtt/3145984' Average FPS: 6.14408 Best FPS: 6.80934 Worst FPS: 1.71527 
    1737 18:04:09: Render Target 'rtt/3146048' Average FPS: 6.12646 Best FPS: 6.80934 Worst FPS: 1.24961 
    1738 18:04:09: Render Target 'rtt/3146112' Average FPS: 6.12572 Best FPS: 6.81597 Worst FPS: 1.24922 
    1739 18:04:09: Render Target 'rtt/3170208' Average FPS: 6.12621 Best FPS: 6.80934 Worst FPS: 1.91781 
    1740 18:04:09: Render Target 'rtt/3170272' Average FPS: 6.14585 Best FPS: 6.80272 Worst FPS: 1.71527 
    1741 18:04:09: Render Target 'rtt/3170336' Average FPS: 6.14511 Best FPS: 6.80272 Worst FPS: 0.364299 
    1742 18:04:09: *-*-* OGRE Shutdown 
    1743 18:04:09: Unregistering ResourceManager for type Compositor 
    1744 18:04:09: Unregistering ResourceManager for type Font 
    1745 18:04:09: Unregistering ResourceManager for type Skeleton 
    1746 18:04:09: Unregistering ResourceManager for type Mesh 
    1747 18:04:09: Unregistering ResourceManager for type HighLevelGpuProgram 
    1748 18:04:09: Unloading library .\Plugin_VisibilitySceneManager 
    1749 18:04:09: Unloading library .\Plugin_CgProgramManager 
    1750 18:04:09: Unloading library .\Plugin_OctreeSceneManager 
    1751 18:04:09: Unloading library .\Plugin_BSPSceneManager 
    1752 18:04:09: Unloading library .\Plugin_ParticleFX 
    1753 18:04:09: Render Target 'OGRE Render Window' Average FPS: 37.4477 Best FPS: 65.4762 Worst FPS: 20.2117 
    1754 18:04:09: D3D9 : Shutting down cleanly. 
    1755 18:04:09: Unregistering ResourceManager for type Texture 
    1756 18:04:09: Unregistering ResourceManager for type GpuProgram 
    1757 18:04:09: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    1758 18:04:09: Unloading library .\RenderSystem_Direct3D9 
    1759 18:04:09: Unregistering ResourceManager for type Material 
    1760 18:04:09: Unloading library OgrePlatform.dll 
     139814:06:42: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     139914:06:42: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     140014:06:42: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     140114:06:42: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     140214:06:42: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     140314:06:42: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     140414:06:42: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     140514:06:42: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     140614:06:42: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     140714:06:42: Parsing script X3D.material 
     140814:06:42: Parsing script GameTools_Glow.compositor 
     140914:06:42: Parsing script GameTools_ToneMap.compositor 
     141014:06:42: Parsing script sample.fontdef 
     141114:06:42: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     141214:06:42: Parsing script GameTools.particle 
     141314:06:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     141414:06:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     141514:06:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     141614:06:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogBig (tried renderer) 
     141714:06:42: Bad particle system attribute line: 'billboard_type  point' in GameTools/FogLittle (tried renderer) 
     141814:06:42: Parsing script Compositor.overlay 
     141914:06:42: Parsing script DP3.overlay 
     142014:06:42: Parsing script Example-CubeMapping.overlay 
     142114:06:42: Parsing script Example-DynTex.overlay 
     142214:06:42: Parsing script Example-Water.overlay 
     142314:06:42: Parsing script FullScreen.overlay 
     142414:06:42: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     142514:06:42: Parsing script Shadows.overlay 
     142614:06:42: Finished parsing scripts for resource group General 
     142714:06:42: Initialising resource group GTP_Basic 
     142814:06:42: Parsing scripts for resource group GTP_Basic 
     142914:06:42: Parsing script GTPBasic.program 
     143014:06:42: Parsing script GTPBasic.material 
     143114:06:42: Error in material GTP/Basic/ShadowReciever/Distance at line 126 of GTPBasic.material: Unrecognised command: lighting 
     143214:06:42: Finished parsing scripts for resource group GTP_Basic 
     143314:06:42: Initialising resource group PostProc 
     143414:06:42: Parsing scripts for resource group PostProc 
     143514:06:42: Parsing script GTPPostProc.program 
     143614:06:42: Parsing script GTPPostProc.material 
     143714:06:42: Parsing script GTPGlow.compositor 
     143814:06:42: Parsing script GTPToneMap.compositor 
     143914:06:42: Finished parsing scripts for resource group PostProc 
     144014:06:42: Initialising resource group GTP_Demo 
     144114:06:42: Parsing scripts for resource group GTP_Demo 
     144214:06:42: Parsing script tower.material 
     144314:06:42: Finished parsing scripts for resource group GTP_Demo 
     144414:06:42: Creating viewport on target 'rtt/3116416', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     144514:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     144614:06:42: Creating viewport on target 'rtt/3118272', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     144714:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     144814:06:42: Creating viewport on target 'rtt/3097728', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     144914:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     145014:06:42: Creating viewport on target 'rtt/3117120', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     145114:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     145214:06:42: Creating viewport on target 'rtt/3126112', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     145314:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     145414:06:42: Creating viewport on target 'rtt/3126464', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     145514:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     145614:06:42: Creating viewport on target 'rtt/3126816', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     145714:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     145814:06:42: Creating viewport on target 'rtt/3127168', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     145914:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     146014:06:42: Creating viewport on target 'rtt/3127520', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     146114:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     146214:06:42: Creating viewport on target 'rtt/44302464', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     146314:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 128 H: 128 
     146414:06:42: Creating viewport on target 'rtt/44302816', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     146514:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 32 H: 32 
     146614:06:42: Creating viewport on target 'rtt/44303168', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     146714:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 8 H: 8 
     146814:06:42: Creating viewport on target 'rtt/44303616', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     146914:06:42: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 2 H: 2 
     147014:06:42: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     147114:06:42: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     147214:06:42: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     147314:06:42: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     147414:06:42: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     147514:06:42: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     147614:06:42: Error at line 3 of towers2.level: Unrecognised command: ogreXMLfile 
     147714:06:42: Error at line 9 of towers2.level: Unrecognised command: ogreXMLfile 
     147814:06:42: Error at line 15 of towers2.level: Unrecognised command: ogreXMLfile 
     147914:06:42: Error at line 21 of towers2.level: Unrecognised command: ogreXMLfile 
     148014:06:42: Error at line 27 of towers2.level: Unrecognised command: ogreXMLfile 
     148114:06:42: Error at line 33 of towers2.level: Unrecognised command: ogreXMLfile 
     148214:06:42: Mesh: Loading tower_bottomShape.mesh. 
     148314:06:42: Texture: stone.bmp: Loading 1 faces(PF_R8G8B8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     148414:06:42: Texture: towerdetailgrey.bmp: Loading 1 faces(PF_R8G8B8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     148514:06:42: D3D9 : Loading 2D Texture, image name : 'stoneNormal.dds' with 2147483647 mip map levels 
     148614:06:42: Mesh: Loading tower_middleShape.mesh. 
     148714:06:42: Mesh: Loading GateTowerTopShape.mesh. 
     148814:06:42: Mesh: Loading TowerTopShape.mesh. 
     148914:06:42: Mesh: Loading CornerTowerTopShape.mesh. 
     149014:06:42: Mesh: Loading wallShape.mesh. 
     149114:06:42: Texture: walldetailgrey.bmp: Loading 1 faces(PF_R8G8B8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     149214:06:42: An exception has been thrown! 
     1493 
     1494----------------------------------- 
     1495Details: 
     1496----------------------------------- 
     1497Error #: 7 
     1498Function: GpuProgramParameters::getParamIndex 
     1499Description: Cannot find a parameter named worldViewProj.  
     1500File: \GameToolsSVN\Ogre\Ogre1.2\OgreMain\src\OgreGpuProgram.cpp 
     1501Line: 779 
     1502Stack unwinding: <<beginning of stack>> 
     150314:07:50: Unregistering ResourceManager for type BspLevel 
     150414:07:50: Render Target 'rtt/3116416' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     150514:07:50: Render Target 'rtt/3117120' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     150614:07:50: Render Target 'rtt/3097728' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     150714:07:50: Render Target 'rtt/3126112' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     150814:07:50: Render Target 'rtt/3118272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     150914:07:50: Render Target 'rtt/3126464' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     151014:07:50: Render Target 'rtt/44303616' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     151114:07:50: Render Target 'rtt/44303168' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     151214:07:50: Render Target 'rtt/44302816' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     151314:07:50: Render Target 'rtt/44302464' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     151414:07:50: Render Target 'rtt/3127520' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     151514:07:50: Render Target 'rtt/3127168' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     151614:07:50: Render Target 'rtt/3126816' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     151714:07:50: *-*-* OGRE Shutdown 
     151814:07:50: Unregistering ResourceManager for type Compositor 
     151914:07:50: Unregistering ResourceManager for type Font 
     152014:07:50: Unregistering ResourceManager for type Skeleton 
     152114:07:50: Unregistering ResourceManager for type Mesh 
     152214:07:50: Unregistering ResourceManager for type HighLevelGpuProgram 
     152314:07:50: Unloading library .\Plugin_VisibilitySceneManager 
     152414:07:50: Unloading library .\Plugin_CgProgramManager 
     152514:07:50: Unloading library .\Plugin_OctreeSceneManager 
     152614:07:50: Unloading library .\Plugin_BSPSceneManager 
     152714:07:50: Unloading library .\Plugin_ParticleFX 
     152814:07:50: Render Target 'OGRE Render Window' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     152914:07:50: D3D9 : Shutting down cleanly. 
     153014:07:50: Unregistering ResourceManager for type Texture 
     153114:07:50: Unregistering ResourceManager for type GpuProgram 
     153214:07:50: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     153314:07:50: Unloading library .\RenderSystem_Direct3D9 
     153414:07:50: Unregistering ResourceManager for type Material 
     153514:07:50: Unloading library OgrePlatform.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/src/CausticTest/include/CausticTest.h

    r2175 r2179  
    149149        void chooseSceneManager() 
    150150        { 
    151                 mSceneMgr = mRoot->createSceneManager("OctreeSceneManager"); 
    152                 //mSceneMgr = mRoot->createSceneManager("OcclusionCullingSceneManager"); 
     151                //mSceneMgr = mRoot->createSceneManager("OctreeSceneManager"); 
     152                mSceneMgr = mRoot->createSceneManager("OcclusionCullingSceneManager"); 
    153153        } 
    154154 
     
    181181        void createScene(void) 
    182182    { 
    183         //      std::string terrain_cfg("terrainCulling.cfg"); 
    184         //      mSceneMgr->setWorldGeometry(terrain_cfg); 
     183                std::string occlusion_cfg("OcclusionCulling.cfg"); 
     184                mSceneMgr->setWorldGeometry(occlusion_cfg); 
    185185                //createPostproc(); 
    186186                OgreIlluminationManager::getSingleton().setBlurShadowMap(true); 
  • GTP/trunk/App/Demos/Illum/Ogre/src/DiffuseTest/include/DiffuseTest.h

    r2175 r2179  
    361361                ResourceGroupManager::getSingleton().initialiseResourceGroup("PostProc"); 
    362362                ResourceGroupManager::getSingleton().initialiseResourceGroup("GTP_Basic"); 
    363                 ResourceGroupManager::getSingleton().initialiseResourceGroup("GTP_Diffuse"); 
     363        //      ResourceGroupManager::getSingleton().initialiseResourceGroup("GTP_Diffuse"); 
    364364        } 
    365365 
     
    654654           OgreIlluminationManager::getSingleton().setShadowMapSize(512); 
    655655           OgreIlluminationManager::getSingleton().setBlurShadowMap(true); 
    656            OgreIlluminationManager::getSingleton().setShadowMapMaterialName("GameTools/ShadowMapDistance"); 
     656           OgreIlluminationManager::getSingleton().setShadowMapMaterialName("GTP/Basic/Distance_Normalized");//GameTools/ShadowMapDistance 
    657657            mSceneMgr->setAmbientLight(ColourValue(0.505 * 0.2, 0.897 * 0.2, 0.914 * 0.2)); 
    658658                 
     
    660660 
    661661        Entity* object = mSceneMgr->createEntity("object", "buddha.mesh"); 
    662                 object->setMaterialName("GTP/Diffuse/Disc2Point"); 
     662                //object->setMaterialName("GTP/Diffuse/Disc2Point"); 
    663663                //object->setMaterialName("GameTools/DiffuseP2P"); 
    664664                objectNode = rootNode->createChildSceneNode(); 
  • GTP/trunk/App/Demos/Illum/Ogre/src/HierarchicalSystem/include/HierarchicalSystem.h

    r2175 r2179  
    9999                if(scene == 1) 
    100100                { 
    101                   mSceneMgr = mRoot->createSceneManager("OctreeSceneManager"); 
    102                   //mSceneMgr = mRoot->createSceneManager("OcclusionCullingSceneManager"); 
     101                 // mSceneMgr = mRoot->createSceneManager("OctreeSceneManager"); 
     102                  mSceneMgr = mRoot->createSceneManager("OcclusionCullingSceneManager"); 
    103103                } 
    104104                else if(scene == 2) 
     
    109109    { 
    110110                //createPostproc(); 
    111  
     111                //std::string occlusion_cfg("OcclusionCulling.cfg"); 
     112                //mSceneMgr->setWorldGeometry(occlusion_cfg); 
     113                 
    112114                OgreIlluminationManager::getSingleton().setMainCamera(mCamera); 
    113115                OgreIlluminationManager::getSingleton().setMainViewport(mWindow->getViewport(0)); 
  • GTP/trunk/App/Demos/Illum/Ogre/src/PRMDemo/include/PRMDemo.h

    r2175 r2179  
    9696        void createScene(void) 
    9797    { 
    98                 createPostproc(); 
     98                //std::string occlusion_cfg("OcclusionCulling.cfg"); 
     99                //mSceneMgr->setWorldGeometry(occlusion_cfg); 
     100                 
     101                //createPostproc(); 
    99102 
    100103                OgreIlluminationManager::getSingleton().setMainCamera(mCamera); 
    101104                OgreIlluminationManager::getSingleton().setMainViewport(mWindow->getViewport(0)); 
    102105                OgreIlluminationManager::getSingleton().setShadowMapSize(512); 
     106                OgreIlluminationManager::getSingleton().setShadowMapMaterialName("GameTools/ShadowMapDistance"); 
     107                OgreIlluminationManager::getSingleton().setFocusingSM(true); 
     108           OgreIlluminationManager::getSingleton().setShadowMapSize(512); 
     109           OgreIlluminationManager::getSingleton().setBlurShadowMap(false); 
     110           OgreIlluminationManager::getSingleton().setUseLISPSM(false); 
    103111                                 
    104112                Root::getSingleton()._setCurrentSceneManager(mSceneMgr); 
     
    113121                mSceneMgr->setSkyBox(true, "Examples/EveningSkyBox", 500); 
    114122                 
    115                 SceneNode* rootNode = mSceneMgr->getRootSceneNode();     
     123                SceneNode* rootNode = mSceneMgr->getRootSceneNode(); 
    116124 
    117125                 
    118126                SceneSerializer s(mSceneMgr); 
    119127                DataStreamPtr inputStream;                               
    120                 inputStream = ResourceGroupManager::getSingleton().openResource("towers2.level");                
     128                inputStream = ResourceGroupManager::getSingleton().openResource("level.txt");   //towers2.level  
    121129                s.parseScript(inputStream, ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME); 
    122                  
    123         /*      Entity* tower = mSceneMgr->createEntity("tower","tower.mesh"); 
    124                 SceneNode* tNode = rootNode->createChildSceneNode("tower"); 
    125                 tNode->setScale(10,10,10); 
    126                 tNode->attachObject(tower); 
    127  
    128                 Entity* tower2 = mSceneMgr->createEntity("tower2","tower.mesh"); 
    129                 tower2->setMaterialName("towermaterialBump"); 
    130                 SceneNode* tNode2 = rootNode->createChildSceneNode("tower2"); 
    131                 tNode2->setScale(10,10,10); 
    132                 tNode2->setPosition(0,0,100); 
    133                 tNode2->attachObject(tower2);*/ 
    134  
    135         /*      Entity* tower3 = mSceneMgr->createEntity("tower3","tower.mesh"); 
    136                 tower3->setMaterialName("towermaterialNoBump"); 
    137                 SceneNode* tNode3 = rootNode->createChildSceneNode("tower3"); 
    138                 tNode3->setPosition(0,0,-50); 
    139                 tNode3->setScale(10,10,10); 
    140                 tNode3->attachObject(tower3);*/ 
    141  
    142 /*              Entity* lepcso = mSceneMgr->createEntity("lepcso","stairs.mesh"); 
    143                 SceneNode* lNode = rootNode->createChildSceneNode("l"); 
    144                 lNode->attachObject(lepcso);*/ 
    145          
    146                 //createPlane("p","lambert1",Vector3(0,-20,0),Vector2(100,100)); 
     130                         
     131                createPlane("p","GTP/Basic/ShadowReciever/Depth",Vector3(0,0,0),Vector2(1000,1000)); 
    147132 
    148133                Light* mainLight = mSceneMgr->createLight("MainLight"); 
    149134                mainLight->setType(Light::LT_DIRECTIONAL); 
     135                mainLight->setCastShadows(true); 
    150136        mainLight->setDiffuseColour(ColourValue::White); 
    151137                mainLight->setSpecularColour(ColourValue::White); 
    152138                mainLightNode = rootNode->createChildSceneNode(); 
    153139                 
    154                 mainLightNode->setPosition(10,10,0);             
    155                 mainLight->setPosition(10,10,0); 
     140                mainLightNode->setPosition(1000,1000,1000);              
     141                mainLight->setPosition(1000,1000,1000); 
    156142                mainLight->setPowerScale(5); 
    157143                mainLight->setDirection(-1,-1, -1); 
Note: See TracChangeset for help on using the changeset viewer.