Changeset 1487


Ignore:
Timestamp:
09/26/06 09:47:54 (18 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum
Files:
1 deleted
21 edited

Legend:

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

    r1094 r1487  
    3131  float4 pos = tex2Dlod(PhotonHitMap, float4(position.x, 1.0 - position.y,0,0)).rgba; 
    3232//      float4 pos = float4(0,0,-0.5,1); 
     33         
    3334   if(pos.a == 0)//no photon hit 
    3435   { 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/GameTools_CauCube.hlsl

    r1355 r1487  
    1616      
    1717  float4 cPosition; 
    18   float pixel = 1.0 / resolution;    
     18  float pixel = 1.0 / 32.0;    
    1919  float2 uv = float2(position.x, 1.0 - position.y); 
    2020  float4 pos = tex2Dlod(PhotonHitMap, float4(uv,0,0)).rgba; 
     
    2323   { 
    2424                OUT.color = float4(0,0,0,0);             
    25                 OUT.hPosition = float4(0, 0, 100000000, 1); 
     25                OUT.hPosition = float4(0, 0, 1000000, 1); 
    2626   } 
    2727   else 
     
    3131                OUT.hPosition = mul(Proj, cPosition); 
    3232                 
    33                 float intensity = 0.5; 
     33                float intensity = 0.25; 
    3434                 
    3535                //read four neighbours 
    36                 float valids = 0; 
    3736                float sumdist = 0; 
    3837                float dist; 
    39                 float4 pos1 = tex2Dlod(PhotonHitMap, float4(uv + float2(pixel, pixel),0,0)).rgba; 
     38                float valids = 0; 
     39                float4 pos1 = tex2Dlod(PhotonHitMap, float4(uv + float2(pixel, pixel),0,0)); 
    4040                if(pos1.a != 0) 
    4141                { 
    4242                        dist = length(pos1.xyz - pos.xyz); 
     43                        sumdist += dist; 
    4344                        valids++; 
    44                         sumdist += dist; 
    4545                } 
    46                 float4 pos2 = tex2Dlod(PhotonHitMap, float4(uv + float2(-pixel, pixel),0,0)).rgba; 
     46                 
     47                float4 pos2 = tex2Dlod(PhotonHitMap, float4(uv + float2(-pixel, pixel),0,0)); 
    4748                if(pos2.a != 0) 
    4849                { 
    4950                        dist = length(pos2.xyz - pos.xyz); 
     51                        sumdist += dist; 
    5052                        valids++; 
    51                         sumdist += dist; 
    5253                } 
    53                 float4 pos3 = tex2Dlod(PhotonHitMap, float4(uv + float2(pixel, -pixel),0,0)).rgba; 
     54                 
     55                float4 pos3 = tex2Dlod(PhotonHitMap, float4(uv + float2(pixel, -pixel),0,0)); 
    5456                if(pos3.a != 0) 
    5557                { 
    5658                        dist = length(pos3.xyz - pos.xyz); 
     59                        sumdist += dist; 
    5760                        valids++; 
    58                         sumdist += dist; 
    5961                } 
    60                 float4 pos4 = tex2Dlod(PhotonHitMap, float4(uv + float2(-pixel, -pixel),0,0)).rgba; 
     62                 
     63                float4 pos4 = tex2Dlod(PhotonHitMap, float4(uv + float2(-pixel, -pixel),0,0)); 
    6164                if(pos4.a != 0) 
    6265                { 
    6366                        dist = length(pos4.xyz - pos.xyz); 
     67                        sumdist += dist; 
    6468                        valids++; 
    65                         sumdist += dist; 
    6669                } 
    67                  
    68                 float avrdist = sumdist / valids; 
    69                 float maxdist = 0.1; 
     70                                 
     71                float avrdist = sumdist / 4;//valids; 
     72                float maxdist = 1; 
    7073                intensity = max(maxdist - avrdist, 0.0) / maxdist; 
    7174                 
    72                 OUT.color = float4(1,1,1,intensity); 
     75                //intensity = valids / 4.0;//avrdist; 
     76                 
     77                //OUT.color = float4(1,1,1,intensity); 
     78                OUT.color = intensity; 
    7379        }   
    7480    
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/GameTools_Localized_EnvMap.hlsl

    r1094 r1487  
    128128         
    129129        float cos_theta = -dot(V, mNormal); 
    130         float sFresnel = 0.5; 
     130        float sFresnel = 0.1; 
    131131        float F = (sFresnel + pow(1-cos_theta, 5.0f) * (1-sFresnel)); 
    132132     
     
    229229        float3 V = normalize(wPos - cameraPos); 
    230230                 
    231         float3 R = refract(V, mNormal, 0.9);             
     231        float3 R = refract(V, mNormal, 0.85);            
    232232        //float3 R = V;  
    233233        newTexCoord = R;         
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/GlassHead.material

    r1445 r1487  
    3838                cull_software none 
    3939                lighting off 
    40                 scene_blend add 
     40                //scene_blend add 
    4141                scene_blend src_alpha one 
    4242                depth_write off 
     
    4949                    param_named_auto Proj projection_matrix 
    5050                    param_named_auto resolution viewport_width 
    51                     param_named CauSpriteSize float 10.0             
     51                    //param_named CauSpriteSize float 10.0           
     52                    param_named CauSpriteSize float 70.0             
    5253                }  
    5354                fragment_program_ref  GameTools/CauPS 
     
    9495                cull_software none 
    9596                lighting off 
    96                 scene_blend add 
     97                //scene_blend add 
    9798                scene_blend src_alpha one 
    9899                depth_write off 
     
    111112            texture_unit 
    112113                { 
    113                         vertex_texture true 
    114                         texture flare.png 
     114                        vertex_texture true                      
    115115                } 
    116116       } 
     
    131131                        RenderTechnique ColorCubeMap 
    132132                        { 
    133                                 update_interval         0 
     133                                update_interval         5 
    134134                                distance_calc true 3.5                                   
    135135                        } 
    136136                        RenderTechnique DistanceCubeMap 
    137137                        { 
    138                                 update_interval         0 
     138                                update_interval         5 
    139139                                distance_calc true 3.5                                           
    140140                        } 
    141141                        RenderTechnique CausticCaster 
    142142                        { 
    143                                 attenuation     0        
     143                                attenuation     0 
     144                                photonmap_resolution 32 
     145                                caustic_cubemap_resolution 512   
    144146                                caustic_map_material            GameTools/CauTri 
    145147                                use_triangles   true                             
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log

    r1474 r1487  
    1 20:04:19: Creating resource group General 
    2 20:04:19: Creating resource group Internal 
    3 20:04:19: Creating resource group Autodetect 
    4 20:04:19: Registering ResourceManager for type Material 
    5 20:04:19: Registering ResourceManager for type Mesh 
    6 20:04:19: Registering ResourceManager for type Skeleton 
    7 20:04:19: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 20:04:19: Loading library OgrePlatform_d.dll 
    9 20:04:19: OverlayElementFactory for type Panel registered. 
    10 20:04:19: OverlayElementFactory for type BorderPanel registered. 
    11 20:04:19: OverlayElementFactory for type TextArea registered. 
    12 20:04:19: Registering ResourceManager for type Font 
    13 20:04:19: ArchiveFactory for archive type FileSystem registered. 
    14 20:04:19: ArchiveFactory for archive type Zip registered. 
    15 20:04:19: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 20:04:19: 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 20:04:19: Registering ResourceManager for type HighLevelGpuProgram 
    18 20:04:19: Registering ResourceManager for type Compositor 
    19 20:04:19: MovableObjectFactory for type 'Entity' registered. 
    20 20:04:19: MovableObjectFactory for type 'Light' registered. 
    21 20:04:19: MovableObjectFactory for type 'BillboardSet' registered. 
    22 20:04:19: MovableObjectFactory for type 'ManualObject' registered. 
    23 20:04:19: MovableObjectFactory for type 'BillboardChain' registered. 
    24 20:04:19: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 20:04:19: Loading library .\RenderSystem_Direct3D9 
    26 20:04:19: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 20:04:19: D3D9: Driver Detection Starts 
    28 20:04:19: D3D9: Driver Detection Ends 
    29 20:04:19: Loading library .\Plugin_ParticleFX 
    30 20:04:19: Particle Emitter Type 'Point' registered 
    31 20:04:19: Particle Emitter Type 'Box' registered 
    32 20:04:19: Particle Emitter Type 'Ellipsoid' registered 
    33 20:04:19: Particle Emitter Type 'Cylinder' registered 
    34 20:04:19: Particle Emitter Type 'Ring' registered 
    35 20:04:19: Particle Emitter Type 'HollowEllipsoid' registered 
    36 20:04:19: Particle Affector Type 'LinearForce' registered 
    37 20:04:19: Particle Affector Type 'ColourFader' registered 
    38 20:04:19: Particle Affector Type 'ColourFader2' registered 
    39 20:04:19: Particle Affector Type 'ColourImage' registered 
    40 20:04:19: Particle Affector Type 'ColourInterpolator' registered 
    41 20:04:19: Particle Affector Type 'Scaler' registered 
    42 20:04:19: Particle Affector Type 'Rotator' registered 
    43 20:04:19: Particle Affector Type 'DirectionRandomiser' registered 
    44 20:04:19: Particle Affector Type 'DeflectorPlane' registered 
    45 20:04:19: Loading library .\Plugin_BSPSceneManager 
    46 20:04:19: Registering ResourceManager for type BspLevel 
    47 20:04:19: Loading library .\Plugin_OctreeSceneManager 
    48 20:04:19: Loading library .\Plugin_CgProgramManager 
    49 20:04:19: *-*-* OGRE Initialising 
    50 20:04:19: *-*-* Version 1.2.0 (Dagon) 
    51 20:04:19: Creating resource group Bootstrap 
    52 20:04:19: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 20:04:19: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 20:04:19: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 20:04:19: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 20:04:19: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 20:04:19: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 20:04:19: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 20:04:19: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 20:04:19: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 20:04:19: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 20:04:19: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 20:04:19: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 20:04:20: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 20:04:20: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 20:04:20: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 20:04:20: D3D9 : RenderSystem Option: Full Screen = No 
    68 20:04:20: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
    69 20:04:20: D3D9 : RenderSystem Option: VSync = No 
    70 20:04:20: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 20:04:21: D3D9 : Subsystem Initialising 
    72 20:04:21: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 20:04:21: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 20:04:21: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 20:04:21: Registering ResourceManager for type Texture 
    76 20:04:21: Registering ResourceManager for type GpuProgram 
    77 20:04:21: RenderSystem capabilities 
    78 20:04:21: ------------------------- 
    79 20:04:21:  * Hardware generation of mipmaps: yes 
    80 20:04:21:  * Texture blending: yes 
    81 20:04:21:  * Anisotropic texture filtering: yes 
    82 20:04:21:  * Dot product texture operation: yes 
    83 20:04:21:  * Cube mapping: yes 
    84 20:04:21:  * Hardware stencil buffer: yes 
    85 20:04:21:    - Stencil depth: 8 
    86 20:04:21:    - Two sided stencil support: yes 
    87 20:04:21:    - Wrap stencil values: yes 
    88 20:04:21:  * Hardware vertex / index buffers: yes 
    89 20:04:21:  * Vertex programs: yes 
    90 20:04:21:    - Max vertex program version: vs_3_0 
    91 20:04:21:  * Fragment programs: yes 
    92 20:04:21:    - Max fragment program version: ps_3_0 
    93 20:04:21:  * Texture Compression: yes 
    94 20:04:21:    - DXT: yes 
    95 20:04:21:    - VTC: no 
    96 20:04:21:  * Scissor Rectangle: yes 
    97 20:04:21:  * Hardware Occlusion Query: yes 
    98 20:04:21:  * User clip planes: yes 
    99 20:04:21:  * VET_UBYTE4 vertex element type: yes 
    100 20:04:21:  * Infinite far plane projection: yes 
    101 20:04:21:  * Hardware render-to-texture: yes 
    102 20:04:21:  * Floating point textures: yes 
    103 20:04:21:  * Non-power-of-two textures: yes 
    104 20:04:21:  * Volume textures: yes 
    105 20:04:21:  * Multiple Render Targets: 4 
    106 20:04:21:  * Max Point Size: 8192 
    107 20:04:21: *************************************** 
    108 20:04:21: *** D3D9 : Subsystem Initialised OK *** 
    109 20:04:21: *************************************** 
    110 20:04:21: ResourceBackgroundQueue - threading disabled 
    111 20:04:21: Particle Renderer Type 'billboard' registered 
    112 20:04:21: Particle Renderer Type 'sprite' registered 
    113 20:04: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 
    114 20:04:21: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 20:04:21: Parsing scripts for resource group Autodetect 
    116 20:04:21: Finished parsing scripts for resource group Autodetect 
    117 20:04:21: Parsing scripts for resource group Bootstrap 
    118 20:04:21: Parsing script OgreCore.material 
    119 20:04:21: Parsing script OgreProfiler.material 
    120 20:04:21: Parsing script Ogre.fontdef 
    121 20:04:21: Parsing script OgreDebugPanel.overlay 
    122 20:04: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. 
    123 20:04:21: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    124 20:04: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. 
    125 20:04:21: Font TrebuchetMSBoldusing texture size 512x512 
    126 20:04:21: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 20:04:21: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 20:04:21: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 20:04:21: Parsing script OgreLoadingPanel.overlay 
    130 20:04:21: Finished parsing scripts for resource group Bootstrap 
    131 20:04:21: Parsing scripts for resource group General 
    132 20:04:21: Parsing script GameTools.program 
    133 20:04:21: Parsing script atlascube.material 
    134 20:04:21: Parsing script Diffuse.material 
    135 20:04:23: An exception has been thrown! 
     109:22:23: Creating resource group General 
     209:22:23: Creating resource group Internal 
     309:22:23: Creating resource group Autodetect 
     409:22:23: Registering ResourceManager for type Material 
     509:22:23: Registering ResourceManager for type Mesh 
     609:22:23: Registering ResourceManager for type Skeleton 
     709:22:23: MovableObjectFactory for type 'ParticleSystem' registered. 
     809:22:23: Loading library OgrePlatform_d.dll 
     909:22:23: OverlayElementFactory for type Panel registered. 
     1009:22:23: OverlayElementFactory for type BorderPanel registered. 
     1109:22:23: OverlayElementFactory for type TextArea registered. 
     1209:22:23: Registering ResourceManager for type Font 
     1309:22:23: ArchiveFactory for archive type FileSystem registered. 
     1409:22:23: ArchiveFactory for archive type Zip registered. 
     1509:22:23: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1609:22:23: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
     1709:22:23: Registering ResourceManager for type HighLevelGpuProgram 
     1809:22:23: Registering ResourceManager for type Compositor 
     1909:22:23: MovableObjectFactory for type 'Entity' registered. 
     2009:22:23: MovableObjectFactory for type 'Light' registered. 
     2109:22:23: MovableObjectFactory for type 'BillboardSet' registered. 
     2209:22:23: MovableObjectFactory for type 'ManualObject' registered. 
     2309:22:23: MovableObjectFactory for type 'BillboardChain' registered. 
     2409:22:23: MovableObjectFactory for type 'RibbonTrail' registered. 
     2509:22:23: Loading library .\RenderSystem_Direct3D9 
     2609:22:23: D3D9 : Direct3D9 Rendering Subsystem created. 
     2709:22:23: D3D9: Driver Detection Starts 
     2809:22:23: D3D9: Driver Detection Ends 
     2909:22:23: Loading library .\Plugin_ParticleFX 
     3009:22:23: Particle Emitter Type 'Point' registered 
     3109:22:23: Particle Emitter Type 'Box' registered 
     3209:22:23: Particle Emitter Type 'Ellipsoid' registered 
     3309:22:23: Particle Emitter Type 'Cylinder' registered 
     3409:22:23: Particle Emitter Type 'Ring' registered 
     3509:22:23: Particle Emitter Type 'HollowEllipsoid' registered 
     3609:22:23: Particle Affector Type 'LinearForce' registered 
     3709:22:23: Particle Affector Type 'ColourFader' registered 
     3809:22:23: Particle Affector Type 'ColourFader2' registered 
     3909:22:23: Particle Affector Type 'ColourImage' registered 
     4009:22:23: Particle Affector Type 'ColourInterpolator' registered 
     4109:22:23: Particle Affector Type 'Scaler' registered 
     4209:22:23: Particle Affector Type 'Rotator' registered 
     4309:22:23: Particle Affector Type 'DirectionRandomiser' registered 
     4409:22:23: Particle Affector Type 'DeflectorPlane' registered 
     4509:22:23: Loading library .\Plugin_BSPSceneManager 
     4609:22:23: Registering ResourceManager for type BspLevel 
     4709:22:23: Loading library .\Plugin_OctreeSceneManager 
     4809:22:23: Loading library .\Plugin_CgProgramManager 
     4909:22:23: *-*-* OGRE Initialising 
     5009:22:23: *-*-* Version 1.2.0 (Dagon) 
     5109:22:23: Creating resource group Bootstrap 
     5209:22:23: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5309:22:23: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5409:22:23: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5509:22:23: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5609:22:23: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5709:22:23: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5809:22:23: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5909:22:23: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6009:22:23: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6109:22:23: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6209:22:23: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6309:22:23: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6409:22:23: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6509:22:23: D3D9 : RenderSystem Option: Anti aliasing = None 
     6609:22:23: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6709:22:23: D3D9 : RenderSystem Option: Full Screen = No 
     6809:22:23: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
     6909:22:23: D3D9 : RenderSystem Option: VSync = No 
     7009:22:23: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7109:22:25: D3D9 : Subsystem Initialising 
     7209:22:25: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7309:22:25: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7409:22:25: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7509:22:25: Registering ResourceManager for type Texture 
     7609:22:25: Registering ResourceManager for type GpuProgram 
     7709:22:25: RenderSystem capabilities 
     7809:22:25: ------------------------- 
     7909:22:25:  * Hardware generation of mipmaps: yes 
     8009:22:25:  * Texture blending: yes 
     8109:22:25:  * Anisotropic texture filtering: yes 
     8209:22:25:  * Dot product texture operation: yes 
     8309:22:25:  * Cube mapping: yes 
     8409:22:25:  * Hardware stencil buffer: yes 
     8509:22:25:    - Stencil depth: 8 
     8609:22:25:    - Two sided stencil support: yes 
     8709:22:25:    - Wrap stencil values: yes 
     8809:22:25:  * Hardware vertex / index buffers: yes 
     8909:22:25:  * Vertex programs: yes 
     9009:22:25:    - Max vertex program version: vs_3_0 
     9109:22:25:  * Fragment programs: yes 
     9209:22:25:    - Max fragment program version: ps_3_0 
     9309:22:25:  * Texture Compression: yes 
     9409:22:25:    - DXT: yes 
     9509:22:25:    - VTC: no 
     9609:22:25:  * Scissor Rectangle: yes 
     9709:22:25:  * Hardware Occlusion Query: yes 
     9809:22:25:  * User clip planes: yes 
     9909:22:25:  * VET_UBYTE4 vertex element type: yes 
     10009:22:25:  * Infinite far plane projection: yes 
     10109:22:25:  * Hardware render-to-texture: yes 
     10209:22:25:  * Floating point textures: yes 
     10309:22:25:  * Non-power-of-two textures: yes 
     10409:22:25:  * Volume textures: yes 
     10509:22:25:  * Multiple Render Targets: 4 
     10609:22:25:  * Max Point Size: 8192 
     10709:22:25: *************************************** 
     10809:22:25: *** D3D9 : Subsystem Initialised OK *** 
     10909:22:25: *************************************** 
     11009:22:25: ResourceBackgroundQueue - threading disabled 
     11109:22:25: Particle Renderer Type 'billboard' registered 
     11209:22:25: Particle Renderer Type 'sprite' registered 
     11309:22:25: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     11409:22:25: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11509:22:25: Parsing scripts for resource group Autodetect 
     11609:22:25: Finished parsing scripts for resource group Autodetect 
     11709:22:25: Parsing scripts for resource group Bootstrap 
     11809:22:25: Parsing script OgreCore.material 
     11909:22:25: Parsing script OgreProfiler.material 
     12009:22:25: Parsing script Ogre.fontdef 
     12109:22:25: Parsing script OgreDebugPanel.overlay 
     12209:22:25: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12309:22:25: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12409:22:25: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12509:22:25: Font TrebuchetMSBoldusing texture size 512x512 
     12609:22:25: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12709:22:25: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12809:22:25: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12909:22:25: Parsing script OgreLoadingPanel.overlay 
     13009:22:25: Finished parsing scripts for resource group Bootstrap 
     13109:22:25: Parsing scripts for resource group General 
     13209:22:25: Parsing script GameTools.program 
     13309:22:25: Parsing script atlascube.material 
     13409:22:25: Parsing script Diffuse.material 
     13509:22:27: An exception has been thrown! 
    136136 
    137137----------------------------------- 
     
    144144Line: 768 
    145145Stack unwinding: <<beginning of stack>> 
    146 20:04:23: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14609:22:27: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    147147 
    148148----------------------------------- 
     
    155155Line: 768 
    156156Stack unwinding: <<beginning of stack>> 
    157 20:04:23: An exception has been thrown! 
     15709:22:27: An exception has been thrown! 
    158158 
    159159----------------------------------- 
     
    166166Line: 768 
    167167Stack unwinding: <<beginning of stack>> 
    168 20:04:23: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     16809:22:27: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    169169 
    170170----------------------------------- 
     
    177177Line: 768 
    178178Stack unwinding: <<beginning of stack>> 
    179 20:04:23: Parsing script EnvMetals.material 
    180 20:04:23: An exception has been thrown! 
    181  
    182 ----------------------------------- 
    183 Details: 
    184 ----------------------------------- 
    185 Error #: 7 
    186 Function: GpuProgramParameters::getParamIndex 
    187 Description: Cannot find a parameter named lightPosition.  
    188 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    189 Line: 768 
    190 Stack unwinding: <<beginning of stack>> 
    191 20:04:23: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    192  
    193 ----------------------------------- 
    194 Details: 
    195 ----------------------------------- 
    196 Error #: 7 
    197 Function: GpuProgramParameters::getParamIndex 
    198 Description: Cannot find a parameter named lightPosition.  
    199 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    200 Line: 768 
    201 Stack unwinding: <<beginning of stack>> 
    202 20:04:23: An exception has been thrown! 
    203  
    204 ----------------------------------- 
    205 Details: 
    206 ----------------------------------- 
    207 Error #: 7 
    208 Function: GpuProgramParameters::getParamIndex 
    209 Description: Cannot find a parameter named lightPosition.  
    210 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    211 Line: 768 
    212 Stack unwinding: <<beginning of stack>> 
    213 20:04:23: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    214  
    215 ----------------------------------- 
    216 Details: 
    217 ----------------------------------- 
    218 Error #: 7 
    219 Function: GpuProgramParameters::getParamIndex 
    220 Description: Cannot find a parameter named lightPosition.  
    221 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    222 Line: 768 
    223 Stack unwinding: <<beginning of stack>> 
    224 20:04:23: An exception has been thrown! 
    225  
    226 ----------------------------------- 
    227 Details: 
    228 ----------------------------------- 
    229 Error #: 7 
    230 Function: GpuProgramParameters::getParamIndex 
    231 Description: Cannot find a parameter named lightPosition.  
    232 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    233 Line: 768 
    234 Stack unwinding: <<beginning of stack>> 
    235 20:04:23: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    236  
    237 ----------------------------------- 
    238 Details: 
    239 ----------------------------------- 
    240 Error #: 7 
    241 Function: GpuProgramParameters::getParamIndex 
    242 Description: Cannot find a parameter named lightPosition.  
    243 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    244 Line: 768 
    245 Stack unwinding: <<beginning of stack>> 
    246 20:04:23: An exception has been thrown! 
    247  
    248 ----------------------------------- 
    249 Details: 
    250 ----------------------------------- 
    251 Error #: 7 
    252 Function: GpuProgramParameters::getParamIndex 
    253 Description: Cannot find a parameter named lightPosition.  
    254 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    255 Line: 768 
    256 Stack unwinding: <<beginning of stack>> 
    257 20:04:23: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    258  
    259 ----------------------------------- 
    260 Details: 
    261 ----------------------------------- 
    262 Error #: 7 
    263 Function: GpuProgramParameters::getParamIndex 
    264 Description: Cannot find a parameter named lightPosition.  
    265 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    266 Line: 768 
    267 Stack unwinding: <<beginning of stack>> 
    268 20:04:23: Parsing script GameTools.material 
    269 20:04:23: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
    270 20:04:23: An exception has been thrown! 
     17909:22:27: Parsing script EnvMetals.material 
     18009:22:27: An exception has been thrown! 
     181 
     182----------------------------------- 
     183Details: 
     184----------------------------------- 
     185Error #: 7 
     186Function: GpuProgramParameters::getParamIndex 
     187Description: Cannot find a parameter named lightPosition.  
     188File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     189Line: 768 
     190Stack unwinding: <<beginning of stack>> 
     19109:22:27: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     192 
     193----------------------------------- 
     194Details: 
     195----------------------------------- 
     196Error #: 7 
     197Function: GpuProgramParameters::getParamIndex 
     198Description: Cannot find a parameter named lightPosition.  
     199File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     200Line: 768 
     201Stack unwinding: <<beginning of stack>> 
     20209:22:27: An exception has been thrown! 
     203 
     204----------------------------------- 
     205Details: 
     206----------------------------------- 
     207Error #: 7 
     208Function: GpuProgramParameters::getParamIndex 
     209Description: Cannot find a parameter named lightPosition.  
     210File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     211Line: 768 
     212Stack unwinding: <<beginning of stack>> 
     21309:22:27: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     214 
     215----------------------------------- 
     216Details: 
     217----------------------------------- 
     218Error #: 7 
     219Function: GpuProgramParameters::getParamIndex 
     220Description: Cannot find a parameter named lightPosition.  
     221File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     222Line: 768 
     223Stack unwinding: <<beginning of stack>> 
     22409:22:27: An exception has been thrown! 
     225 
     226----------------------------------- 
     227Details: 
     228----------------------------------- 
     229Error #: 7 
     230Function: GpuProgramParameters::getParamIndex 
     231Description: Cannot find a parameter named lightPosition.  
     232File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     233Line: 768 
     234Stack unwinding: <<beginning of stack>> 
     23509:22:27: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     236 
     237----------------------------------- 
     238Details: 
     239----------------------------------- 
     240Error #: 7 
     241Function: GpuProgramParameters::getParamIndex 
     242Description: Cannot find a parameter named lightPosition.  
     243File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     244Line: 768 
     245Stack unwinding: <<beginning of stack>> 
     24609:22:27: An exception has been thrown! 
     247 
     248----------------------------------- 
     249Details: 
     250----------------------------------- 
     251Error #: 7 
     252Function: GpuProgramParameters::getParamIndex 
     253Description: Cannot find a parameter named lightPosition.  
     254File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     255Line: 768 
     256Stack unwinding: <<beginning of stack>> 
     25709:22:27: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     258 
     259----------------------------------- 
     260Details: 
     261----------------------------------- 
     262Error #: 7 
     263Function: GpuProgramParameters::getParamIndex 
     264Description: Cannot find a parameter named lightPosition.  
     265File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     266Line: 768 
     267Stack unwinding: <<beginning of stack>> 
     26809:22:27: Parsing script GameTools.material 
     26909:22:27: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
     27009:22:27: An exception has been thrown! 
    271271 
    272272----------------------------------- 
     
    279279Line: 768 
    280280Stack unwinding: <<beginning of stack>> 
    281 20:04:23: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     28109:22:27: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    282282 
    283283----------------------------------- 
     
    290290Line: 768 
    291291Stack unwinding: <<beginning of stack>> 
    292 20:04:23: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
    293 20:04:23: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    294 20:04:23: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
    295 20:04:23: Parsing script GameTools_HPS.material 
    296 20:04:23: An exception has been thrown! 
    297  
    298 ----------------------------------- 
    299 Details: 
    300 ----------------------------------- 
    301 Error #: 7 
    302 Function: GpuProgramParameters::getParamIndex 
    303 Description: Cannot find a parameter named worldViewProj.  
    304 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    305 Line: 768 
    306 Stack unwinding: <<beginning of stack>> 
    307 20:04:23: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    308  
    309 ----------------------------------- 
    310 Details: 
    311 ----------------------------------- 
    312 Error #: 7 
    313 Function: GpuProgramParameters::getParamIndex 
    314 Description: Cannot find a parameter named worldViewProj.  
    315 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    316 Line: 768 
    317 Stack unwinding: <<beginning of stack>> 
    318 20:04:23: An exception has been thrown! 
    319  
    320 ----------------------------------- 
    321 Details: 
    322 ----------------------------------- 
    323 Error #: 7 
    324 Function: GpuProgramParameters::getParamIndex 
    325 Description: Cannot find a parameter named worldViewProj.  
    326 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    327 Line: 768 
    328 Stack unwinding: <<beginning of stack>> 
    329 20:04:23: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    330  
    331 ----------------------------------- 
    332 Details: 
    333 ----------------------------------- 
    334 Error #: 7 
    335 Function: GpuProgramParameters::getParamIndex 
    336 Description: Cannot find a parameter named worldViewProj.  
    337 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    338 Line: 768 
    339 Stack unwinding: <<beginning of stack>> 
    340 20:04:23: An exception has been thrown! 
     29209:22:27: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
     29309:22:27: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     29409:22:27: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
     29509:22:27: Parsing script GameTools_HPS.material 
     29609:22:27: An exception has been thrown! 
     297 
     298----------------------------------- 
     299Details: 
     300----------------------------------- 
     301Error #: 7 
     302Function: GpuProgramParameters::getParamIndex 
     303Description: Cannot find a parameter named worldViewProj.  
     304File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     305Line: 768 
     306Stack unwinding: <<beginning of stack>> 
     30709:22:27: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     308 
     309----------------------------------- 
     310Details: 
     311----------------------------------- 
     312Error #: 7 
     313Function: GpuProgramParameters::getParamIndex 
     314Description: Cannot find a parameter named worldViewProj.  
     315File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     316Line: 768 
     317Stack unwinding: <<beginning of stack>> 
     31809:22:27: An exception has been thrown! 
     319 
     320----------------------------------- 
     321Details: 
     322----------------------------------- 
     323Error #: 7 
     324Function: GpuProgramParameters::getParamIndex 
     325Description: Cannot find a parameter named worldViewProj.  
     326File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     327Line: 768 
     328Stack unwinding: <<beginning of stack>> 
     32909:22:27: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     330 
     331----------------------------------- 
     332Details: 
     333----------------------------------- 
     334Error #: 7 
     335Function: GpuProgramParameters::getParamIndex 
     336Description: Cannot find a parameter named worldViewProj.  
     337File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     338Line: 768 
     339Stack unwinding: <<beginning of stack>> 
     34009:22:27: An exception has been thrown! 
    341341 
    342342----------------------------------- 
     
    349349Line: 768 
    350350Stack unwinding: <<beginning of stack>> 
    351 20:04:23: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     35109:22:27: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    352352 
    353353----------------------------------- 
     
    360360Line: 768 
    361361Stack unwinding: <<beginning of stack>> 
    362 20:04:23: An exception has been thrown! 
    363  
    364 ----------------------------------- 
    365 Details: 
    366 ----------------------------------- 
    367 Error #: 7 
    368 Function: GpuProgramParameters::getParamIndex 
    369 Description: Cannot find a parameter named worldViewProj.  
    370 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    371 Line: 768 
    372 Stack unwinding: <<beginning of stack>> 
    373 20:04:23: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    374  
    375 ----------------------------------- 
    376 Details: 
    377 ----------------------------------- 
    378 Error #: 7 
    379 Function: GpuProgramParameters::getParamIndex 
    380 Description: Cannot find a parameter named worldViewProj.  
    381 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    382 Line: 768 
    383 Stack unwinding: <<beginning of stack>> 
    384 20:04:23: An exception has been thrown! 
     36209:22:27: An exception has been thrown! 
     363 
     364----------------------------------- 
     365Details: 
     366----------------------------------- 
     367Error #: 7 
     368Function: GpuProgramParameters::getParamIndex 
     369Description: Cannot find a parameter named worldViewProj.  
     370File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     371Line: 768 
     372Stack unwinding: <<beginning of stack>> 
     37309:22:27: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     374 
     375----------------------------------- 
     376Details: 
     377----------------------------------- 
     378Error #: 7 
     379Function: GpuProgramParameters::getParamIndex 
     380Description: Cannot find a parameter named worldViewProj.  
     381File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     382Line: 768 
     383Stack unwinding: <<beginning of stack>> 
     38409:22:27: An exception has been thrown! 
    385385 
    386386----------------------------------- 
     
    393393Line: 768 
    394394Stack unwinding: <<beginning of stack>> 
    395 20:04:23: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     39509:22:27: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    396396 
    397397----------------------------------- 
     
    404404Line: 768 
    405405Stack unwinding: <<beginning of stack>> 
    406 20:04:23: An exception has been thrown! 
     40609:22:27: An exception has been thrown! 
    407407 
    408408----------------------------------- 
     
    415415Line: 768 
    416416Stack unwinding: <<beginning of stack>> 
    417 20:04:23: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41709:22:27: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    418418 
    419419----------------------------------- 
     
    426426Line: 768 
    427427Stack unwinding: <<beginning of stack>> 
    428 20:04:23: An exception has been thrown! 
    429  
    430 ----------------------------------- 
    431 Details: 
    432 ----------------------------------- 
    433 Error #: 7 
    434 Function: GpuProgramParameters::getParamIndex 
    435 Description: Cannot find a parameter named worldViewProj.  
    436 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    437 Line: 768 
    438 Stack unwinding: <<beginning of stack>> 
    439 20:04:23: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    440  
    441 ----------------------------------- 
    442 Details: 
    443 ----------------------------------- 
    444 Error #: 7 
    445 Function: GpuProgramParameters::getParamIndex 
    446 Description: Cannot find a parameter named worldViewProj.  
    447 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    448 Line: 768 
    449 Stack unwinding: <<beginning of stack>> 
    450 20:04:23: Parsing script GlassHead.material 
    451 20:04:23: An exception has been thrown! 
     42809:22:27: An exception has been thrown! 
     429 
     430----------------------------------- 
     431Details: 
     432----------------------------------- 
     433Error #: 7 
     434Function: GpuProgramParameters::getParamIndex 
     435Description: Cannot find a parameter named worldViewProj.  
     436File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     437Line: 768 
     438Stack unwinding: <<beginning of stack>> 
     43909:22:27: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     440 
     441----------------------------------- 
     442Details: 
     443----------------------------------- 
     444Error #: 7 
     445Function: GpuProgramParameters::getParamIndex 
     446Description: Cannot find a parameter named worldViewProj.  
     447File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     448Line: 768 
     449Stack unwinding: <<beginning of stack>> 
     45009:22:27: Parsing script GlassHead.material 
     45109:22:27: An exception has been thrown! 
    452452 
    453453----------------------------------- 
     
    460460Line: 768 
    461461Stack unwinding: <<beginning of stack>> 
    462 20:04:23: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     46209:22:27: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    463463 
    464464----------------------------------- 
     
    471471Line: 768 
    472472Stack unwinding: <<beginning of stack>> 
    473 20:04:23: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    474 20:04:23: An exception has been thrown! 
    475  
    476 ----------------------------------- 
    477 Details: 
    478 ----------------------------------- 
    479 Error #: 7 
    480 Function: GpuProgramParameters::getParamIndex 
    481 Description: Cannot find a parameter named worldViewProj.  
    482 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    483 Line: 768 
    484 Stack unwinding: <<beginning of stack>> 
    485 20:04:23: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    486  
    487 ----------------------------------- 
    488 Details: 
    489 ----------------------------------- 
    490 Error #: 7 
    491 Function: GpuProgramParameters::getParamIndex 
    492 Description: Cannot find a parameter named worldViewProj.  
    493 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    494 Line: 768 
    495 Stack unwinding: <<beginning of stack>> 
    496 20:04:23: An exception has been thrown! 
     47309:22:27: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     47409:22:27: An exception has been thrown! 
     475 
     476----------------------------------- 
     477Details: 
     478----------------------------------- 
     479Error #: 7 
     480Function: GpuProgramParameters::getParamIndex 
     481Description: Cannot find a parameter named worldViewProj.  
     482File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     483Line: 768 
     484Stack unwinding: <<beginning of stack>> 
     48509:22:27: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     486 
     487----------------------------------- 
     488Details: 
     489----------------------------------- 
     490Error #: 7 
     491Function: GpuProgramParameters::getParamIndex 
     492Description: Cannot find a parameter named worldViewProj.  
     493File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     494Line: 768 
     495Stack unwinding: <<beginning of stack>> 
     49609:22:27: An exception has been thrown! 
    497497 
    498498----------------------------------- 
     
    505505Line: 768 
    506506Stack unwinding: <<beginning of stack>> 
    507 20:04:23: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     50709:22:27: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    508508 
    509509----------------------------------- 
     
    516516Line: 768 
    517517Stack unwinding: <<beginning of stack>> 
    518 20:04:24: Parsing script Glow.material 
    519 20:04:24: An exception has been thrown! 
     51809:22:27: An exception has been thrown! 
     519 
     520----------------------------------- 
     521Details: 
     522----------------------------------- 
     523Error #: 7 
     524Function: GpuProgramParameters::getParamIndex 
     525Description: Cannot find a parameter named resolution.  
     526File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     527Line: 768 
     528Stack unwinding: <<beginning of stack>> 
     52909:22:27: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     530 
     531----------------------------------- 
     532Details: 
     533----------------------------------- 
     534Error #: 7 
     535Function: GpuProgramParameters::getParamIndex 
     536Description: Cannot find a parameter named resolution.  
     537File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     538Line: 768 
     539Stack unwinding: <<beginning of stack>> 
     54009:22:28: Parsing script Glow.material 
     54109:22:28: An exception has been thrown! 
    520542 
    521543----------------------------------- 
     
    528550Line: 768 
    529551Stack unwinding: <<beginning of stack>> 
    530 20:04:24: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     55209:22:28: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    531553 
    532554----------------------------------- 
     
    539561Line: 768 
    540562Stack unwinding: <<beginning of stack>> 
    541 20:04:24: Parsing script hangar.material 
    542 20:04:24: Parsing script kupola.material 
    543 20:04:24: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    544 20:04:24: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    545 20:04:24: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    546 20:04:24: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    547 20:04:24: Parsing script Ogre.material 
    548 20:04:24: Parsing script Particles.material 
    549 20:04:24: An exception has been thrown! 
    550  
    551 ----------------------------------- 
    552 Details: 
    553 ----------------------------------- 
    554 Error #: 7 
    555 Function: GpuProgramParameters::getParamIndex 
    556 Description: Cannot find a parameter named worldViewProj.  
    557 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    558 Line: 768 
    559 Stack unwinding: <<beginning of stack>> 
    560 20:04:24: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    561  
    562 ----------------------------------- 
    563 Details: 
    564 ----------------------------------- 
    565 Error #: 7 
    566 Function: GpuProgramParameters::getParamIndex 
    567 Description: Cannot find a parameter named worldViewProj.  
    568 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    569 Line: 768 
    570 Stack unwinding: <<beginning of stack>> 
    571 20:04:24: An exception has been thrown! 
    572  
    573 ----------------------------------- 
    574 Details: 
    575 ----------------------------------- 
    576 Error #: 7 
    577 Function: GpuProgramParameters::getParamIndex 
    578 Description: Cannot find a parameter named worldViewProj.  
    579 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    580 Line: 768 
    581 Stack unwinding: <<beginning of stack>> 
    582 20:04:24: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    583  
    584 ----------------------------------- 
    585 Details: 
    586 ----------------------------------- 
    587 Error #: 7 
    588 Function: GpuProgramParameters::getParamIndex 
    589 Description: Cannot find a parameter named worldViewProj.  
    590 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    591 Line: 768 
    592 Stack unwinding: <<beginning of stack>> 
    593 20:04:24: Parsing script RaytraceDemo.material 
    594 20:04:24: Parsing script stairs.material 
    595 20:04:24: Parsing script X3D.material 
    596 20:04:24: Parsing script GameTools_Glow.compositor 
    597 20:04:24: Parsing script GameTools_ToneMap.compositor 
    598 20:04:24: Parsing script sample.fontdef 
    599 20:04:24: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    600 20:04:24: Parsing script GameTools.particle 
    601 20:04:24: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    602 20:04:24: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    603 20:04:24: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    604 20:04:24: Parsing script Compositor.overlay 
    605 20:04:24: Parsing script DP3.overlay 
    606 20:04:24: Parsing script Example-CubeMapping.overlay 
    607 20:04:24: Parsing script Example-DynTex.overlay 
    608 20:04:24: Parsing script Example-Water.overlay 
    609 20:04:24: Parsing script FullScreen.overlay 
    610 20:04:24: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    611 20:04:24: Parsing script Shadows.overlay 
    612 20:04:24: Finished parsing scripts for resource group General 
    613 20:04:24: Parsing scripts for resource group Internal 
    614 20:04:24: Finished parsing scripts for resource group Internal 
    615 20:04:24: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    616 20:04:24: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    617 20:04:24: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    618 20:04:25: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    619 20:04:25: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    620 20:04:25: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    621 20:04:25: Mesh: Loading sphere.mesh. 
    622 20:04:25: An exception has been thrown! 
    623  
    624 ----------------------------------- 
    625 Details: 
    626 ----------------------------------- 
    627 Error #: 8 
    628 Function: ResourceGroupManager::openResource 
    629 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    630 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
    631 Line: 583 
    632 Stack unwinding: <<beginning of stack>> 
    633 20:04:25: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    634  
    635 ----------------------------------- 
    636 Details: 
    637 ----------------------------------- 
    638 Error #: 8 
    639 Function: ResourceGroupManager::openResource 
    640 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    641 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
    642 Line: 583 
    643 Stack unwinding: <<beginning of stack>> 
    644 20:04:25: An exception has been thrown! 
    645  
    646 ----------------------------------- 
    647 Details: 
    648 ----------------------------------- 
    649 Error #: 8 
    650 Function: ResourceGroupManager::openResource 
    651 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    652 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
    653 Line: 583 
    654 Stack unwinding: <<beginning of stack>> 
    655 20:04:25: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    656  
    657 ----------------------------------- 
    658 Details: 
    659 ----------------------------------- 
    660 Error #: 8 
    661 Function: ResourceGroupManager::openResource 
    662 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    663 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
    664 Line: 583 
    665 Stack unwinding: <<beginning of stack>> 
    666 20:04:25: An exception has been thrown! 
    667  
    668 ----------------------------------- 
    669 Details: 
    670 ----------------------------------- 
    671 Error #: 8 
    672 Function: ResourceGroupManager::openResource 
    673 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    674 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
    675 Line: 583 
    676 Stack unwinding: <<beginning of stack>> 
    677 20:04:25: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    678  
    679 ----------------------------------- 
    680 Details: 
    681 ----------------------------------- 
    682 Error #: 8 
    683 Function: ResourceGroupManager::openResource 
    684 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    685 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
    686 Line: 583 
    687 Stack unwinding: <<beginning of stack>> 
    688 20:04:25: An exception has been thrown! 
    689  
    690 ----------------------------------- 
    691 Details: 
    692 ----------------------------------- 
    693 Error #: 8 
    694 Function: ResourceGroupManager::openResource 
    695 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    696 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
    697 Line: 583 
    698 Stack unwinding: <<beginning of stack>> 
    699 20:04:25: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    700  
    701 ----------------------------------- 
    702 Details: 
    703 ----------------------------------- 
    704 Error #: 8 
    705 Function: ResourceGroupManager::openResource 
    706 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    707 File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
    708 Line: 583 
    709 Stack unwinding: <<beginning of stack>> 
    710 20:04:25: Creating viewport on target 'rtt/27747296', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    711 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    712 20:04:25: Creating viewport on target 'rtt/27747840', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    713 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    714 20:04:25: Creating viewport on target 'rtt/27748704', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    715 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    716 20:04:25: Creating viewport on target 'rtt/27748768', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    717 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    718 20:04:25: Creating viewport on target 'rtt/27748832', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    719 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    720 20:04:25: Creating viewport on target 'rtt/27748896', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    721 20:04:25: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    722 20:04:25: WARNING: Texture instance 'sphere_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. 
    723 20:04:25: Creating viewport on target 'rtt/27749632', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    724 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    725 20:04:25: Creating viewport on target 'rtt/27749696', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    726 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    727 20:04:25: Creating viewport on target 'rtt/27749760', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    728 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    729 20:04:25: Creating viewport on target 'rtt/27749824', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    730 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    731 20:04:25: Creating viewport on target 'rtt/27749888', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    732 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    733 20:04:25: Creating viewport on target 'rtt/27749952', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    734 20:04:25: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    735 20:04:25: WARNING: Texture instance 'sphere_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. 
    736 20:04:25: Creating viewport on target 'rtt/2297344', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    737 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    738 20:04:25: Creating viewport on target 'rtt/2297408', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    739 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    740 20:04:25: Creating viewport on target 'rtt/2297472', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    741 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    742 20:04:25: Creating viewport on target 'rtt/2297536', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    743 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    744 20:04:25: Creating viewport on target 'rtt/2297600', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    745 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    746 20:04:25: Creating viewport on target 'rtt/2297664', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    747 20:04:25: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    748 20:04:25: Creating viewport on target 'rtt/2298080', rendering from camera 'sphere_SE_0_PHOTONMAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    749 20:04:25: Viewport for camera 'sphere_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 64 H: 64 
    750 20:04:25: sphere_SE_0_CAUSTICCUBEMAP map: sphere_SE_0_PHOTONMAP material: GameTools/CauTrisphere_SE_0_clone 
    751 20:04:25: Win32Input8: DirectInput Activation Starts 
    752 20:04:25: Win32Input8: Establishing keyboard input. 
    753 20:04:25: Win32Input8: Keyboard input established. 
    754 20:04:25: Win32Input8: Initializing mouse input in immediate mode. 
    755 20:04:25: Win32Input8: Mouse input in immediate mode initialized. 
    756 20:04:25: Win32Input8: DirectInput OK. 
    757 20:04:25: WARNING: Mesh instance 'FullScreenGrid' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    758 20:04:25: WARNING: Texture instance 'sphere_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. 
    759 20:04:25: WARNING: Texture instance 'sphere_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. 
    760 20:04:47: Unregistering ResourceManager for type BspLevel 
    761 20:04:47: Render Target 'rtt/2298080' Average FPS: 65.6686 Best FPS: 78.7637 Worst FPS: 41.5842 
    762 20:04:47: Render Target 'rtt/2297344' Average FPS: 11.0697 Best FPS: 12.9482 Worst FPS: 7.75946 
    763 20:04:47: Render Target 'rtt/2297408' Average FPS: 11.0651 Best FPS: 12.9096 Worst FPS: 7.62631 
    764 20:04:47: Render Target 'rtt/2297472' Average FPS: 11.0575 Best FPS: 12.9353 Worst FPS: 7.50469 
    765 20:04:47: Render Target 'rtt/2297536' Average FPS: 11.055 Best FPS: 12.9482 Worst FPS: 7.39372 
    766 20:04:47: Render Target 'rtt/2297600' Average FPS: 11.047 Best FPS: 12.9482 Worst FPS: 7.28597 
    767 20:04:47: Render Target 'rtt/2297664' Average FPS: 11.0789 Best FPS: 12.9225 Worst FPS: 6.89655 
    768 20:04:47: Render Target 'rtt/27749632' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    769 20:04:47: Render Target 'rtt/27749696' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    770 20:04:47: Render Target 'rtt/27749760' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    771 20:04:47: Render Target 'rtt/27749824' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    772 20:04:47: Render Target 'rtt/27749888' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    773 20:04:47: Render Target 'rtt/27749952' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    774 20:04:47: Render Target 'rtt/27747296' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    775 20:04:47: Render Target 'rtt/27747840' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    776 20:04:47: Render Target 'rtt/27748704' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    777 20:04:47: Render Target 'rtt/27748768' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    778 20:04:47: Render Target 'rtt/27748832' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    779 20:04:47: Render Target 'rtt/27748896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    780 20:04:47: *-*-* OGRE Shutdown 
    781 20:04:47: Unregistering ResourceManager for type Compositor 
    782 20:04:47: Unregistering ResourceManager for type Font 
    783 20:04:47: Unregistering ResourceManager for type Skeleton 
    784 20:04:47: Unregistering ResourceManager for type Mesh 
    785 20:04:47: Unregistering ResourceManager for type HighLevelGpuProgram 
    786 20:04:47: Unloading library .\Plugin_CgProgramManager 
    787 20:04:47: Unloading library .\Plugin_OctreeSceneManager 
    788 20:04:47: Unloading library .\Plugin_BSPSceneManager 
    789 20:04:47: Unloading library .\Plugin_ParticleFX 
    790 20:04:47: Render Target 'OGRE Render Window' Average FPS: 65.5915 Best FPS: 78.7637 Worst FPS: 41.958 
    791 20:04:47: D3D9 : Shutting down cleanly. 
    792 20:04:47: Unregistering ResourceManager for type Texture 
    793 20:04:47: Unregistering ResourceManager for type GpuProgram 
    794 20:04:47: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    795 20:04:47: Unloading library .\RenderSystem_Direct3D9 
    796 20:04:47: Unregistering ResourceManager for type Material 
    797 20:04:47: Unloading library OgrePlatform_d.dll 
     56309:22:28: Parsing script hangar.material 
     56409:22:28: Parsing script kupola.material 
     56509:22:28: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     56609:22:28: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     56709:22:28: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     56809:22:28: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     56909:22:28: Parsing script Ogre.material 
     57009:22:28: Parsing script Particles.material 
     57109:22:28: An exception has been thrown! 
     572 
     573----------------------------------- 
     574Details: 
     575----------------------------------- 
     576Error #: 7 
     577Function: GpuProgramParameters::getParamIndex 
     578Description: Cannot find a parameter named worldViewProj.  
     579File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     580Line: 768 
     581Stack unwinding: <<beginning of stack>> 
     58209:22:28: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     583 
     584----------------------------------- 
     585Details: 
     586----------------------------------- 
     587Error #: 7 
     588Function: GpuProgramParameters::getParamIndex 
     589Description: Cannot find a parameter named worldViewProj.  
     590File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     591Line: 768 
     592Stack unwinding: <<beginning of stack>> 
     59309:22:28: An exception has been thrown! 
     594 
     595----------------------------------- 
     596Details: 
     597----------------------------------- 
     598Error #: 7 
     599Function: GpuProgramParameters::getParamIndex 
     600Description: Cannot find a parameter named worldViewProj.  
     601File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     602Line: 768 
     603Stack unwinding: <<beginning of stack>> 
     60409:22:28: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     605 
     606----------------------------------- 
     607Details: 
     608----------------------------------- 
     609Error #: 7 
     610Function: GpuProgramParameters::getParamIndex 
     611Description: Cannot find a parameter named worldViewProj.  
     612File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     613Line: 768 
     614Stack unwinding: <<beginning of stack>> 
     61509:22:28: Parsing script RaytraceDemo.material 
     61609:22:28: Parsing script stairs.material 
     61709:22:28: Parsing script X3D.material 
     61809:22:28: Parsing script GameTools_Glow.compositor 
     61909:22:29: Parsing script GameTools_ToneMap.compositor 
     62009:22:29: Parsing script sample.fontdef 
     62109:22:29: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     62209:22:29: Parsing script GameTools.particle 
     62309:22:29: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     62409:22:29: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     62509:22:29: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     62609:22:29: Parsing script Compositor.overlay 
     62709:22:29: Parsing script DP3.overlay 
     62809:22:29: Parsing script Example-CubeMapping.overlay 
     62909:22:29: Parsing script Example-DynTex.overlay 
     63009:22:29: Parsing script Example-Water.overlay 
     63109:22:29: Parsing script FullScreen.overlay 
     63209:22:29: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     63309:22:29: Parsing script Shadows.overlay 
     63409:22:29: Finished parsing scripts for resource group General 
     63509:22:29: Parsing scripts for resource group Internal 
     63609:22:29: Finished parsing scripts for resource group Internal 
     63709:22:29: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     63809:22:29: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     63909:22:29: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64009:22:29: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64109:22:29: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64209:22:29: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64309:22:29: Win32Input8: DirectInput Activation Starts 
     64409:22:29: Win32Input8: Establishing keyboard input. 
     64509:22:29: Win32Input8: Keyboard input established. 
     64609:22:29: Win32Input8: Initializing mouse input in immediate mode. 
     64709:22:29: Win32Input8: Mouse input in immediate mode initialized. 
     64809:22:29: Win32Input8: DirectInput OK. 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log

    r1474 r1487  
    11 ----------------------------------------------------------------------------------------------------------------------------------  
    2 |                                          Memory leak report for:  09/21/2006 20:04:47                                            | 
     2|                                          Memory leak report for:  09/26/2006 09:14:54                                            | 
    33 ----------------------------------------------------------------------------------------------------------------------------------  
    44 
    55 
    6 236 memory leaks found: 
     6341 memory leaks found: 
    77 
    88Alloc.   Addr       Size       Addr       Size                        BreakOn BreakOn               
    99Number Reported   Reported    Actual     Actual     Unused    Method  Dealloc Realloc Allocated by  
    1010------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------  
    11 019839 0x00C9DC80 0x0000000C 0x00C9DC70 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    12 019872 0x00CD5B98 0x00000030 0x00CD5B88 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    13 019874 0x00CD5C18 0x0000004C 0x00CD5C08 0x0000006C 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
    14 019875 0x00CD5CB0 0x00000030 0x00CD5CA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    15 019876 0x00CD5D30 0x00000030 0x00CD5D20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    16 019877 0x00CD5DB0 0x00000030 0x00CD5DA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    17 019878 0x00CD5E30 0x00000030 0x00CD5E20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    18 019879 0x00CD5EB0 0x00000030 0x00CD5EA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    19 019880 0x00CD5F30 0x00000030 0x00CD5F20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    20 019881 0x00CD5FB0 0x00000030 0x00CD5FA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    21 019882 0x00CD6030 0x00000030 0x00CD6020 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    22 019883 0x00CD60B0 0x00000030 0x00CD60A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    23 019884 0x00CD6130 0x0000000C 0x00CD6120 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    24 019885 0x00CD6188 0x0000007C 0x00CD6178 0x0000009C 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
    25 019886 0x00CD6250 0x00000030 0x00CD6240 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    26 019887 0x00CD62D0 0x00000030 0x00CD62C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    27 019888 0x00CD6350 0x00000030 0x00CD6340 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    28 019889 0x00CD63D0 0x00000030 0x00CD63C0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    29 019890 0x00CD6450 0x00000030 0x00CD6440 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    30 019865 0x00CD6680 0x00000030 0x00CD6670 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    31 019866 0x00CD6700 0x00000030 0x00CD66F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    32 019867 0x00CD6780 0x00000030 0x00CD6770 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    33 019868 0x00CD6800 0x00000030 0x00CD67F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    34 019869 0x00CD6880 0x00000030 0x00CD6870 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    35 019870 0x00CD6900 0x00000030 0x00CD68F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    36 019871 0x00CD6980 0x00000030 0x00CD6970 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    37 019838 0x00CD6AD0 0x00000140 0x00CD6AC0 0x00000160 0x00000000 new         N       N    ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 
    38 019854 0x00CD6C60 0x00000048 0x00CD6C50 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 
    39 019855 0x00CD6CF8 0x00000030 0x00CD6CE8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    40 019858 0x00CD6E48 0x00000030 0x00CD6E38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    41 019859 0x00CD6EC8 0x00000030 0x00CD6EB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    42 019860 0x00CD6F48 0x00000030 0x00CD6F38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    43 019861 0x00CD6FC8 0x00000030 0x00CD6FB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    44 019862 0x00CD7048 0x00000030 0x00CD7038 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    45 019864 0x00CD70C8 0x00000048 0x00CD70B8 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 
    46 019873 0x00CD7160 0x0000000C 0x00CD7150 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    47 019843 0x00CD7278 0x00000018 0x00CD7268 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    48 019863 0x00CD7600 0x0000000C 0x00CD75F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    49 019845 0x00CD7770 0x00000018 0x00CD7760 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    50 019847 0x00CD77D8 0x00000018 0x00CD77C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    51 019844 0x00CD7F88 0x00000030 0x00CD7F78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    52 019841 0x00CF0E58 0x0000000C 0x00CF0E48 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    53 019856 0x00D0B300 0x00000030 0x00D0B2F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    54 019857 0x00D0B380 0x00000030 0x00D0B370 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    55 006776 0x00D1DDF8 0x00000028 0x00D1DDE8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    56 006618 0x00D1EE50 0x00000048 0x00D1EE40 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    57 006612 0x00D1F4E8 0x00000028 0x00D1F4D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    58 006613 0x00D1F560 0x00000048 0x00D1F550 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    59 006622 0x00D1F698 0x00000048 0x00D1F688 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    60 006626 0x00D1F730 0x00000048 0x00D1F720 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    61 006630 0x00D1F7C8 0x00000048 0x00D1F7B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    62 006777 0x00D21320 0x00000048 0x00D21310 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    63 006782 0x00D213B8 0x00000048 0x00D213A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    64 006786 0x00D21450 0x00000048 0x00D21440 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    65 006790 0x00D214E8 0x00000048 0x00D214D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    66 006795 0x00D21580 0x00000048 0x00D21570 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    67 006800 0x00D216F8 0x00000048 0x00D216E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    68 006804 0x00D21790 0x00000048 0x00D21780 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    69 006808 0x00D21828 0x00000048 0x00D21818 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    70 006956 0x00D22628 0x00000028 0x00D22618 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    71 006957 0x00D226A0 0x00000048 0x00D22690 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    72 006962 0x00D22788 0x00000048 0x00D22778 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    73 006966 0x00D22820 0x00000048 0x00D22810 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    74 006970 0x00D228B8 0x00000048 0x00D228A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    75 006974 0x00D22950 0x00000028 0x00D22940 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    76 006975 0x00D229C8 0x00000048 0x00D229B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    77 006980 0x00D22AB8 0x00000048 0x00D22AA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    78 006984 0x00D22B50 0x00000048 0x00D22B40 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    79 006988 0x00D22BE8 0x00000048 0x00D22BD8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    80 007128 0x00D22FA0 0x00000028 0x00D22F90 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    81 007146 0x00D23E88 0x00000028 0x00D23E78 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    82 007129 0x00D24760 0x00000048 0x00D24750 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    83 007134 0x00D247F8 0x00000048 0x00D247E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    84 007138 0x00D24890 0x00000048 0x00D24880 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    85 007142 0x00D24928 0x00000048 0x00D24918 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    86 007147 0x00D249C0 0x00000048 0x00D249B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    87 007152 0x00D24AB0 0x00000048 0x00D24AA0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    88 007156 0x00D24B48 0x00000048 0x00D24B38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    89 007160 0x00D24BE0 0x00000048 0x00D24BD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    90 019840 0x00D27990 0x00000018 0x00D27980 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    91 019850 0x00D28120 0x00000018 0x00D28110 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    92 019851 0x00D28188 0x00000018 0x00D28178 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    93 019919 0x00D28EA0 0x000000B4 0x00D28E90 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
    94 019920 0x00D28FA0 0x00000030 0x00D28F90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    95 019921 0x00D29020 0x00000030 0x00D29010 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    96 019922 0x00D290A0 0x00000030 0x00D29090 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    97 019923 0x00D29120 0x00000030 0x00D29110 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    98 019924 0x00D291A0 0x00000030 0x00D29190 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    99 019925 0x00D29220 0x00000030 0x00D29210 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    100 019926 0x00D292A0 0x00000030 0x00D29290 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    101 019927 0x00D29320 0x00000030 0x00D29310 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    102 019928 0x00D293A0 0x00000030 0x00D29390 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    103 019929 0x00D29420 0x00000030 0x00D29410 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    104 019930 0x00D294A0 0x00000030 0x00D29490 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    105 019932 0x00D29520 0x00000080 0x00D29510 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
    106 019933 0x00D295F0 0x00000030 0x00D295E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    107 019934 0x00D29670 0x00000030 0x00D29660 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    108 019935 0x00D296F0 0x00000030 0x00D296E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    109 019936 0x00D29770 0x00000030 0x00D29760 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    110 019937 0x00D297F0 0x00000030 0x00D297E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    111 019938 0x00D29870 0x00000030 0x00D29860 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    112 019939 0x00D29940 0x00000030 0x00D29930 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    113 019940 0x00D29A10 0x00000030 0x00D29A00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    114 019941 0x00D29A90 0x00000030 0x00D29A80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    115 019942 0x00D29B10 0x00000030 0x00D29B00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    116 019943 0x00D29B90 0x00000030 0x00D29B80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    117 019944 0x00D29C60 0x0000000C 0x00D29C50 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    118 006794 0x00D2FFB0 0x00000028 0x00D2FFA0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    119 007300 0x00D3E598 0x00000028 0x00D3E588 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    120 007301 0x00D3E610 0x00000048 0x00D3E600 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    121 007306 0x00D3E6F8 0x00000048 0x00D3E6E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    122 007310 0x00D3E790 0x00000048 0x00D3E780 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    123 007314 0x00D3E828 0x00000048 0x00D3E818 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    124 007318 0x00D3E8C0 0x00000028 0x00D3E8B0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    125 007319 0x00D3E938 0x00000048 0x00D3E928 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    126 007324 0x00D3EA28 0x00000048 0x00D3EA18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    127 007328 0x00D3EAC0 0x00000048 0x00D3EAB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    128 007332 0x00D3EB58 0x00000048 0x00D3EB48 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    129 007730 0x00D43860 0x00000048 0x00D43850 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    130 007724 0x00D43EA8 0x00000028 0x00D43E98 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    131 007725 0x00D43F20 0x00000048 0x00D43F10 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    132 008567 0x00D62CC0 0x00000028 0x00D62CB0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    133 008568 0x00D62DD0 0x00000048 0x00D62DC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    134 008573 0x00D62EB8 0x00000048 0x00D62EA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    135 008577 0x00D62FA0 0x00000048 0x00D62F90 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    136 008581 0x00D63038 0x00000048 0x00D63028 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    137 008753 0x00D64778 0x00000048 0x00D64768 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    138 008757 0x00D64860 0x00000048 0x00D64850 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    139 008761 0x00D648F8 0x00000048 0x00D648E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    140 008765 0x00D64990 0x00000048 0x00D64980 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    141 008769 0x00D64A78 0x00000028 0x00D64A68 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    142 008770 0x00D64AF0 0x00000048 0x00D64AE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    143 008775 0x00D64BE0 0x00000048 0x00D64BD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    144 008779 0x00D64C78 0x00000028 0x00D64C68 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    145 008780 0x00D64CF0 0x00000048 0x00D64CE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    146 008785 0x00D64DE0 0x00000048 0x00D64DD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    147 008789 0x00D64E78 0x00000048 0x00D64E68 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    148 008747 0x00D65AC0 0x00000028 0x00D65AB0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    149 008748 0x00D65B90 0x00000048 0x00D65B80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    150 009592 0x01BE26A8 0x00000028 0x01BE2698 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    151 009620 0x01BE2720 0x00000028 0x01BE2710 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    152 009593 0x01BF1480 0x00000048 0x01BF1470 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    153 009598 0x01BF1518 0x00000048 0x01BF1508 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    154 009602 0x01BF15B0 0x00000048 0x01BF15A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    155 009606 0x01BF1648 0x00000028 0x01BF1638 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    156 009607 0x01BF16C0 0x00000048 0x01BF16B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    157 009612 0x01BF17B0 0x00000048 0x01BF17A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    158 009616 0x01BF1848 0x00000048 0x01BF1838 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    159 009621 0x01BF18E0 0x00000048 0x01BF18D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    160 009626 0x01BF19D0 0x00000048 0x01BF19C0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    161 009630 0x01BF1B08 0x00000048 0x01BF1AF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    162 009634 0x01BF1BF0 0x00000048 0x01BF1BE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    163 010597 0x01BFBFF8 0x00000048 0x01BFBFE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    164 010752 0x01BFC380 0x00000048 0x01BFC370 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    165 010522 0x01C14718 0x00000028 0x01C14708 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    166 010523 0x01C14790 0x00000048 0x01C14780 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    167 010591 0x01C14F28 0x00000028 0x01C14F18 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    168 010592 0x01C14FA0 0x00000048 0x01C14F90 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    169 010746 0x01C17340 0x00000028 0x01C17330 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    170 010747 0x01C173B8 0x00000048 0x01C173A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    171 011616 0x01C2E280 0x00000028 0x01C2E270 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    172 011617 0x01C2E390 0x00000048 0x01C2E380 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    173 011622 0x01C2E478 0x00000048 0x01C2E468 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    174 011626 0x01C2E560 0x00000048 0x01C2E550 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    175 019842 0x01C85240 0x00000018 0x01C85230 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    176 019891 0x01C86038 0x00000030 0x01C86028 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    177 019892 0x01C860B8 0x00000030 0x01C860A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    178 019893 0x01C86138 0x00000030 0x01C86128 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    179 019894 0x01C861B8 0x00000030 0x01C861A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    180 019895 0x01C86238 0x00000030 0x01C86228 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    181 019896 0x01C862B8 0x00000030 0x01C862A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    182 019897 0x01C86338 0x00000030 0x01C86328 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    183 019898 0x01C863B8 0x0000000C 0x01C863A8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    184 019899 0x01C86410 0x00000068 0x01C86400 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
    185 019900 0x01C864C8 0x00000030 0x01C864B8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    186 019901 0x01C86548 0x00000030 0x01C86538 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    187 019902 0x01C86618 0x00000030 0x01C86608 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    188 019903 0x01C866E8 0x00000030 0x01C866D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    189 019904 0x01C867B8 0x0000000C 0x01C867A8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    190 019905 0x01C86810 0x00000068 0x01C86800 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
    191 019906 0x01C868C8 0x00000030 0x01C868B8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    192 019907 0x01C86948 0x00000030 0x01C86938 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    193 019908 0x01C86A18 0x00000030 0x01C86A08 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    194 019909 0x01C86AE8 0x00000030 0x01C86AD8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    195 019910 0x01C86BB8 0x0000000C 0x01C86BA8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    196 019911 0x01C86C10 0x00000030 0x01C86C00 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
    197 019912 0x01C86C90 0x00000030 0x01C86C80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    198 019913 0x01C86D10 0x00000030 0x01C86D00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    199 019914 0x01C86D90 0x0000000C 0x01C86D80 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    200 019915 0x01C86DE8 0x00000030 0x01C86DD8 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
    201 019916 0x01C86E68 0x00000030 0x01C86E58 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    202 019917 0x01C86EE8 0x00000030 0x01C86ED8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    203 019918 0x01C86F68 0x0000000C 0x01C86F58 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    204 019931 0x01C86FC0 0x0000000C 0x01C86FB0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    205 019846 0x01C968D8 0x00000008 0x01C968C8 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
    206 019852 0x01C96988 0x00000018 0x01C96978 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    207 019853 0x01C969F0 0x00000018 0x01C969E0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    208 019848 0x01C96AE8 0x00000018 0x01C96AD8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    209 019849 0x01C96B50 0x00000018 0x01C96B40 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    210 214662 0x01CA3EC0 0x00000004 0x01CA3EB0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    211 020737 0x01CD5CE8 0x000000C0 0x01CD5CD8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    212 020749 0x01CD6558 0x0000001C 0x01CD6548 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    213 020750 0x01CD65C0 0x000000C4 0x01CD65B0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    214 020751 0x01CD66D0 0x00000018 0x01CD66C0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    215 020752 0x01CD6738 0x00000018 0x01CD6728 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    216 020753 0x01CD67A0 0x0000000C 0x01CD6790 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    217 020754 0x01CD67F8 0x00000004 0x01CD67E8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    218 020755 0x01CD6848 0x00000018 0x01CD6838 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    219 020759 0x01CD6950 0x00000084 0x01CD6940 0x000000A4 0x00000000 new         N       N    ogrecausticrecieverrendertechnique.cpp(166) OgreCausticRecieverRenderTechniqueFacto 
    220 021074 0x01CD6A20 0x0000001C 0x01CD6A10 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    221 021043 0x01CE83A8 0x00000034 0x01CE8398 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    222 021079 0x01CE8A50 0x00000004 0x01CE8A40 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    223 021071 0x01CE8B70 0x00000004 0x01CE8B60 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    224 021072 0x01CE9198 0x000000C0 0x01CE9188 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    225 021075 0x01CE92A8 0x000000C4 0x01CE9298 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    226 021076 0x01CE93B8 0x00000018 0x01CE93A8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    227 021077 0x01CE9420 0x00000018 0x01CE9410 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    228 021078 0x01CE9488 0x0000000C 0x01CE9478 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    229 021080 0x01CE94E0 0x00000018 0x01CE94D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    230 021088 0x01CE9548 0x0000004C 0x01CE9538 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
    231 021089 0x01CE95E0 0x0000008C 0x01CE95D0 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
    232 021090 0x01CE9758 0x00000030 0x01CE9748 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    233 021210 0x01CF77D8 0x00000018 0x01CF77C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    234 021218 0x01CF7840 0x0000004C 0x01CF7830 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    235 021219 0x01CF78D8 0x0000008C 0x01CF78C8 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
    236 021220 0x01CF79B0 0x00000030 0x01CF79A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    237 021532 0x01CFC588 0x0000000C 0x01CFC578 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    238 021339 0x01CFDC50 0x00000018 0x01CFDC40 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    239 021345 0x01CFDCB8 0x00000084 0x01CFDCA8 0x000000A4 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(252) OgreCausticCasterRenderTechniqueFactory 
    240 021385 0x01CFF2E8 0x000000A8 0x01CFF2D8 0x000000C8 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(102) OgreCausticCasterRenderTechnique::creat 
    241 021386 0x01CFF4E0 0x00000030 0x01CFF4D0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    242 021504 0x01D0D580 0x00000018 0x01D0D570 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    243 021505 0x01D0D5E8 0x000000A4 0x01D0D5D8 0x000000C4 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(90) OgreCausticCasterRenderTechnique::creat 
    244 021506 0x01D0D6D8 0x00000030 0x01D0D6C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    245 021530 0x01D0EA60 0x00000018 0x01D0EA50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    246 214615 0x01D114C0 0x00000034 0x01D114B0 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     11023912 0x00CE7C78 0x00000018 0x00CE7C68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     12023918 0x00CE8C10 0x00000018 0x00CE8C00 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     13023890 0x00CF6B38 0x00000018 0x00CF6B28 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     14023892 0x00D28B48 0x00000018 0x00D28B38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     15006776 0x00D2B370 0x00000028 0x00D2B360 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     16006622 0x00D2B6E0 0x00000048 0x00D2B6D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     17006626 0x00D2B788 0x00000048 0x00D2B778 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     18006630 0x00D2B830 0x00000048 0x00D2B820 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     19006794 0x00D2CDC0 0x00000028 0x00D2CDB0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     20006612 0x00D2E390 0x00000028 0x00D2E380 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     21006618 0x00D2EE08 0x00000048 0x00D2EDF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     22006613 0x00D2EF00 0x00000048 0x00D2EEF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     23007128 0x00D2F020 0x00000028 0x00D2F010 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     24006956 0x00D2F928 0x00000028 0x00D2F918 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     25006957 0x00D2F9B0 0x00000048 0x00D2F9A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     26006962 0x00D2FAB8 0x00000048 0x00D2FAA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     27006966 0x00D2FB60 0x00000048 0x00D2FB50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     28006970 0x00D2FC08 0x00000048 0x00D2FBF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     29006974 0x00D2FCB0 0x00000028 0x00D2FCA0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     30006975 0x00D2FD38 0x00000048 0x00D2FD28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     31006980 0x00D2FE48 0x00000048 0x00D2FE38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     32006984 0x00D2FEF0 0x00000048 0x00D2FEE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     33006988 0x00D2FF98 0x00000048 0x00D2FF88 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     34006777 0x00D41670 0x00000048 0x00D41660 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     35006782 0x00D41718 0x00000048 0x00D41708 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     36006786 0x00D417C0 0x00000048 0x00D417B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     37006790 0x00D41868 0x00000048 0x00D41858 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     38006795 0x00D41910 0x00000048 0x00D41900 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     39006800 0x00D419B8 0x00000048 0x00D419A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     40006804 0x00D41A60 0x00000048 0x00D41A50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     41006808 0x00D41B08 0x00000048 0x00D41AF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     42007129 0x00D42C38 0x00000048 0x00D42C28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     43007134 0x00D42CE0 0x00000048 0x00D42CD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     44007138 0x00D42D88 0x00000048 0x00D42D78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     45007142 0x00D42E30 0x00000048 0x00D42E20 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     46007146 0x00D42ED8 0x00000028 0x00D42EC8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     47007147 0x00D42F60 0x00000048 0x00D42F50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     48007152 0x00D43070 0x00000048 0x00D43060 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     49007156 0x00D43118 0x00000048 0x00D43108 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     50007160 0x00D431C0 0x00000048 0x00D431B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     51007300 0x00D4B218 0x00000028 0x00D4B208 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     52007301 0x00D4B2A0 0x00000048 0x00D4B290 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     53007306 0x00D4B3A8 0x00000048 0x00D4B398 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     54007310 0x00D4B450 0x00000048 0x00D4B440 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     55007314 0x00D4B4F8 0x00000048 0x00D4B4E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     56007318 0x00D4B5A0 0x00000028 0x00D4B590 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     57007319 0x00D4B628 0x00000048 0x00D4B618 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     58007324 0x00D4B738 0x00000048 0x00D4B728 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     59007328 0x00D4B7E0 0x00000048 0x00D4B7D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     60007332 0x00D4B888 0x00000048 0x00D4B878 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     61023891 0x00D4D4B0 0x00000018 0x00D4D4A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     62023899 0x00D4E7E0 0x00000018 0x00D4E7D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     63023901 0x00D4F6A0 0x00000018 0x00D4F690 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     64007730 0x00D50150 0x00000048 0x00D50140 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     65007724 0x00D51590 0x00000028 0x00D51580 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     66007725 0x00D51618 0x00000048 0x00D51608 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     67023900 0x00D51918 0x00000018 0x00D51908 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     68023902 0x00D5DFB0 0x00000018 0x00D5DFA0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     69023917 0x00D5FF58 0x000000C4 0x00D5FF48 0x000000E4 0x00000000 new         N       N    ogresharedruns.cpp(147) OgreSharedRuns::createInstance 
     70023910 0x00D67570 0x00000018 0x00D67560 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     71023909 0x00D69B08 0x00000018 0x00D69AF8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     72008567 0x00D6A3E8 0x00000028 0x00D6A3D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     73008568 0x00D6A518 0x00000048 0x00D6A508 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     74008573 0x00D6A620 0x00000048 0x00D6A610 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     75008577 0x00D6A728 0x00000048 0x00D6A718 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     76008581 0x00D6A7D0 0x00000048 0x00D6A7C0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     77008747 0x00D6B8C8 0x00000028 0x00D6B8B8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     78008748 0x00D6C068 0x00000048 0x00D6C058 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     79008753 0x00D6CC88 0x00000048 0x00D6CC78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     80008757 0x00D6CD90 0x00000048 0x00D6CD80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     81008761 0x00D6CE38 0x00000048 0x00D6CE28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     82008765 0x00D6CEE0 0x00000048 0x00D6CED0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     83008769 0x00D6CFE8 0x00000028 0x00D6CFD8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     84008770 0x00D6D070 0x00000048 0x00D6D060 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     85008775 0x00D6D180 0x00000048 0x00D6D170 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     86008779 0x00D6D228 0x00000028 0x00D6D218 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     87008780 0x00D6D2B0 0x00000048 0x00D6D2A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     88008785 0x00D6D3C0 0x00000048 0x00D6D3B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     89008789 0x00D6D468 0x00000048 0x00D6D458 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     90023889 0x00D6EAE0 0x00000018 0x00D6EAD0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     91023911 0x01BECAD8 0x00000018 0x01BECAC8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     92047747 0x01BF2778 0x00000070 0x01BF2768 0x00000090 0x00000000 new         N       N    ??(0) ?? 
     93009572 0x01BF3650 0x00000028 0x01BF3640 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     94009573 0x01BFF018 0x00000048 0x01BFF008 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     95009582 0x01BFF0C0 0x00000048 0x01BFF0B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     96009586 0x01BFF168 0x00000028 0x01BFF158 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     97009592 0x01BFF1F0 0x00000048 0x01BFF1E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     98009587 0x01BFF310 0x00000048 0x01BFF300 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     99009600 0x01BFF3B8 0x00000028 0x01BFF3A8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     100009606 0x01BFF440 0x00000048 0x01BFF430 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     101009596 0x01BFF4E8 0x00000048 0x01BFF4D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     102009601 0x01BFF590 0x00000048 0x01BFF580 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     103009610 0x01BFF6D0 0x00000048 0x01BFF6C0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     104009614 0x01BFF838 0x00000048 0x01BFF828 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     105009618 0x01BFF940 0x00000048 0x01BFF930 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     106009622 0x01BFFA48 0x00000048 0x01BFFA38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     107009578 0x01C013E0 0x00000048 0x01C013D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     108010740 0x01C035A0 0x00000048 0x01C03590 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     109023908 0x01C03648 0x000000C4 0x01C03638 0x000000E4 0x00000000 new         N       N    ogresharedruns.cpp(147) OgreSharedRuns::createInstance 
     110023919 0x01C03768 0x00000018 0x01C03758 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     111010734 0x01C03B58 0x00000028 0x01C03B48 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     112010735 0x01C03BE0 0x00000048 0x01C03BD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     113023888 0x01C1EEF0 0x000000C4 0x01C1EEE0 0x000000E4 0x00000000 new         N       N    ogresharedruns.cpp(147) OgreSharedRuns::createInstance 
     114010510 0x01C27970 0x00000028 0x01C27960 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     115010511 0x01C279F8 0x00000048 0x01C279E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     116010585 0x01C27D78 0x00000048 0x01C27D68 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     117010579 0x01C298F0 0x00000028 0x01C298E0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     118010580 0x01C29978 0x00000048 0x01C29968 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     119023921 0x01C382D8 0x00000018 0x01C382C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     120011604 0x01C3D4E0 0x00000028 0x01C3D4D0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     121011605 0x01C3D568 0x00000048 0x01C3D558 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     122011610 0x01C3D6D0 0x00000048 0x01C3D6C0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     123011614 0x01C3D7D8 0x00000048 0x01C3D7C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     124023898 0x01C40DE8 0x000000C4 0x01C40DD8 0x000000E4 0x00000000 new         N       N    ogresharedruns.cpp(147) OgreSharedRuns::createInstance 
     125019951 0x01CA0B68 0x00000140 0x01CA0B58 0x00000160 0x00000000 new         N       N    ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 
     126019952 0x01CA0D08 0x0000000C 0x01CA0CF8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     127019953 0x01CA0D70 0x00000018 0x01CA0D60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     128019954 0x01CA0DE8 0x0000000C 0x01CA0DD8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     129019955 0x01CA0E50 0x00000018 0x01CA0E40 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     130019956 0x01CA0EC8 0x00000018 0x01CA0EB8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     131019957 0x01CA0F40 0x00000030 0x01CA0F30 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     132019958 0x01CA0FD0 0x00000018 0x01CA0FC0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     133019959 0x01CA1048 0x00000008 0x01CA1038 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
     134019960 0x01CA10B0 0x00000018 0x01CA10A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     135019961 0x01CA1128 0x00000018 0x01CA1118 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     136019962 0x01CA11A0 0x00000018 0x01CA1190 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     137019963 0x01CA1218 0x00000018 0x01CA1208 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     138019964 0x01CA1290 0x00000018 0x01CA1280 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     139019965 0x01CA1308 0x00000018 0x01CA12F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     140019966 0x01CA1380 0x00000018 0x01CA1370 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     141019967 0x01CA13F8 0x00000018 0x01CA13E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     142019968 0x01CA1470 0x00000018 0x01CA1460 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     143019969 0x01CA14E8 0x00000018 0x01CA14D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     144019970 0x01CA1560 0x00000018 0x01CA1550 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     145019971 0x01CA15D8 0x00000048 0x01CA15C8 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 
     146019972 0x01CA1680 0x00000030 0x01CA1670 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     147019973 0x01CA1710 0x00000030 0x01CA1700 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     148019974 0x01CA17A0 0x00000030 0x01CA1790 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     149019975 0x01CA1830 0x00000030 0x01CA1820 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     150019976 0x01CA18C0 0x00000030 0x01CA18B0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     151019977 0x01CA1950 0x00000030 0x01CA1940 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     152019978 0x01CA19E0 0x00000030 0x01CA19D0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     153019979 0x01CA1A70 0x00000030 0x01CA1A60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     154019980 0x01CA1B00 0x0000000C 0x01CA1AF0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     155019981 0x01CA1B68 0x00000048 0x01CA1B58 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 
     156019982 0x01CA1C10 0x00000030 0x01CA1C00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     157019983 0x01CA1CA0 0x00000030 0x01CA1C90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     158019984 0x01CA1D30 0x00000030 0x01CA1D20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     159019985 0x01CA1DC0 0x00000030 0x01CA1DB0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     160019986 0x01CA1E50 0x00000030 0x01CA1E40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     161019987 0x01CA1EE0 0x00000030 0x01CA1ED0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     162019988 0x01CA1F70 0x00000030 0x01CA1F60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     163019989 0x01CA2000 0x00000030 0x01CA1FF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     164019990 0x01CA2090 0x0000000C 0x01CA2080 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     165019991 0x01CA20F8 0x0000004C 0x01CA20E8 0x0000006C 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
     166019992 0x01CA21A0 0x00000030 0x01CA2190 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     167019993 0x01CA2290 0x00000030 0x01CA2280 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     168019994 0x01CA2320 0x00000030 0x01CA2310 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     169019995 0x01CA23B0 0x00000030 0x01CA23A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     170019997 0x01CA2440 0x00000030 0x01CA2430 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     171019996 0x01CA2500 0x00000030 0x01CA24F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     172019998 0x01CA25F0 0x00000030 0x01CA25E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     173019999 0x01CA2680 0x00000030 0x01CA2670 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     174020000 0x01CA2710 0x00000030 0x01CA2700 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     175020001 0x01CA27A0 0x0000000C 0x01CA2790 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     176020002 0x01CA2808 0x0000007C 0x01CA27F8 0x0000009C 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
     177020003 0x01CA28E0 0x00000030 0x01CA28D0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     178020004 0x01CA2970 0x00000030 0x01CA2960 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     179020005 0x01CA2A00 0x00000030 0x01CA29F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     180020012 0x01CA2A90 0x00000030 0x01CA2A80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     181020006 0x01CA2B50 0x00000030 0x01CA2B40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     182020007 0x01CA2C40 0x00000030 0x01CA2C30 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     183020008 0x01CA2D30 0x00000030 0x01CA2D20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     184020009 0x01CA2E20 0x00000030 0x01CA2E10 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     185020010 0x01CA2F10 0x00000030 0x01CA2F00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     186020011 0x01CA3000 0x00000030 0x01CA2FF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     187020013 0x01CA30F0 0x00000030 0x01CA30E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     188020014 0x01CA3180 0x00000030 0x01CA3170 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     189020015 0x01CA3210 0x0000000C 0x01CA3200 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     190020016 0x01CA3278 0x00000068 0x01CA3268 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
     191020017 0x01CA3340 0x00000030 0x01CA3330 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     192020021 0x01CA33D0 0x0000000C 0x01CA33C0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     193020018 0x01CA3490 0x00000030 0x01CA3480 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     194020019 0x01CA3580 0x00000030 0x01CA3570 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     195020020 0x01CA3670 0x00000030 0x01CA3660 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     196020022 0x01CA3760 0x00000068 0x01CA3750 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
     197020023 0x01CA3828 0x00000030 0x01CA3818 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     198020024 0x01CA3918 0x00000030 0x01CA3908 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     199020027 0x01CA39A8 0x0000000C 0x01CA3998 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     200020025 0x01CA3A68 0x00000030 0x01CA3A58 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     201020026 0x01CA3B58 0x00000030 0x01CA3B48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     202020028 0x01CA3C48 0x00000030 0x01CA3C38 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
     203020029 0x01CA3CD8 0x00000030 0x01CA3CC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     204020030 0x01CA3DC8 0x00000030 0x01CA3DB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     205020031 0x01CA3E58 0x0000000C 0x01CA3E48 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     206020032 0x01CA3EC0 0x00000030 0x01CA3EB0 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
     207020033 0x01CA3F50 0x00000030 0x01CA3F40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     208020034 0x01CA3FE0 0x00000030 0x01CA3FD0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     209020035 0x01CA4070 0x0000000C 0x01CA4060 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     210020036 0x01CA40D8 0x000000B4 0x01CA40C8 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
     211020037 0x01CA41E8 0x00000030 0x01CA41D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     212020038 0x01CA4278 0x00000030 0x01CA4268 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     213020039 0x01CA4308 0x00000030 0x01CA42F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     214020040 0x01CA4398 0x00000030 0x01CA4388 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     215020041 0x01CA4428 0x00000030 0x01CA4418 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     216020042 0x01CA44B8 0x00000030 0x01CA44A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     217020043 0x01CA4548 0x00000030 0x01CA4538 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     218020044 0x01CA45D8 0x00000030 0x01CA45C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     219020045 0x01CA4668 0x00000030 0x01CA4658 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     220020046 0x01CA46F8 0x00000030 0x01CA46E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     221020047 0x01CA4788 0x00000030 0x01CA4778 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     222020048 0x01CA4818 0x0000000C 0x01CA4808 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     223020049 0x01CA4880 0x00000080 0x01CA4870 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
     224020050 0x01CA4960 0x00000030 0x01CA4950 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     225020051 0x01CA49F0 0x00000030 0x01CA49E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     226020052 0x01CA4A80 0x00000030 0x01CA4A70 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     227020053 0x01CA4B10 0x00000030 0x01CA4B00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     228020054 0x01CA4BA0 0x00000030 0x01CA4B90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     229020055 0x01CA4C30 0x00000030 0x01CA4C20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     230020057 0x01CA4CC0 0x00000030 0x01CA4CB0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     231020056 0x01CA4D80 0x00000030 0x01CA4D70 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     232020058 0x01CA4E70 0x00000030 0x01CA4E60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     233020059 0x01CA4F00 0x00000030 0x01CA4EF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     234020061 0x01CA4F90 0x0000000C 0x01CA4F80 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     235020060 0x01CA5050 0x00000030 0x01CA5040 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     236021176 0x01D2F5B8 0x00000028 0x01D2F5A8 0x00000048 0x00000000 new         N       N    ogrepass.cpp(148) Ogre::Pass::operator`=' 
     237021177 0x01D2F640 0x00000048 0x01D2F630 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     238021179 0x01D2F6E8 0x00000028 0x01D2F6D8 0x00000048 0x00000000 new         N       N    ogrepass.cpp(148) Ogre::Pass::operator`=' 
     239021180 0x01D2F770 0x00000048 0x01D2F760 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     240021227 0x01D31378 0x00000028 0x01D31368 0x00000048 0x00000000 new         N       N    ogrepass.cpp(148) Ogre::Pass::operator`=' 
     241021228 0x01D31400 0x00000048 0x01D313F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     242021230 0x01D314A8 0x00000028 0x01D31498 0x00000048 0x00000000 new         N       N    ogrepass.cpp(148) Ogre::Pass::operator`=' 
     243021231 0x01D31530 0x00000048 0x01D31520 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     244021375 0x01D32850 0x00000004 0x01D32840 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     245021369 0x01D33380 0x000000C0 0x01D33370 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     246021370 0x01D334A0 0x0000001C 0x01D33490 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     247021371 0x01D33518 0x000000C4 0x01D33508 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     248021372 0x01D33638 0x00000018 0x01D33628 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     249021373 0x01D336B0 0x00000018 0x01D336A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     250021376 0x01D33790 0x00000018 0x01D33780 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     251021387 0x01D33808 0x0000004C 0x01D337F8 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
     252021388 0x01D338B0 0x0000008C 0x01D338A0 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
     253021389 0x01D339F8 0x00000030 0x01D339E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     254021650 0x01D33A88 0x00000004 0x01D33A78 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     255021643 0x01D38220 0x00000008 0x01D38210 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     256021509 0x01D3A710 0x00000018 0x01D3A700 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     257021521 0x01D3A788 0x0000004C 0x01D3A778 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     258021522 0x01D3A830 0x0000008C 0x01D3A820 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
     259021523 0x01D3A918 0x00000030 0x01D3A908 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     260021645 0x01D46C58 0x0000001C 0x01D46C48 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     261021642 0x01D48E18 0x00000018 0x01D48E08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     262021644 0x01D49090 0x000000C0 0x01D49080 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     263021646 0x01D491B0 0x000000C4 0x01D491A0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     264021647 0x01D492D0 0x00000018 0x01D492C0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     265021648 0x01D49348 0x00000018 0x01D49338 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     266021651 0x01D493C0 0x00000018 0x01D493B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     267021658 0x01D49438 0x0000004C 0x01D49428 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
     268021659 0x01D494E0 0x0000008C 0x01D494D0 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
     269021660 0x01D49688 0x00000030 0x01D49678 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     270022108 0x01D4EA70 0x00000004 0x01D4EA60 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     271021778 0x01D502E8 0x00000018 0x01D502D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     272021786 0x01D50360 0x0000004C 0x01D50350 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     273021787 0x01D50408 0x0000008C 0x01D503F8 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
     274021788 0x01D504F0 0x00000030 0x01D504E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     275022378 0x01D59400 0x00000018 0x01D593F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     276021906 0x01D5EBC8 0x00000018 0x01D5EBB8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     277021914 0x01D5EC40 0x00000084 0x01D5EC30 0x000000A4 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(252) OgreCausticCasterRenderTechniqueFactory 
     278021952 0x01D60320 0x000000A8 0x01D60310 0x000000C8 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(102) OgreCausticCasterRenderTechnique::creat 
     279021953 0x01D60558 0x00000030 0x01D60548 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     280022101 0x01D64120 0x0000000C 0x01D64110 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     281022072 0x01D67290 0x00000018 0x01D67280 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     282022073 0x01D67308 0x000000A4 0x01D672F8 0x000000C4 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(90) OgreCausticCasterRenderTechnique::creat 
     283022074 0x01D67408 0x00000030 0x01D673F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     284022098 0x01D70550 0x00000018 0x01D70540 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     285022102 0x01D706B8 0x000000C0 0x01D706A8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     286022103 0x01D707D8 0x0000001C 0x01D707C8 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     287022104 0x01D70850 0x000000C4 0x01D70840 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     288022105 0x01D70970 0x00000018 0x01D70960 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     289022106 0x01D709E8 0x00000018 0x01D709D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     290022109 0x01D70A60 0x00000018 0x01D70A50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     291022120 0x01D70AD8 0x0000004C 0x01D70AC8 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
     292022121 0x01D70B80 0x0000008C 0x01D70B70 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
     293022122 0x01D70C68 0x00000030 0x01D70C58 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     294022380 0x01D70CF8 0x00000004 0x01D70CE8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     295022240 0x01D775E0 0x00000018 0x01D775D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     296022252 0x01D77858 0x0000004C 0x01D77848 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     297022253 0x01D77900 0x0000008C 0x01D778F0 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
     298022254 0x01D779E8 0x00000030 0x01D779D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     299022373 0x01D77A78 0x00000008 0x01D77A68 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     300022375 0x01D7A918 0x0000001C 0x01D7A908 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     301022377 0x01D7B268 0x00000018 0x01D7B258 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     302022372 0x01D7B568 0x00000018 0x01D7B558 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     303022374 0x01D7E5D8 0x000000C0 0x01D7E5C8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     304022376 0x01D7E6F8 0x000000C4 0x01D7E6E8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     305023920 0x01D864E8 0x00000018 0x01D864D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     306022381 0x01D86568 0x00000018 0x01D86558 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     307022383 0x01D865E0 0x0000004C 0x01D865D0 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
     308022384 0x01D86688 0x0000008C 0x01D86678 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
     309022385 0x01D86830 0x00000030 0x01D86820 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     310022506 0x01D889E0 0x0000004C 0x01D889D0 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     311022503 0x01D89760 0x00000018 0x01D89750 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     312022507 0x01D8D418 0x0000008C 0x01D8D408 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
     313048004 0x01D8D500 0x00000004 0x01D8D4F0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     314022508 0x01D8D560 0x00000030 0x01D8D550 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     315022630 0x01D8F718 0x0000001C 0x01D8F708 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     316022627 0x01D903A0 0x00000008 0x01D90390 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     317022626 0x01D90498 0x00000018 0x01D90488 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     318022628 0x01D94140 0x000000C0 0x01D94130 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     319022631 0x01D94260 0x000000C4 0x01D94250 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     320022632 0x01D94380 0x00000018 0x01D94370 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     321022633 0x01D943F8 0x00000018 0x01D943E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     322022634 0x01D94470 0x0000000C 0x01D94460 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     323022636 0x01D944D8 0x00000018 0x01D944C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     324022640 0x01D945B0 0x00000084 0x01D945A0 0x000000A4 0x00000000 new         N       N    ogrecausticrecieverrendertechnique.cpp(166) OgreCausticRecieverRenderTechniqueFacto 
     325022955 0x01D94690 0x0000001C 0x01D94680 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     326022924 0x01DA6F70 0x00000034 0x01DA6F60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     327022952 0x01DA76E8 0x00000004 0x01DA76D8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     328023272 0x01DA7838 0x00000004 0x01DA7828 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     329022953 0x01DA7ED0 0x000000C0 0x01DA7EC0 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     330022956 0x01DA7FF0 0x00000008 0x01DA7FE0 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     331022957 0x01DA8058 0x00000018 0x01DA8048 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     332022961 0x01DA80D0 0x00000084 0x01DA80C0 0x000000A4 0x00000000 new         N       N    ogrecausticrecieverrendertechnique.cpp(166) OgreCausticRecieverRenderTechniqueFacto 
     333023237 0x01DB9E70 0x00000034 0x01DB9E60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
     334023265 0x01DBA5E8 0x00000004 0x01DBA5D8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     335023266 0x01DBADD0 0x000000C0 0x01DBADC0 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     336023267 0x01DBAEF0 0x0000001C 0x01DBAEE0 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     337023268 0x01DBAF68 0x000000C4 0x01DBAF58 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     338023269 0x01DBB088 0x00000018 0x01DBB078 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     339023270 0x01DBB100 0x00000018 0x01DBB0F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     340023922 0x01DBB178 0x0000000C 0x01DBB168 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     341023273 0x01DBB1E0 0x00000018 0x01DBB1D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     342023275 0x01DBB258 0x0000004C 0x01DBB248 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
     343023276 0x01DBB300 0x0000008C 0x01DBB2F0 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
     344023277 0x01DBB448 0x00000030 0x01DBB438 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     345023396 0x01DC9A40 0x00000018 0x01DC9A30 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     346023399 0x01DC9CB8 0x0000004C 0x01DC9CA8 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     347023400 0x01DC9D60 0x0000008C 0x01DC9D50 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
     348023401 0x01DC9E48 0x00000030 0x01DC9E38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     349023520 0x01DC9ED8 0x00000008 0x01DC9EC8 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     350023519 0x01DCE608 0x00000018 0x01DCE5F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     351048001 0x026F26C8 0x00000004 0x026F26B8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log

    r1474 r1487  
    11-------------------------------------------------------------------------------- 
    22 
    3       OgreMemory.log - Memory logging file created on Thu Sep 21 20:04:19 2006 
     3      OgreMemory.log - Memory logging file created on Tue Sep 26 09:22:23 2006 
    44 
    55-------------------------------------------------------------------------------- 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log

    r1474 r1487  
    1 20:04:53: Creating resource group General 
    2 20:04:53: Creating resource group Internal 
    3 20:04:53: Creating resource group Autodetect 
    4 20:04:53: Registering ResourceManager for type Material 
    5 20:04:53: Registering ResourceManager for type Mesh 
    6 20:04:53: Registering ResourceManager for type Skeleton 
    7 20:04:53: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 20:04:53: Loading library OgrePlatform.dll 
    9 20:04:53: OverlayElementFactory for type Panel registered. 
    10 20:04:53: OverlayElementFactory for type BorderPanel registered. 
    11 20:04:53: OverlayElementFactory for type TextArea registered. 
    12 20:04:53: Registering ResourceManager for type Font 
    13 20:04:53: ArchiveFactory for archive type FileSystem registered. 
    14 20:04:53: ArchiveFactory for archive type Zip registered. 
    15 20:04:53: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 20:04:53: 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 20:04:53: Registering ResourceManager for type HighLevelGpuProgram 
    18 20:04:53: Registering ResourceManager for type Compositor 
    19 20:04:53: MovableObjectFactory for type 'Entity' registered. 
    20 20:04:53: MovableObjectFactory for type 'Light' registered. 
    21 20:04:53: MovableObjectFactory for type 'BillboardSet' registered. 
    22 20:04:53: MovableObjectFactory for type 'ManualObject' registered. 
    23 20:04:53: MovableObjectFactory for type 'BillboardChain' registered. 
    24 20:04:53: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 20:04:53: Loading library .\RenderSystem_Direct3D9 
    26 20:04:53: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 20:04:53: D3D9: Driver Detection Starts 
    28 20:04:53: D3D9: Driver Detection Ends 
    29 20:04:53: Loading library .\Plugin_ParticleFX 
    30 20:04:53: Particle Emitter Type 'Point' registered 
    31 20:04:53: Particle Emitter Type 'Box' registered 
    32 20:04:53: Particle Emitter Type 'Ellipsoid' registered 
    33 20:04:53: Particle Emitter Type 'Cylinder' registered 
    34 20:04:53: Particle Emitter Type 'Ring' registered 
    35 20:04:53: Particle Emitter Type 'HollowEllipsoid' registered 
    36 20:04:53: Particle Affector Type 'LinearForce' registered 
    37 20:04:53: Particle Affector Type 'ColourFader' registered 
    38 20:04:53: Particle Affector Type 'ColourFader2' registered 
    39 20:04:53: Particle Affector Type 'ColourImage' registered 
    40 20:04:53: Particle Affector Type 'ColourInterpolator' registered 
    41 20:04:53: Particle Affector Type 'Scaler' registered 
    42 20:04:53: Particle Affector Type 'Rotator' registered 
    43 20:04:53: Particle Affector Type 'DirectionRandomiser' registered 
    44 20:04:53: Particle Affector Type 'DeflectorPlane' registered 
    45 20:04:53: Loading library .\Plugin_BSPSceneManager 
    46 20:04:53: Registering ResourceManager for type BspLevel 
    47 20:04:53: Loading library .\Plugin_OctreeSceneManager 
    48 20:04:53: Loading library .\Plugin_CgProgramManager 
    49 20:04:53: *-*-* OGRE Initialising 
    50 20:04:53: *-*-* Version 1.2.0 (Dagon) 
    51 20:04:53: Creating resource group Bootstrap 
    52 20:04:53: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 20:04:53: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 20:04:53: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 20:04:53: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 20:04:53: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 20:04:53: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 20:04:53: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 20:04:53: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 20:04:53: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 20:04:53: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 20:04:53: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 20:04:53: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 20:04:53: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 20:04:53: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 20:04:53: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 20:04:53: D3D9 : RenderSystem Option: Full Screen = No 
    68 20:04:53: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
    69 20:04:53: D3D9 : RenderSystem Option: VSync = No 
    70 20:04:53: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 20:04:54: D3D9 : Subsystem Initialising 
    72 20:04:54: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 20:04:54: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 20:04:54: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 20:04:54: Registering ResourceManager for type Texture 
    76 20:04:54: Registering ResourceManager for type GpuProgram 
    77 20:04:54: RenderSystem capabilities 
    78 20:04:54: ------------------------- 
    79 20:04:54:  * Hardware generation of mipmaps: yes 
    80 20:04:54:  * Texture blending: yes 
    81 20:04:54:  * Anisotropic texture filtering: yes 
    82 20:04:54:  * Dot product texture operation: yes 
    83 20:04:54:  * Cube mapping: yes 
    84 20:04:54:  * Hardware stencil buffer: yes 
    85 20:04:54:    - Stencil depth: 8 
    86 20:04:54:    - Two sided stencil support: yes 
    87 20:04:54:    - Wrap stencil values: yes 
    88 20:04:54:  * Hardware vertex / index buffers: yes 
    89 20:04:54:  * Vertex programs: yes 
    90 20:04:54:    - Max vertex program version: vs_3_0 
    91 20:04:54:  * Fragment programs: yes 
    92 20:04:54:    - Max fragment program version: ps_3_0 
    93 20:04:54:  * Texture Compression: yes 
    94 20:04:54:    - DXT: yes 
    95 20:04:54:    - VTC: no 
    96 20:04:54:  * Scissor Rectangle: yes 
    97 20:04:54:  * Hardware Occlusion Query: yes 
    98 20:04:54:  * User clip planes: yes 
    99 20:04:54:  * VET_UBYTE4 vertex element type: yes 
    100 20:04:54:  * Infinite far plane projection: yes 
    101 20:04:54:  * Hardware render-to-texture: yes 
    102 20:04:54:  * Floating point textures: yes 
    103 20:04:54:  * Non-power-of-two textures: yes 
    104 20:04:54:  * Volume textures: yes 
    105 20:04:54:  * Multiple Render Targets: 4 
    106 20:04:54:  * Max Point Size: 8192 
    107 20:04:54: *************************************** 
    108 20:04:54: *** D3D9 : Subsystem Initialised OK *** 
    109 20:04:54: *************************************** 
    110 20:04:54: ResourceBackgroundQueue - threading disabled 
    111 20:04:54: Particle Renderer Type 'billboard' registered 
    112 20:04:54: Particle Renderer Type 'sprite' registered 
    113 20:04:54: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    114 20:04:54: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 20:04:54: Parsing scripts for resource group Autodetect 
    116 20:04:54: Finished parsing scripts for resource group Autodetect 
    117 20:04:54: Parsing scripts for resource group Bootstrap 
    118 20:04:54: Parsing script OgreCore.material 
    119 20:04:54: Parsing script OgreProfiler.material 
    120 20:04:54: Parsing script Ogre.fontdef 
    121 20:04:54: Parsing script OgreDebugPanel.overlay 
    122 20:04:54: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    123 20:04:54: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    124 20:04:54: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    125 20:04:54: Font TrebuchetMSBoldusing texture size 512x512 
    126 20:04:54: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 20:04:54: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 20:04:54: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 20:04:54: Parsing script OgreLoadingPanel.overlay 
    130 20:04:54: Finished parsing scripts for resource group Bootstrap 
    131 20:04:54: Parsing scripts for resource group General 
    132 20:04:54: Parsing script GameTools.program 
    133 20:04:54: Parsing script atlascube.material 
    134 20:04:54: Parsing script Diffuse.material 
    135 20:04:56: An exception has been thrown! 
     108:50:08: Creating resource group General 
     208:50:08: Creating resource group Internal 
     308:50:08: Creating resource group Autodetect 
     408:50:08: Registering ResourceManager for type Material 
     508:50:08: Registering ResourceManager for type Mesh 
     608:50:08: Registering ResourceManager for type Skeleton 
     708:50:08: MovableObjectFactory for type 'ParticleSystem' registered. 
     808:50:08: Loading library OgrePlatform.dll 
     908:50:08: OverlayElementFactory for type Panel registered. 
     1008:50:08: OverlayElementFactory for type BorderPanel registered. 
     1108:50:08: OverlayElementFactory for type TextArea registered. 
     1208:50:08: Registering ResourceManager for type Font 
     1308:50:08: ArchiveFactory for archive type FileSystem registered. 
     1408:50:08: ArchiveFactory for archive type Zip registered. 
     1508:50:08: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1608:50:08: 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  
     1708:50:08: Registering ResourceManager for type HighLevelGpuProgram 
     1808:50:08: Registering ResourceManager for type Compositor 
     1908:50:08: MovableObjectFactory for type 'Entity' registered. 
     2008:50:08: MovableObjectFactory for type 'Light' registered. 
     2108:50:08: MovableObjectFactory for type 'BillboardSet' registered. 
     2208:50:08: MovableObjectFactory for type 'ManualObject' registered. 
     2308:50:08: MovableObjectFactory for type 'BillboardChain' registered. 
     2408:50:08: MovableObjectFactory for type 'RibbonTrail' registered. 
     2508:50:08: Loading library .\RenderSystem_Direct3D9 
     2608:50:08: D3D9 : Direct3D9 Rendering Subsystem created. 
     2708:50:08: D3D9: Driver Detection Starts 
     2808:50:08: D3D9: Driver Detection Ends 
     2908:50:08: Loading library .\Plugin_ParticleFX 
     3008:50:08: Particle Emitter Type 'Point' registered 
     3108:50:08: Particle Emitter Type 'Box' registered 
     3208:50:08: Particle Emitter Type 'Ellipsoid' registered 
     3308:50:08: Particle Emitter Type 'Cylinder' registered 
     3408:50:08: Particle Emitter Type 'Ring' registered 
     3508:50:08: Particle Emitter Type 'HollowEllipsoid' registered 
     3608:50:08: Particle Affector Type 'LinearForce' registered 
     3708:50:08: Particle Affector Type 'ColourFader' registered 
     3808:50:08: Particle Affector Type 'ColourFader2' registered 
     3908:50:08: Particle Affector Type 'ColourImage' registered 
     4008:50:08: Particle Affector Type 'ColourInterpolator' registered 
     4108:50:08: Particle Affector Type 'Scaler' registered 
     4208:50:08: Particle Affector Type 'Rotator' registered 
     4308:50:08: Particle Affector Type 'DirectionRandomiser' registered 
     4408:50:08: Particle Affector Type 'DeflectorPlane' registered 
     4508:50:08: Loading library .\Plugin_BSPSceneManager 
     4608:50:08: Registering ResourceManager for type BspLevel 
     4708:50:08: Loading library .\Plugin_OctreeSceneManager 
     4808:50:08: Loading library .\Plugin_CgProgramManager 
     4908:50:08: *-*-* OGRE Initialising 
     5008:50:08: *-*-* Version 1.2.0 (Dagon) 
     5108:50:09: Creating resource group Bootstrap 
     5208:50:09: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5308:50:09: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5408:50:09: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5508:50:09: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5608:50:09: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5708:50:09: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5808:50:09: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5908:50:09: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6008:50:09: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6108:50:09: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6208:50:09: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6308:50:09: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6408:50:09: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6508:50:09: D3D9 : RenderSystem Option: Anti aliasing = None 
     6608:50:09: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6708:50:09: D3D9 : RenderSystem Option: Full Screen = No 
     6808:50:09: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
     6908:50:09: D3D9 : RenderSystem Option: VSync = No 
     7008:50:09: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7108:50:11: D3D9 : Subsystem Initialising 
     7208:50:11: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7308:50:11: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7408:50:11: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7508:50:11: Registering ResourceManager for type Texture 
     7608:50:11: Registering ResourceManager for type GpuProgram 
     7708:50:11: RenderSystem capabilities 
     7808:50:11: ------------------------- 
     7908:50:11:  * Hardware generation of mipmaps: yes 
     8008:50:11:  * Texture blending: yes 
     8108:50:11:  * Anisotropic texture filtering: yes 
     8208:50:11:  * Dot product texture operation: yes 
     8308:50:11:  * Cube mapping: yes 
     8408:50:11:  * Hardware stencil buffer: yes 
     8508:50:11:    - Stencil depth: 8 
     8608:50:11:    - Two sided stencil support: yes 
     8708:50:11:    - Wrap stencil values: yes 
     8808:50:11:  * Hardware vertex / index buffers: yes 
     8908:50:11:  * Vertex programs: yes 
     9008:50:11:    - Max vertex program version: vs_3_0 
     9108:50:11:  * Fragment programs: yes 
     9208:50:11:    - Max fragment program version: ps_3_0 
     9308:50:11:  * Texture Compression: yes 
     9408:50:11:    - DXT: yes 
     9508:50:11:    - VTC: no 
     9608:50:11:  * Scissor Rectangle: yes 
     9708:50:11:  * Hardware Occlusion Query: yes 
     9808:50:11:  * User clip planes: yes 
     9908:50:11:  * VET_UBYTE4 vertex element type: yes 
     10008:50:11:  * Infinite far plane projection: yes 
     10108:50:11:  * Hardware render-to-texture: yes 
     10208:50:11:  * Floating point textures: yes 
     10308:50:11:  * Non-power-of-two textures: yes 
     10408:50:11:  * Volume textures: yes 
     10508:50:11:  * Multiple Render Targets: 4 
     10608:50:11:  * Max Point Size: 8192 
     10708:50:11: *************************************** 
     10808:50:11: *** D3D9 : Subsystem Initialised OK *** 
     10908:50:11: *************************************** 
     11008:50:11: ResourceBackgroundQueue - threading disabled 
     11108:50:11: Particle Renderer Type 'billboard' registered 
     11208:50:11: Particle Renderer Type 'sprite' registered 
     11308:50:11: 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 
     11408:50:11: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11508:50:11: Parsing scripts for resource group Autodetect 
     11608:50:11: Finished parsing scripts for resource group Autodetect 
     11708:50:11: Parsing scripts for resource group Bootstrap 
     11808:50:11: Parsing script OgreCore.material 
     11908:50:11: Parsing script OgreProfiler.material 
     12008:50:11: Parsing script Ogre.fontdef 
     12108:50:11: Parsing script OgreDebugPanel.overlay 
     12208:50:11: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12308:50:11: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12408:50:11: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12508:50:11: Font TrebuchetMSBoldusing texture size 512x512 
     12608:50:11: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12708:50:11: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12808:50:11: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12908:50:11: Parsing script OgreLoadingPanel.overlay 
     13008:50:11: Finished parsing scripts for resource group Bootstrap 
     13108:50:11: Parsing scripts for resource group General 
     13208:50:11: Parsing script GameTools.program 
     13308:50:11: Parsing script atlascube.material 
     13408:50:11: Parsing script Diffuse.material 
     13508:50:13: An exception has been thrown! 
    136136 
    137137----------------------------------- 
     
    144144Line: 768 
    145145Stack unwinding: <<beginning of stack>> 
    146 20:04:56: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14608:50:13: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    147147 
    148148----------------------------------- 
     
    155155Line: 768 
    156156Stack unwinding: <<beginning of stack>> 
    157 20:04:56: An exception has been thrown! 
     15708:50:13: An exception has been thrown! 
    158158 
    159159----------------------------------- 
     
    166166Line: 768 
    167167Stack unwinding: <<beginning of stack>> 
    168 20:04:56: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     16808:50:13: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    169169 
    170170----------------------------------- 
     
    177177Line: 768 
    178178Stack unwinding: <<beginning of stack>> 
    179 20:04:56: Parsing script EnvMetals.material 
    180 20:04:56: An exception has been thrown! 
     17908:50:13: Parsing script EnvMetals.material 
     18008:50:13: An exception has been thrown! 
    181181 
    182182----------------------------------- 
     
    189189Line: 768 
    190190Stack unwinding: <<beginning of stack>> 
    191 20:04:56: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19108:50:13: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    192192 
    193193----------------------------------- 
     
    200200Line: 768 
    201201Stack unwinding: <<beginning of stack>> 
    202 20:04:56: An exception has been thrown! 
     20208:50:13: An exception has been thrown! 
    203203 
    204204----------------------------------- 
     
    211211Line: 768 
    212212Stack unwinding: <<beginning of stack>> 
    213 20:04:56: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21308:50:13: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    214214 
    215215----------------------------------- 
     
    222222Line: 768 
    223223Stack unwinding: <<beginning of stack>> 
    224 20:04:56: An exception has been thrown! 
     22408:50:13: An exception has been thrown! 
    225225 
    226226----------------------------------- 
     
    233233Line: 768 
    234234Stack unwinding: <<beginning of stack>> 
    235 20:04:56: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23508:50:13: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    236236 
    237237----------------------------------- 
     
    244244Line: 768 
    245245Stack unwinding: <<beginning of stack>> 
    246 20:04:56: An exception has been thrown! 
     24608:50:13: An exception has been thrown! 
    247247 
    248248----------------------------------- 
     
    255255Line: 768 
    256256Stack unwinding: <<beginning of stack>> 
    257 20:04:56: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25708:50:13: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    258258 
    259259----------------------------------- 
     
    266266Line: 768 
    267267Stack unwinding: <<beginning of stack>> 
    268 20:04:56: Parsing script GameTools.material 
    269 20:04:56: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
    270 20:04:56: An exception has been thrown! 
     26808:50:13: Parsing script GameTools.material 
     26908:50:13: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
     27008:50:13: An exception has been thrown! 
    271271 
    272272----------------------------------- 
     
    279279Line: 768 
    280280Stack unwinding: <<beginning of stack>> 
    281 20:04:56: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     28108:50:13: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    282282 
    283283----------------------------------- 
     
    290290Line: 768 
    291291Stack unwinding: <<beginning of stack>> 
    292 20:04:56: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
    293 20:04:56: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    294 20:04:56: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
    295 20:04:56: Parsing script GameTools_HPS.material 
    296 20:04:56: An exception has been thrown! 
    297  
    298 ----------------------------------- 
    299 Details: 
    300 ----------------------------------- 
    301 Error #: 7 
    302 Function: GpuProgramParameters::getParamIndex 
    303 Description: Cannot find a parameter named worldViewProj.  
    304 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    305 Line: 768 
    306 Stack unwinding: <<beginning of stack>> 
    307 20:04:56: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    308  
    309 ----------------------------------- 
    310 Details: 
    311 ----------------------------------- 
    312 Error #: 7 
    313 Function: GpuProgramParameters::getParamIndex 
    314 Description: Cannot find a parameter named worldViewProj.  
    315 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    316 Line: 768 
    317 Stack unwinding: <<beginning of stack>> 
    318 20:04:56: An exception has been thrown! 
    319  
    320 ----------------------------------- 
    321 Details: 
    322 ----------------------------------- 
    323 Error #: 7 
    324 Function: GpuProgramParameters::getParamIndex 
    325 Description: Cannot find a parameter named worldViewProj.  
    326 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    327 Line: 768 
    328 Stack unwinding: <<beginning of stack>> 
    329 20:04:56: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    330  
    331 ----------------------------------- 
    332 Details: 
    333 ----------------------------------- 
    334 Error #: 7 
    335 Function: GpuProgramParameters::getParamIndex 
    336 Description: Cannot find a parameter named worldViewProj.  
    337 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    338 Line: 768 
    339 Stack unwinding: <<beginning of stack>> 
    340 20:04:56: An exception has been thrown! 
     29208:50:13: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
     29308:50:13: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     29408:50:13: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
     29508:50:13: Parsing script GameTools_HPS.material 
     29608:50:13: An exception has been thrown! 
     297 
     298----------------------------------- 
     299Details: 
     300----------------------------------- 
     301Error #: 7 
     302Function: GpuProgramParameters::getParamIndex 
     303Description: Cannot find a parameter named worldViewProj.  
     304File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     305Line: 768 
     306Stack unwinding: <<beginning of stack>> 
     30708:50:13: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     308 
     309----------------------------------- 
     310Details: 
     311----------------------------------- 
     312Error #: 7 
     313Function: GpuProgramParameters::getParamIndex 
     314Description: Cannot find a parameter named worldViewProj.  
     315File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     316Line: 768 
     317Stack unwinding: <<beginning of stack>> 
     31808:50:13: An exception has been thrown! 
     319 
     320----------------------------------- 
     321Details: 
     322----------------------------------- 
     323Error #: 7 
     324Function: GpuProgramParameters::getParamIndex 
     325Description: Cannot find a parameter named worldViewProj.  
     326File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     327Line: 768 
     328Stack unwinding: <<beginning of stack>> 
     32908:50:13: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     330 
     331----------------------------------- 
     332Details: 
     333----------------------------------- 
     334Error #: 7 
     335Function: GpuProgramParameters::getParamIndex 
     336Description: Cannot find a parameter named worldViewProj.  
     337File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     338Line: 768 
     339Stack unwinding: <<beginning of stack>> 
     34008:50:13: An exception has been thrown! 
    341341 
    342342----------------------------------- 
     
    349349Line: 768 
    350350Stack unwinding: <<beginning of stack>> 
    351 20:04:56: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     35108:50:13: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    352352 
    353353----------------------------------- 
     
    360360Line: 768 
    361361Stack unwinding: <<beginning of stack>> 
    362 20:04:56: An exception has been thrown! 
    363  
    364 ----------------------------------- 
    365 Details: 
    366 ----------------------------------- 
    367 Error #: 7 
    368 Function: GpuProgramParameters::getParamIndex 
    369 Description: Cannot find a parameter named worldViewProj.  
    370 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    371 Line: 768 
    372 Stack unwinding: <<beginning of stack>> 
    373 20:04:56: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    374  
    375 ----------------------------------- 
    376 Details: 
    377 ----------------------------------- 
    378 Error #: 7 
    379 Function: GpuProgramParameters::getParamIndex 
    380 Description: Cannot find a parameter named worldViewProj.  
    381 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    382 Line: 768 
    383 Stack unwinding: <<beginning of stack>> 
    384 20:04:56: An exception has been thrown! 
     36208:50:13: An exception has been thrown! 
     363 
     364----------------------------------- 
     365Details: 
     366----------------------------------- 
     367Error #: 7 
     368Function: GpuProgramParameters::getParamIndex 
     369Description: Cannot find a parameter named worldViewProj.  
     370File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     371Line: 768 
     372Stack unwinding: <<beginning of stack>> 
     37308:50:13: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     374 
     375----------------------------------- 
     376Details: 
     377----------------------------------- 
     378Error #: 7 
     379Function: GpuProgramParameters::getParamIndex 
     380Description: Cannot find a parameter named worldViewProj.  
     381File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     382Line: 768 
     383Stack unwinding: <<beginning of stack>> 
     38408:50:13: An exception has been thrown! 
    385385 
    386386----------------------------------- 
     
    393393Line: 768 
    394394Stack unwinding: <<beginning of stack>> 
    395 20:04:56: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     39508:50:13: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    396396 
    397397----------------------------------- 
     
    404404Line: 768 
    405405Stack unwinding: <<beginning of stack>> 
    406 20:04:56: An exception has been thrown! 
     40608:50:13: An exception has been thrown! 
    407407 
    408408----------------------------------- 
     
    415415Line: 768 
    416416Stack unwinding: <<beginning of stack>> 
    417 20:04:56: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41708:50:13: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    418418 
    419419----------------------------------- 
     
    426426Line: 768 
    427427Stack unwinding: <<beginning of stack>> 
    428 20:04:56: An exception has been thrown! 
    429  
    430 ----------------------------------- 
    431 Details: 
    432 ----------------------------------- 
    433 Error #: 7 
    434 Function: GpuProgramParameters::getParamIndex 
    435 Description: Cannot find a parameter named worldViewProj.  
    436 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    437 Line: 768 
    438 Stack unwinding: <<beginning of stack>> 
    439 20:04:56: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    440  
    441 ----------------------------------- 
    442 Details: 
    443 ----------------------------------- 
    444 Error #: 7 
    445 Function: GpuProgramParameters::getParamIndex 
    446 Description: Cannot find a parameter named worldViewProj.  
    447 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    448 Line: 768 
    449 Stack unwinding: <<beginning of stack>> 
    450 20:04:56: Parsing script GlassHead.material 
    451 20:04:56: An exception has been thrown! 
     42808:50:13: An exception has been thrown! 
     429 
     430----------------------------------- 
     431Details: 
     432----------------------------------- 
     433Error #: 7 
     434Function: GpuProgramParameters::getParamIndex 
     435Description: Cannot find a parameter named worldViewProj.  
     436File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     437Line: 768 
     438Stack unwinding: <<beginning of stack>> 
     43908:50:13: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     440 
     441----------------------------------- 
     442Details: 
     443----------------------------------- 
     444Error #: 7 
     445Function: GpuProgramParameters::getParamIndex 
     446Description: Cannot find a parameter named worldViewProj.  
     447File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     448Line: 768 
     449Stack unwinding: <<beginning of stack>> 
     45008:50:13: Parsing script GlassHead.material 
     45108:50:13: An exception has been thrown! 
    452452 
    453453----------------------------------- 
     
    460460Line: 768 
    461461Stack unwinding: <<beginning of stack>> 
    462 20:04:56: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     46208:50:13: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    463463 
    464464----------------------------------- 
     
    471471Line: 768 
    472472Stack unwinding: <<beginning of stack>> 
    473 20:04:56: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    474 20:04:56: An exception has been thrown! 
    475  
    476 ----------------------------------- 
    477 Details: 
    478 ----------------------------------- 
    479 Error #: 7 
    480 Function: GpuProgramParameters::getParamIndex 
    481 Description: Cannot find a parameter named worldViewProj.  
    482 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    483 Line: 768 
    484 Stack unwinding: <<beginning of stack>> 
    485 20:04:56: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    486  
    487 ----------------------------------- 
    488 Details: 
    489 ----------------------------------- 
    490 Error #: 7 
    491 Function: GpuProgramParameters::getParamIndex 
    492 Description: Cannot find a parameter named worldViewProj.  
    493 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    494 Line: 768 
    495 Stack unwinding: <<beginning of stack>> 
    496 20:04:56: An exception has been thrown! 
     47308:50:13: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     47408:50:13: An exception has been thrown! 
     475 
     476----------------------------------- 
     477Details: 
     478----------------------------------- 
     479Error #: 7 
     480Function: GpuProgramParameters::getParamIndex 
     481Description: Cannot find a parameter named worldViewProj.  
     482File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     483Line: 768 
     484Stack unwinding: <<beginning of stack>> 
     48508:50:13: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     486 
     487----------------------------------- 
     488Details: 
     489----------------------------------- 
     490Error #: 7 
     491Function: GpuProgramParameters::getParamIndex 
     492Description: Cannot find a parameter named worldViewProj.  
     493File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     494Line: 768 
     495Stack unwinding: <<beginning of stack>> 
     49608:50:13: An exception has been thrown! 
    497497 
    498498----------------------------------- 
     
    505505Line: 768 
    506506Stack unwinding: <<beginning of stack>> 
    507 20:04:56: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     50708:50:13: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    508508 
    509509----------------------------------- 
     
    516516Line: 768 
    517517Stack unwinding: <<beginning of stack>> 
    518 20:04:57: Parsing script Glow.material 
    519 20:04:57: An exception has been thrown! 
     51808:50:13: An exception has been thrown! 
     519 
     520----------------------------------- 
     521Details: 
     522----------------------------------- 
     523Error #: 7 
     524Function: GpuProgramParameters::getParamIndex 
     525Description: Cannot find a parameter named resolution.  
     526File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     527Line: 768 
     528Stack unwinding: <<beginning of stack>> 
     52908:50:13: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     530 
     531----------------------------------- 
     532Details: 
     533----------------------------------- 
     534Error #: 7 
     535Function: GpuProgramParameters::getParamIndex 
     536Description: Cannot find a parameter named resolution.  
     537File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     538Line: 768 
     539Stack unwinding: <<beginning of stack>> 
     54008:50:14: Parsing script Glow.material 
     54108:50:14: An exception has been thrown! 
    520542 
    521543----------------------------------- 
     
    528550Line: 768 
    529551Stack unwinding: <<beginning of stack>> 
    530 20:04:57: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     55208:50:14: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    531553 
    532554----------------------------------- 
     
    539561Line: 768 
    540562Stack unwinding: <<beginning of stack>> 
    541 20:04:57: Parsing script hangar.material 
    542 20:04:57: Parsing script kupola.material 
    543 20:04:57: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    544 20:04:57: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    545 20:04:57: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    546 20:04:57: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    547 20:04:57: Parsing script Ogre.material 
    548 20:04:57: Parsing script Particles.material 
    549 20:04:57: An exception has been thrown! 
    550  
    551 ----------------------------------- 
    552 Details: 
    553 ----------------------------------- 
    554 Error #: 7 
    555 Function: GpuProgramParameters::getParamIndex 
    556 Description: Cannot find a parameter named worldViewProj.  
    557 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    558 Line: 768 
    559 Stack unwinding: <<beginning of stack>> 
    560 20:04:57: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    561  
    562 ----------------------------------- 
    563 Details: 
    564 ----------------------------------- 
    565 Error #: 7 
    566 Function: GpuProgramParameters::getParamIndex 
    567 Description: Cannot find a parameter named worldViewProj.  
    568 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    569 Line: 768 
    570 Stack unwinding: <<beginning of stack>> 
    571 20:04:57: An exception has been thrown! 
    572  
    573 ----------------------------------- 
    574 Details: 
    575 ----------------------------------- 
    576 Error #: 7 
    577 Function: GpuProgramParameters::getParamIndex 
    578 Description: Cannot find a parameter named worldViewProj.  
    579 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    580 Line: 768 
    581 Stack unwinding: <<beginning of stack>> 
    582 20:04:57: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    583  
    584 ----------------------------------- 
    585 Details: 
    586 ----------------------------------- 
    587 Error #: 7 
    588 Function: GpuProgramParameters::getParamIndex 
    589 Description: Cannot find a parameter named worldViewProj.  
    590 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    591 Line: 768 
    592 Stack unwinding: <<beginning of stack>> 
    593 20:04:57: Parsing script RaytraceDemo.material 
    594 20:04:57: Parsing script stairs.material 
    595 20:04:57: Parsing script X3D.material 
    596 20:04:57: Parsing script GameTools_Glow.compositor 
    597 20:04:57: Parsing script GameTools_ToneMap.compositor 
    598 20:04:57: Parsing script sample.fontdef 
    599 20:04:57: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    600 20:04:57: Parsing script GameTools.particle 
    601 20:04:57: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    602 20:04:57: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    603 20:04:57: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    604 20:04:57: Parsing script Compositor.overlay 
    605 20:04:57: Parsing script DP3.overlay 
    606 20:04:57: Parsing script Example-CubeMapping.overlay 
    607 20:04:57: Parsing script Example-DynTex.overlay 
    608 20:04:57: Parsing script Example-Water.overlay 
    609 20:04:57: Parsing script FullScreen.overlay 
    610 20:04:57: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    611 20:04:57: Parsing script Shadows.overlay 
    612 20:04:57: Finished parsing scripts for resource group General 
    613 20:04:57: Parsing scripts for resource group Internal 
    614 20:04:57: Finished parsing scripts for resource group Internal 
    615 20:04:57: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    616 20:04:57: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    617 20:04:57: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    618 20:04:57: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    619 20:04:58: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    620 20:04:58: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    621 20:04:58: Mesh: Loading sphere.mesh. 
    622 20:04:58: An exception has been thrown! 
     56308:50:14: Parsing script hangar.material 
     56408:50:14: Parsing script kupola.material 
     56508:50:14: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     56608:50:14: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     56708:50:14: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     56808:50:14: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     56908:50:14: Parsing script Ogre.material 
     57008:50:14: Parsing script Particles.material 
     57108:50:14: An exception has been thrown! 
     572 
     573----------------------------------- 
     574Details: 
     575----------------------------------- 
     576Error #: 7 
     577Function: GpuProgramParameters::getParamIndex 
     578Description: Cannot find a parameter named worldViewProj.  
     579File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     580Line: 768 
     581Stack unwinding: <<beginning of stack>> 
     58208:50:14: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     583 
     584----------------------------------- 
     585Details: 
     586----------------------------------- 
     587Error #: 7 
     588Function: GpuProgramParameters::getParamIndex 
     589Description: Cannot find a parameter named worldViewProj.  
     590File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     591Line: 768 
     592Stack unwinding: <<beginning of stack>> 
     59308:50:14: An exception has been thrown! 
     594 
     595----------------------------------- 
     596Details: 
     597----------------------------------- 
     598Error #: 7 
     599Function: GpuProgramParameters::getParamIndex 
     600Description: Cannot find a parameter named worldViewProj.  
     601File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     602Line: 768 
     603Stack unwinding: <<beginning of stack>> 
     60408:50:14: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     605 
     606----------------------------------- 
     607Details: 
     608----------------------------------- 
     609Error #: 7 
     610Function: GpuProgramParameters::getParamIndex 
     611Description: Cannot find a parameter named worldViewProj.  
     612File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     613Line: 768 
     614Stack unwinding: <<beginning of stack>> 
     61508:50:14: Parsing script RaytraceDemo.material 
     61608:50:14: Parsing script stairs.material 
     61708:50:14: Parsing script X3D.material 
     61808:50:14: Parsing script GameTools_Glow.compositor 
     61908:50:14: Parsing script GameTools_ToneMap.compositor 
     62008:50:14: Parsing script sample.fontdef 
     62108:50:14: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     62208:50:14: Parsing script GameTools.particle 
     62308:50:14: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     62408:50:14: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     62508:50:14: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     62608:50:14: Parsing script Compositor.overlay 
     62708:50:14: Parsing script DP3.overlay 
     62808:50:14: Parsing script Example-CubeMapping.overlay 
     62908:50:14: Parsing script Example-DynTex.overlay 
     63008:50:14: Parsing script Example-Water.overlay 
     63108:50:14: Parsing script FullScreen.overlay 
     63208:50:14: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     63308:50:14: Parsing script Shadows.overlay 
     63408:50:14: Finished parsing scripts for resource group General 
     63508:50:14: Parsing scripts for resource group Internal 
     63608:50:14: Finished parsing scripts for resource group Internal 
     63708:50:14: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     63808:50:14: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     63908:50:14: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64008:50:14: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64108:50:14: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64208:50:14: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64308:50:14: Mesh: Loading sphere.mesh. 
     64408:50:14: An exception has been thrown! 
    623645 
    624646----------------------------------- 
     
    631653Line: 583 
    632654Stack unwinding: <<beginning of stack>> 
    633 20:04:58: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     65508:50:14: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    634656 
    635657----------------------------------- 
     
    642664Line: 583 
    643665Stack unwinding: <<beginning of stack>> 
    644 20:04:58: An exception has been thrown! 
     66608:50:14: An exception has been thrown! 
    645667 
    646668----------------------------------- 
     
    653675Line: 583 
    654676Stack unwinding: <<beginning of stack>> 
    655 20:04:58: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     67708:50:14: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    656678 
    657679----------------------------------- 
     
    664686Line: 583 
    665687Stack unwinding: <<beginning of stack>> 
    666 20:04:58: An exception has been thrown! 
     68808:50:14: An exception has been thrown! 
    667689 
    668690----------------------------------- 
     
    675697Line: 583 
    676698Stack unwinding: <<beginning of stack>> 
    677 20:04:58: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     69908:50:14: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    678700 
    679701----------------------------------- 
     
    686708Line: 583 
    687709Stack unwinding: <<beginning of stack>> 
    688 20:04:58: An exception has been thrown! 
     71008:50:14: An exception has been thrown! 
    689711 
    690712----------------------------------- 
     
    697719Line: 583 
    698720Stack unwinding: <<beginning of stack>> 
    699 20:04:58: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     72108:50:14: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
    700722 
    701723----------------------------------- 
     
    708730Line: 583 
    709731Stack unwinding: <<beginning of stack>> 
    710 20:04:58: Creating viewport on target 'rtt/2327904', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    711 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    712 20:04:58: Creating viewport on target 'rtt/2328032', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    713 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    714 20:04:58: Creating viewport on target 'rtt/2329792', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    715 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    716 20:04:58: Creating viewport on target 'rtt/2329856', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    717 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    718 20:04:58: Creating viewport on target 'rtt/2329920', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    719 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    720 20:04:58: Creating viewport on target 'rtt/2329984', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    721 20:04:58: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    722 20:04:58: WARNING: Texture instance 'sphere_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. 
    723 20:04:58: Creating viewport on target 'rtt/2244000', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    724 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    725 20:04:58: Creating viewport on target 'rtt/2244064', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    726 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    727 20:04:58: Creating viewport on target 'rtt/2244128', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    728 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    729 20:04:58: Creating viewport on target 'rtt/2244192', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    730 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    731 20:04:58: Creating viewport on target 'rtt/2244256', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    732 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    733 20:04:58: Creating viewport on target 'rtt/2244320', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    734 20:04:58: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    735 20:04:58: WARNING: Texture instance 'sphere_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. 
    736 20:04:58: Creating viewport on target 'rtt/2245376', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    737 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    738 20:04:58: Creating viewport on target 'rtt/2245440', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    739 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    740 20:04:58: Creating viewport on target 'rtt/2245504', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    741 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    742 20:04:58: Creating viewport on target 'rtt/2245568', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    743 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    744 20:04:58: Creating viewport on target 'rtt/2245632', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    745 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    746 20:04:58: Creating viewport on target 'rtt/2245696', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    747 20:04:58: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
    748 20:04:58: Creating viewport on target 'rtt/2246144', rendering from camera 'sphere_SE_0_PHOTONMAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    749 20:04:58: Viewport for camera 'sphere_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 64 H: 64 
    750 20:04:58: sphere_SE_0_CAUSTICCUBEMAP map: sphere_SE_0_PHOTONMAP material: GameTools/CauTrisphere_SE_0_clone 
    751 20:04:58: Win32Input8: DirectInput Activation Starts 
    752 20:04:58: Win32Input8: Establishing keyboard input. 
    753 20:04:58: Win32Input8: Keyboard input established. 
    754 20:04:58: Win32Input8: Initializing mouse input in immediate mode. 
    755 20:04:58: Win32Input8: Mouse input in immediate mode initialized. 
    756 20:04:58: Win32Input8: DirectInput OK. 
    757 20:04:58: WARNING: Mesh instance 'FullScreenGrid' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    758 20:04:58: WARNING: Texture instance 'sphere_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. 
    759 20:04:58: WARNING: Texture instance 'sphere_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. 
    760 20:05:31: Unregistering ResourceManager for type BspLevel 
    761 20:05:31: Render Target 'rtt/2246144' Average FPS: 387.524 Best FPS: 394.605 Worst FPS: 241.517 
    762 20:05:31: Render Target 'rtt/2245376' Average FPS: 64.6619 Best FPS: 66.271 Worst FPS: 40.959 
    763 20:05:31: Render Target 'rtt/2245440' Average FPS: 64.6779 Best FPS: 66.271 Worst FPS: 40.8367 
    764 20:05:31: Render Target 'rtt/2245504' Average FPS: 64.6496 Best FPS: 66.3366 Worst FPS: 40.715 
    765 20:05:31: Render Target 'rtt/2245568' Average FPS: 64.6788 Best FPS: 66.271 Worst FPS: 40.5941 
    766 20:05:31: Render Target 'rtt/2245632' Average FPS: 64.6663 Best FPS: 66.3366 Worst FPS: 40.4738 
    767 20:05:31: Render Target 'rtt/2245696' Average FPS: 64.6908 Best FPS: 66.4683 Worst FPS: 40.3543 
    768 20:05:31: Render Target 'rtt/2244000' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    769 20:05:31: Render Target 'rtt/2244064' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    770 20:05:31: Render Target 'rtt/2244128' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    771 20:05:31: Render Target 'rtt/2244192' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    772 20:05:31: Render Target 'rtt/2244256' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    773 20:05:31: Render Target 'rtt/2244320' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    774 20:05:31: Render Target 'rtt/2327904' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    775 20:05:31: Render Target 'rtt/2328032' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    776 20:05:31: Render Target 'rtt/2329792' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    777 20:05:31: Render Target 'rtt/2329856' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    778 20:05:31: Render Target 'rtt/2329920' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    779 20:05:31: Render Target 'rtt/2329984' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    780 20:05:31: *-*-* OGRE Shutdown 
    781 20:05:31: Unregistering ResourceManager for type Compositor 
    782 20:05:31: Unregistering ResourceManager for type Font 
    783 20:05:31: Unregistering ResourceManager for type Skeleton 
    784 20:05:31: Unregistering ResourceManager for type Mesh 
    785 20:05:31: Unregistering ResourceManager for type HighLevelGpuProgram 
    786 20:05:31: Unloading library .\Plugin_CgProgramManager 
    787 20:05:31: Unloading library .\Plugin_OctreeSceneManager 
    788 20:05:31: Unloading library .\Plugin_BSPSceneManager 
    789 20:05:31: Unloading library .\Plugin_ParticleFX 
    790 20:05:31: Render Target 'OGRE Render Window' Average FPS: 387.683 Best FPS: 394.816 Worst FPS: 246.753 
    791 20:05:31: D3D9 : Shutting down cleanly. 
    792 20:05:31: Unregistering ResourceManager for type Texture 
    793 20:05:31: Unregistering ResourceManager for type GpuProgram 
    794 20:05:31: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    795 20:05:31: Unloading library .\RenderSystem_Direct3D9 
    796 20:05:31: Unregistering ResourceManager for type Material 
    797 20:05:31: Unloading library OgrePlatform.dll 
     73208:50:14: Creating viewport on target 'rtt/2346464', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     73308:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     73408:50:14: Creating viewport on target 'rtt/2300736', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     73508:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     73608:50:14: Creating viewport on target 'rtt/2300800', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     73708:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     73808:50:14: Creating viewport on target 'rtt/2300864', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     73908:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     74008:50:14: Creating viewport on target 'rtt/2300928', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     74108:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     74208:50:14: Creating viewport on target 'rtt/2300992', rendering from camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     74308:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     74408:50:14: WARNING: Texture instance 'sphere_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. 
     74508:50:14: Creating viewport on target 'rtt/2301728', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     74608:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     74708:50:14: Creating viewport on target 'rtt/2301792', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     74808:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     74908:50:14: Creating viewport on target 'rtt/2301856', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     75008:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     75108:50:14: Creating viewport on target 'rtt/2301920', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     75208:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     75308:50:14: Creating viewport on target 'rtt/2301984', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     75408:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     75508:50:14: Creating viewport on target 'rtt/2302048', rendering from camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     75608:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     75708:50:14: WARNING: Texture instance 'sphere_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. 
     75808:50:14: Creating viewport on target 'rtt/2302816', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     75908:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     76008:50:14: Creating viewport on target 'rtt/2265376', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     76108:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     76208:50:14: Creating viewport on target 'rtt/2265440', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     76308:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     76408:50:14: Creating viewport on target 'rtt/2265504', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     76508:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     76608:50:14: Creating viewport on target 'rtt/2265568', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     76708:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     76808:50:14: Creating viewport on target 'rtt/2265632', rendering from camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     76908:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     77008:50:14: Creating viewport on target 'rtt/2266208', rendering from camera 'sphere_SE_0_PHOTONMAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     77108:50:14: Viewport for camera 'sphere_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     77208:50:14: sphere_SE_0_CAUSTICCUBEMAP map: sphere_SE_0_PHOTONMAP material: GameTools/CauTrisphere_SE_0_clone 
     77308:50:14: Win32Input8: DirectInput Activation Starts 
     77408:50:14: Win32Input8: Establishing keyboard input. 
     77508:50:14: Win32Input8: Keyboard input established. 
     77608:50:14: Win32Input8: Initializing mouse input in immediate mode. 
     77708:50:14: Win32Input8: Mouse input in immediate mode initialized. 
     77808:50:14: Win32Input8: DirectInput OK. 
     77908:50:14: WARNING: Mesh instance 'FullScreenGrid' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     78008:50:14: WARNING: Texture instance 'sphere_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. 
     78108:50:14: WARNING: Texture instance 'sphere_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. 
     78208:50:21: Unregistering ResourceManager for type BspLevel 
     78308:50:21: Render Target 'rtt/2266208' Average FPS: 400.1 Best FPS: 452.547 Worst FPS: 229.312 
     78408:50:21: Render Target 'rtt/2302816' Average FPS: 66.9028 Best FPS: 75.3221 Worst FPS: 39.1389 
     78508:50:21: Render Target 'rtt/2265376' Average FPS: 66.8135 Best FPS: 75.2475 Worst FPS: 38.8834 
     78608:50:21: Render Target 'rtt/2265440' Average FPS: 66.8122 Best FPS: 75.2475 Worst FPS: 38.6905 
     78708:50:21: Render Target 'rtt/2265504' Average FPS: 66.8262 Best FPS: 75.2475 Worst FPS: 38.5376 
     78808:50:21: Render Target 'rtt/2265568' Average FPS: 66.8519 Best FPS: 75.3221 Worst FPS: 38.4236 
     78908:50:21: Render Target 'rtt/2265632' Average FPS: 66.858 Best FPS: 75.3221 Worst FPS: 38.3104 
     79008:50:21: Render Target 'rtt/2301728' Average FPS: 10.6566 Best FPS: 13.1703 Worst FPS: 4.81232 
     79108:50:21: Render Target 'rtt/2301792' Average FPS: 7.83934 Best FPS: 9.35454 Worst FPS: 4.35161 
     79208:50:21: Render Target 'rtt/2301856' Average FPS: 8.98519 Best FPS: 13.6054 Worst FPS: 2.58844 
     79308:50:21: Render Target 'rtt/2301920' Average FPS: 10.4154 Best FPS: 11.396 Worst FPS: 4.44774 
     79408:50:21: Render Target 'rtt/2301984' Average FPS: 8.05231 Best FPS: 11.2254 Worst FPS: 2.3166 
     79508:50:21: Render Target 'rtt/2302048' Average FPS: 10.065 Best FPS: 11.976 Worst FPS: 4.83481 
     79608:50:21: Render Target 'rtt/2346464' Average FPS: 6.15098 Best FPS: 7.52587 Worst FPS: 3.46741 
     79708:50:21: Render Target 'rtt/2300736' Average FPS: 5.85933 Best FPS: 6.77638 Worst FPS: 3.76648 
     79808:50:21: Render Target 'rtt/2300800' Average FPS: 3.78998 Best FPS: 6.89655 Worst FPS: 1.92926 
     79908:50:21: Render Target 'rtt/2300864' Average FPS: 5.05615 Best FPS: 7.72947 Worst FPS: 3.89105 
     80008:50:21: Render Target 'rtt/2300928' Average FPS: 4.86086 Best FPS: 7.17131 Worst FPS: 3.80228 
     80108:50:21: Render Target 'rtt/2300992' Average FPS: 7.02867 Best FPS: 7.75194 Worst FPS: 3.58102 
     80208:50:21: *-*-* OGRE Shutdown 
     80308:50:21: Unregistering ResourceManager for type Compositor 
     80408:50:21: Unregistering ResourceManager for type Font 
     80508:50:21: Unregistering ResourceManager for type Skeleton 
     80608:50:21: Unregistering ResourceManager for type Mesh 
     80708:50:21: Unregistering ResourceManager for type HighLevelGpuProgram 
     80808:50:21: Unloading library .\Plugin_CgProgramManager 
     80908:50:21: Unloading library .\Plugin_OctreeSceneManager 
     81008:50:21: Unloading library .\Plugin_BSPSceneManager 
     81108:50:21: Unloading library .\Plugin_ParticleFX 
     81208:50:21: Render Target 'OGRE Render Window' Average FPS: 400.076 Best FPS: 452.547 Worst FPS: 228.543 
     81308:50:21: D3D9 : Shutting down cleanly. 
     81408:50:21: Unregistering ResourceManager for type Texture 
     81508:50:21: Unregistering ResourceManager for type GpuProgram 
     81608:50:21: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     81708:50:21: Unloading library .\RenderSystem_Direct3D9 
     81808:50:21: Unregistering ResourceManager for type Material 
     81908:50:21: Unloading library OgrePlatform.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/src/CausticTest/include/CausticTest.h

    r1450 r1487  
    113113 
    114114public: 
    115         virtual void go(void) 
    116     { 
    117         if (!setup()) 
    118             return; 
    119  
    120         renderScene(); 
    121                  
    122         // clean up 
    123         destroyScene(); 
    124     } 
    125  
    126115 
    127116protected: 
    128117        SceneNode* mainLightNode; 
    129118        SceneNode* sphereNode; 
    130  
    131 void renderScene(){ 
    132                  
    133                 mWindow->resetStatistics(); 
    134                 while(true){             
    135  
    136                          
    137                         #if OGRE_PLATFORM == OGRE_PLATFORM_WIN32             
    138                         // Pump events on Win32 
    139                 MSG  msg; 
    140                         while( PeekMessage( &msg, NULL, 0U, 0U, PM_REMOVE ) ) 
    141                         { 
    142                                 TranslateMessage( &msg ); 
    143                                 DispatchMessage( &msg ); 
    144                         } 
    145                          
    146                         #endif 
    147                          
    148                         if(!mRoot->_fireFrameStarted()){ 
    149                                 break; 
    150                         } 
    151                         unsigned long framenum = mRoot->getCurrentFrameNumber(); 
    152                          
    153                         OgreIlluminationManager::getSingleton().update(framenum, mWindow); 
    154                          
    155                         //mRoot->renderOneFrame(); 
    156                         mRoot->_updateAllRenderTargets(); 
    157  
    158                         mRoot->_fireFrameEnded();        
    159                          
    160                 } 
    161         } 
    162119 
    163120        void createPostproc() 
     
    191148                // Skybox 
    192149        mSceneMgr->setSkyBox(true, "Examples/MorningSkyBox"); 
    193  
     150/* 
    194151                SceneNode* rootNode = mSceneMgr->getRootSceneNode(); 
    195152 
     
    219176 
    220177                createPlane("ground", "TestPlane", Vector3(0,0,0), Vector2(500,500)); 
    221          
     178        */ 
    222179                OgreIlluminationManager::getSingleton().initTechniques(); 
    223180                 
     
    253210                                                                                        sphereNode 
    254211                                                                                        ); 
    255         mRoot->addFrameListener(mFrameListener); 
    256                 //mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 
    257  
     212        mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 
     213                mRoot->addFrameListener(mFrameListener); 
     214         
    258215    } 
    259216 
  • GTP/trunk/App/Demos/Illum/Ogre/src/GameToolsParticleDemo/include/GameToolsParticleDemo.h

    r1442 r1487  
    5858 
    5959public: 
    60         virtual void go(void) 
     60/*      virtual void go(void) 
    6161    { 
    6262        if (!setup()) 
     
    6767        // clean up 
    6868        destroyScene(); 
    69     } 
     69    }*/ 
    7070 
    7171protected: 
    7272        SceneNode* kupolaNode; 
    7373        SceneNode* mainLightNode; 
    74                  
     74        /*       
    7575        void renderScene(){ 
    7676                 
     
    103103                         
    104104                } 
    105         } 
     105        }*/ 
    106106 
    107107        void createPostproc() 
     
    200200                mFrameListener= new ParticleDemoFrameListener(mWindow, 
    201201                                                                                        mCamera ); 
    202         mRoot->addFrameListener(mFrameListener); 
    203  
    204     } 
     202    mRoot->addFrameListener(mFrameListener); 
     203        mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 
     204   } 
    205205 
    206206}; 
  • GTP/trunk/App/Demos/Illum/Ogre/src/GameToolsRaytraceDemo/include/GameToolsRaytraceDemo.h

    r1349 r1487  
    145145 
    146146public: 
    147         virtual void go(void) 
     147/*      virtual void go(void) 
    148148    { 
    149149        if (!setup()) 
     
    155155        destroyScene(); 
    156156    } 
    157  
     157*/ 
    158158 
    159159protected: 
     
    164164        SceneNode* copperSphereNode; 
    165165        SceneNode* aluSphereNode; 
    166  
     166/* 
    167167void renderScene(){ 
    168168                 
     
    195195                         
    196196                } 
    197         } 
     197        }*/ 
    198198 
    199199        void createPostproc() 
     
    342342                                                                                        aluSphereNode); 
    343343        mRoot->addFrameListener(mFrameListener); 
    344                 //mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 
     344                mRoot->addFrameListener(&OgreIlluminationManager::getSingleton()); 
    345345 
    346346    } 
Note: See TracChangeset for help on using the changeset viewer.