Changeset 1519


Ignore:
Timestamp:
09/27/06 16:04:44 (18 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum
Files:
56 added
20 edited

Legend:

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

    r777 r1519  
    2424    OUT.hPosition = IN.Position; 
    2525    OUT.Position = IN.Position.xy; 
     26    //OUT.Position.y = 1 - OUT.Position.y; 
    2627    return OUT; 
    2728} 
     
    3132 
    3233        RATE = 32; 
     34        CUBEMAP_SIZE = 128; 
    3335    float4 color = 0; 
    3436    // color += texCUBE( EnvironmentMapSampler, Tex ); 
     
    4749                if (nFace == 2) dir = float3(pos.x, 1, -pos.y); 
    4850                if (nFace == 3) dir = float3(pos.x, -1, pos.y); 
    49                 if (nFace == 4) dir = float3(pos.xy, 1); 
     51                if (nFace == 4) dir = float3(pos.x, pos.y, 1); 
    5052                if (nFace == 5) dir = float3(-pos.x, pos.y,-1); 
    5153 
    52                 color += readCubeMap( EnvironmentMapSampler, dir); 
     54                color += texCUBE( EnvironmentMapSampler, dir); 
    5355    } 
     56  /*   
     57    if (nFace == 0)     dir = float3(1, 0, 0); 
     58        if (nFace == 1) dir = float3(-1, 0, 0); 
     59        if (nFace == 2) dir = float3(0, 1, 0); 
     60        if (nFace == 3) dir = float3(0, -1, 0); 
     61        if (nFace == 4) dir = float3(0, 0, 1); 
     62        if (nFace == 5) dir = float3(0, 0,-1); 
     63                 
     64    return texCUBE(EnvironmentMapSampler, dir);*/ 
    5465    //return float4(IN.Position.xy,1,1); 
    5566        return color / (RATE*RATE);      
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/Diffuse.material

    r1094 r1519  
    4747                IllumTechniques 
    4848                { 
     49                        RenderTechnique DistanceCubeMap 
     50                        { 
     51                                update_interval         1 
     52                                distance_calc false                                              
     53                        } 
    4954                        RenderTechnique ReducedColorCubeMap 
    5055                        { 
    51                                 update_interval         3 
     56                                update_interval         1 
     57                                reduced_resolution 4 
     58                                resolution 128 
    5259                                distance_calc false 
    5360                                face_angle_calc false 
    54                                 update_all_face         false 
     61                                update_all_face         true 
    5562                        } 
    5663                } 
     
    8895   } 
    8996} 
     97 
     98 
     99 
     100vertex_program Diffuse2VS hlsl 
     101{ 
     102        source GameTools_Diffuse.hlsl 
     103        entry_point DiffuseVS 
     104        target vs_2_0 
     105}  
     106 
     107fragment_program Diffuse2PS hlsl 
     108{ 
     109        source GameTools_Diffuse.hlsl 
     110        entry_point DiffusePS 
     111        target ps_3_0 
     112}  
     113 
     114material GameTools/Diffuse2  
     115{  
     116   technique  
     117   {  
     118      pass  
     119      {  
     120                 
     121                IllumTechniques 
     122                { 
     123                        RenderTechnique DistanceCubeMap 
     124                        { 
     125                                update_interval         1 
     126                                distance_calc false                                              
     127                        } 
     128                        RenderTechnique ReducedColorCubeMap 
     129                        { 
     130                                update_interval         1 
     131                                reduced_resolution 4 
     132                                resolution 128 
     133                                distance_calc false 
     134                                face_angle_calc false 
     135                                update_all_face         true 
     136                        } 
     137                } 
     138       
     139 
     140                vertex_program_ref Diffuse2VS 
     141                {        
     142                 param_named_auto worldViewProj worldviewproj_matrix  
     143                param_named_auto world world_matrix   
     144         
     145                }  
     146                fragment_program_ref Diffuse2PS 
     147                {  
     148                        param_named_auto cameraPos camera_position 
     149                        param_named REDUCED_CUBEMAP_SIZE int 4 
     150                        param_named lastCenter float3 0 0 0 
     151                         param_named_auto world_IT inverse_transpose_world_matrix                
     152                }  
     153                 
     154                //Cube map for reflections and refractions       
     155                texture_unit 
     156                { 
     157                        cubic_texture cubemap.jpg combinedUVW 
     158                        tex_address_mode clamp 
     159                        colour_op replace 
     160                } 
     161 
     162                //Cube map of distances 
     163                texture_unit 
     164                 { 
     165                   cubic_texture cubemap.jpg combinedUVW 
     166                   tex_address_mode clamp 
     167                   colour_op replace 
     168                 } 
     169         } 
     170   } 
     171} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/GameTools.material

    r1451 r1519  
    6969                        { 
    7070                                texture rockwall.tga 
    71                                 env_map cubic_normal 
     71                                //env_map cubic_normal 
    7272                                //vertex_texture true 
    7373                        } 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/GlassHead.material

    r1487 r1519  
    144144                                photonmap_resolution 32 
    145145                                caustic_cubemap_resolution 512   
    146                                 caustic_map_material            GameTools/CauTri 
    147                                 use_triangles   true                             
     146                                //caustic_map_material          GameTools/CauTri 
     147                                //use_triangles true                             
    148148                        } 
    149149                         
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/Ogre.log

    r1487 r1519  
    1 09:22:23: Creating resource group General 
    2 09:22:23: Creating resource group Internal 
    3 09:22:23: Creating resource group Autodetect 
    4 09:22:23: Registering ResourceManager for type Material 
    5 09:22:23: Registering ResourceManager for type Mesh 
    6 09:22:23: Registering ResourceManager for type Skeleton 
    7 09:22:23: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 09:22:23: Loading library OgrePlatform_d.dll 
    9 09:22:23: OverlayElementFactory for type Panel registered. 
    10 09:22:23: OverlayElementFactory for type BorderPanel registered. 
    11 09:22:23: OverlayElementFactory for type TextArea registered. 
    12 09:22:23: Registering ResourceManager for type Font 
    13 09:22:23: ArchiveFactory for archive type FileSystem registered. 
    14 09:22:23: ArchiveFactory for archive type Zip registered. 
    15 09:22:23: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 09: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  
    17 09:22:23: Registering ResourceManager for type HighLevelGpuProgram 
    18 09:22:23: Registering ResourceManager for type Compositor 
    19 09:22:23: MovableObjectFactory for type 'Entity' registered. 
    20 09:22:23: MovableObjectFactory for type 'Light' registered. 
    21 09:22:23: MovableObjectFactory for type 'BillboardSet' registered. 
    22 09:22:23: MovableObjectFactory for type 'ManualObject' registered. 
    23 09:22:23: MovableObjectFactory for type 'BillboardChain' registered. 
    24 09:22:23: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 09:22:23: Loading library .\RenderSystem_Direct3D9 
    26 09:22:23: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 09:22:23: D3D9: Driver Detection Starts 
    28 09:22:23: D3D9: Driver Detection Ends 
    29 09:22:23: Loading library .\Plugin_ParticleFX 
    30 09:22:23: Particle Emitter Type 'Point' registered 
    31 09:22:23: Particle Emitter Type 'Box' registered 
    32 09:22:23: Particle Emitter Type 'Ellipsoid' registered 
    33 09:22:23: Particle Emitter Type 'Cylinder' registered 
    34 09:22:23: Particle Emitter Type 'Ring' registered 
    35 09:22:23: Particle Emitter Type 'HollowEllipsoid' registered 
    36 09:22:23: Particle Affector Type 'LinearForce' registered 
    37 09:22:23: Particle Affector Type 'ColourFader' registered 
    38 09:22:23: Particle Affector Type 'ColourFader2' registered 
    39 09:22:23: Particle Affector Type 'ColourImage' registered 
    40 09:22:23: Particle Affector Type 'ColourInterpolator' registered 
    41 09:22:23: Particle Affector Type 'Scaler' registered 
    42 09:22:23: Particle Affector Type 'Rotator' registered 
    43 09:22:23: Particle Affector Type 'DirectionRandomiser' registered 
    44 09:22:23: Particle Affector Type 'DeflectorPlane' registered 
    45 09:22:23: Loading library .\Plugin_BSPSceneManager 
    46 09:22:23: Registering ResourceManager for type BspLevel 
    47 09:22:23: Loading library .\Plugin_OctreeSceneManager 
    48 09:22:23: Loading library .\Plugin_CgProgramManager 
    49 09:22:23: *-*-* OGRE Initialising 
    50 09:22:23: *-*-* Version 1.2.0 (Dagon) 
    51 09:22:23: Creating resource group Bootstrap 
    52 09:22:23: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 09:22:23: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 09:22:23: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 09:22:23: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 09:22:23: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 09:22:23: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 09:22:23: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 09:22:23: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 09:22:23: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 09:22:23: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 09:22:23: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 09:22:23: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 09:22:23: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 09:22:23: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 09:22:23: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 09:22:23: D3D9 : RenderSystem Option: Full Screen = No 
    68 09:22:23: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
    69 09:22:23: D3D9 : RenderSystem Option: VSync = No 
    70 09:22:23: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 09:22:25: D3D9 : Subsystem Initialising 
    72 09:22:25: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 09:22:25: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 09: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. 
    75 09:22:25: Registering ResourceManager for type Texture 
    76 09:22:25: Registering ResourceManager for type GpuProgram 
    77 09:22:25: RenderSystem capabilities 
    78 09:22:25: ------------------------- 
    79 09:22:25:  * Hardware generation of mipmaps: yes 
    80 09:22:25:  * Texture blending: yes 
    81 09:22:25:  * Anisotropic texture filtering: yes 
    82 09:22:25:  * Dot product texture operation: yes 
    83 09:22:25:  * Cube mapping: yes 
    84 09:22:25:  * Hardware stencil buffer: yes 
    85 09:22:25:    - Stencil depth: 8 
    86 09:22:25:    - Two sided stencil support: yes 
    87 09:22:25:    - Wrap stencil values: yes 
    88 09:22:25:  * Hardware vertex / index buffers: yes 
    89 09:22:25:  * Vertex programs: yes 
    90 09:22:25:    - Max vertex program version: vs_3_0 
    91 09:22:25:  * Fragment programs: yes 
    92 09:22:25:    - Max fragment program version: ps_3_0 
    93 09:22:25:  * Texture Compression: yes 
    94 09:22:25:    - DXT: yes 
    95 09:22:25:    - VTC: no 
    96 09:22:25:  * Scissor Rectangle: yes 
    97 09:22:25:  * Hardware Occlusion Query: yes 
    98 09:22:25:  * User clip planes: yes 
    99 09:22:25:  * VET_UBYTE4 vertex element type: yes 
    100 09:22:25:  * Infinite far plane projection: yes 
    101 09:22:25:  * Hardware render-to-texture: yes 
    102 09:22:25:  * Floating point textures: yes 
    103 09:22:25:  * Non-power-of-two textures: yes 
    104 09:22:25:  * Volume textures: yes 
    105 09:22:25:  * Multiple Render Targets: 4 
    106 09:22:25:  * Max Point Size: 8192 
    107 09:22:25: *************************************** 
    108 09:22:25: *** D3D9 : Subsystem Initialised OK *** 
    109 09:22:25: *************************************** 
    110 09:22:25: ResourceBackgroundQueue - threading disabled 
    111 09:22:25: Particle Renderer Type 'billboard' registered 
    112 09:22:25: Particle Renderer Type 'sprite' registered 
    113 09: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 
    114 09:22:25: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 09:22:25: Parsing scripts for resource group Autodetect 
    116 09:22:25: Finished parsing scripts for resource group Autodetect 
    117 09:22:25: Parsing scripts for resource group Bootstrap 
    118 09:22:25: Parsing script OgreCore.material 
    119 09:22:25: Parsing script OgreProfiler.material 
    120 09:22:25: Parsing script Ogre.fontdef 
    121 09:22:25: Parsing script OgreDebugPanel.overlay 
    122 09: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. 
    123 09: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. 
    124 09: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. 
    125 09:22:25: Font TrebuchetMSBoldusing texture size 512x512 
    126 09:22:25: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 09:22:25: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 09:22:25: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 09:22:25: Parsing script OgreLoadingPanel.overlay 
    130 09:22:25: Finished parsing scripts for resource group Bootstrap 
    131 09:22:25: Parsing scripts for resource group General 
    132 09:22:25: Parsing script GameTools.program 
    133 09:22:25: Parsing script atlascube.material 
    134 09:22:25: Parsing script Diffuse.material 
    135 09:22:27: An exception has been thrown! 
     115:47:56: Creating resource group General 
     215:47:56: Creating resource group Internal 
     315:47:56: Creating resource group Autodetect 
     415:47:56: Registering ResourceManager for type Material 
     515:47:56: Registering ResourceManager for type Mesh 
     615:47:56: Registering ResourceManager for type Skeleton 
     715:47:56: MovableObjectFactory for type 'ParticleSystem' registered. 
     815:47:56: Loading library OgrePlatform_d.dll 
     915:47:56: OverlayElementFactory for type Panel registered. 
     1015:47:56: OverlayElementFactory for type BorderPanel registered. 
     1115:47:56: OverlayElementFactory for type TextArea registered. 
     1215:47:56: Registering ResourceManager for type Font 
     1315:47:56: ArchiveFactory for archive type FileSystem registered. 
     1415:47:56: ArchiveFactory for archive type Zip registered. 
     1515:47:56: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1615:47:56: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
     1715:47:56: Registering ResourceManager for type HighLevelGpuProgram 
     1815:47:56: Registering ResourceManager for type Compositor 
     1915:47:56: MovableObjectFactory for type 'Entity' registered. 
     2015:47:56: MovableObjectFactory for type 'Light' registered. 
     2115:47:56: MovableObjectFactory for type 'BillboardSet' registered. 
     2215:47:56: MovableObjectFactory for type 'ManualObject' registered. 
     2315:47:56: MovableObjectFactory for type 'BillboardChain' registered. 
     2415:47:56: MovableObjectFactory for type 'RibbonTrail' registered. 
     2515:47:56: Loading library .\RenderSystem_Direct3D9 
     2615:47:56: D3D9 : Direct3D9 Rendering Subsystem created. 
     2715:47:56: D3D9: Driver Detection Starts 
     2815:47:56: D3D9: Driver Detection Ends 
     2915:47:56: Loading library .\Plugin_ParticleFX 
     3015:47:56: Particle Emitter Type 'Point' registered 
     3115:47:56: Particle Emitter Type 'Box' registered 
     3215:47:56: Particle Emitter Type 'Ellipsoid' registered 
     3315:47:56: Particle Emitter Type 'Cylinder' registered 
     3415:47:56: Particle Emitter Type 'Ring' registered 
     3515:47:56: Particle Emitter Type 'HollowEllipsoid' registered 
     3615:47:56: Particle Affector Type 'LinearForce' registered 
     3715:47:56: Particle Affector Type 'ColourFader' registered 
     3815:47:56: Particle Affector Type 'ColourFader2' registered 
     3915:47:56: Particle Affector Type 'ColourImage' registered 
     4015:47:56: Particle Affector Type 'ColourInterpolator' registered 
     4115:47:56: Particle Affector Type 'Scaler' registered 
     4215:47:56: Particle Affector Type 'Rotator' registered 
     4315:47:56: Particle Affector Type 'DirectionRandomiser' registered 
     4415:47:56: Particle Affector Type 'DeflectorPlane' registered 
     4515:47:56: Loading library .\Plugin_BSPSceneManager 
     4615:47:56: Registering ResourceManager for type BspLevel 
     4715:47:56: Loading library .\Plugin_OctreeSceneManager 
     4815:47:56: Loading library .\Plugin_CgProgramManager 
     4915:47:56: *-*-* OGRE Initialising 
     5015:47:56: *-*-* Version 1.2.0 (Dagon) 
     5115:47:56: Creating resource group Bootstrap 
     5215:47:56: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5315:47:56: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5415:47:56: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5515:47:56: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5615:47:56: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5715:47:56: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5815:47:56: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5915:47:56: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6015:47:56: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6115:47:56: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6215:47:56: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6315:47:56: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6415:47:56: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6515:47:56: D3D9 : RenderSystem Option: Anti aliasing = None 
     6615:47:56: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6715:47:56: D3D9 : RenderSystem Option: Full Screen = No 
     6815:47:56: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7800 GT 
     6915:47:56: D3D9 : RenderSystem Option: VSync = No 
     7015:47:56: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7115:47:57: D3D9 : Subsystem Initialising 
     7215:47:57: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7315:47:57: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7415:47:57: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7515:47:57: Registering ResourceManager for type Texture 
     7615:47:57: Registering ResourceManager for type GpuProgram 
     7715:47:57: RenderSystem capabilities 
     7815:47:57: ------------------------- 
     7915:47:57:  * Hardware generation of mipmaps: yes 
     8015:47:57:  * Texture blending: yes 
     8115:47:57:  * Anisotropic texture filtering: yes 
     8215:47:57:  * Dot product texture operation: yes 
     8315:47:57:  * Cube mapping: yes 
     8415:47:57:  * Hardware stencil buffer: yes 
     8515:47:57:    - Stencil depth: 8 
     8615:47:57:    - Two sided stencil support: yes 
     8715:47:57:    - Wrap stencil values: yes 
     8815:47:57:  * Hardware vertex / index buffers: yes 
     8915:47:57:  * Vertex programs: yes 
     9015:47:57:    - Max vertex program version: vs_3_0 
     9115:47:57:  * Fragment programs: yes 
     9215:47:57:    - Max fragment program version: ps_3_0 
     9315:47:57:  * Texture Compression: yes 
     9415:47:57:    - DXT: yes 
     9515:47:57:    - VTC: no 
     9615:47:57:  * Scissor Rectangle: yes 
     9715:47:57:  * Hardware Occlusion Query: yes 
     9815:47:57:  * User clip planes: yes 
     9915:47:57:  * VET_UBYTE4 vertex element type: yes 
     10015:47:57:  * Infinite far plane projection: yes 
     10115:47:57:  * Hardware render-to-texture: yes 
     10215:47:57:  * Floating point textures: yes 
     10315:47:57:  * Non-power-of-two textures: yes 
     10415:47:57:  * Volume textures: yes 
     10515:47:57:  * Multiple Render Targets: 4 
     10615:47:57:  * Max Point Size: 8192 
     10715:47:57: *************************************** 
     10815:47:57: *** D3D9 : Subsystem Initialised OK *** 
     10915:47:57: *************************************** 
     11015:47:57: ResourceBackgroundQueue - threading disabled 
     11115:47:57: Particle Renderer Type 'billboard' registered 
     11215:47:57: Particle Renderer Type 'sprite' registered 
     11315:47:57: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     11415:47:57: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11515:47:57: Parsing scripts for resource group Autodetect 
     11615:47:57: Finished parsing scripts for resource group Autodetect 
     11715:47:57: Parsing scripts for resource group Bootstrap 
     11815:47:57: Parsing script OgreCore.material 
     11915:47:57: Parsing script OgreProfiler.material 
     12015:47:57: Parsing script Ogre.fontdef 
     12115:47:57: Parsing script OgreDebugPanel.overlay 
     12215:47:57: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12315:47:57: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12415:47:57: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12515:47:57: Font TrebuchetMSBoldusing texture size 512x512 
     12615:47:57: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12715:47:57: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12815:47:57: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12915:47:57: Parsing script OgreLoadingPanel.overlay 
     13015:47:57: Finished parsing scripts for resource group Bootstrap 
     13115:47:57: Parsing scripts for resource group General 
     13215:47:57: Parsing script GameTools.program 
     13315:47:57: Parsing script atlascube.material 
     13415:47:57: Parsing script Diffuse.material 
     13515:47:58: An exception has been thrown! 
     136 
     137----------------------------------- 
     138Details: 
     139----------------------------------- 
     140Error #: 7 
     141Function: GpuProgramParameters::getParamIndex 
     142Description: Cannot find a parameter named CUBEMAP_SIZE.  
     143File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     144Line: 768 
     145Stack unwinding: <<beginning of stack>> 
     14615:47:58: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     147 
     148----------------------------------- 
     149Details: 
     150----------------------------------- 
     151Error #: 7 
     152Function: GpuProgramParameters::getParamIndex 
     153Description: Cannot find a parameter named CUBEMAP_SIZE.  
     154File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     155Line: 768 
     156Stack unwinding: <<beginning of stack>> 
     15715:47:58: An exception has been thrown! 
    136158 
    137159----------------------------------- 
     
    144166Line: 768 
    145167Stack unwinding: <<beginning of stack>> 
    146 09:22:27: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16815:47:58: Error in material GameTools/CubeMap/Diffuse at line 74 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    147169 
    148170----------------------------------- 
     
    155177Line: 768 
    156178Stack unwinding: <<beginning of stack>> 
    157 09:22:27: An exception has been thrown! 
     17915:47:58: An exception has been thrown! 
    158180 
    159181----------------------------------- 
     
    166188Line: 768 
    167189Stack unwinding: <<beginning of stack>> 
    168 09:22:27: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     19015:47:58: Error in material GameTools/CubeMap/Diffuse at line 75 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    169191 
    170192----------------------------------- 
     
    177199Line: 768 
    178200Stack unwinding: <<beginning of stack>> 
    179 09:22:27: Parsing script EnvMetals.material 
    180 09:22:27: An exception has been thrown! 
     20115:47:59: An exception has been thrown! 
     202 
     203----------------------------------- 
     204Details: 
     205----------------------------------- 
     206Error #: 7 
     207Function: GpuProgramParameters::getParamIndex 
     208Description: Cannot find a parameter named cameraPos.  
     209File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     210Line: 768 
     211Stack unwinding: <<beginning of stack>> 
     21215:47:59: Error in material GameTools/Diffuse2 at line 148 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     213 
     214----------------------------------- 
     215Details: 
     216----------------------------------- 
     217Error #: 7 
     218Function: GpuProgramParameters::getParamIndex 
     219Description: Cannot find a parameter named cameraPos.  
     220File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     221Line: 768 
     222Stack unwinding: <<beginning of stack>> 
     22315:47:59: An exception has been thrown! 
     224 
     225----------------------------------- 
     226Details: 
     227----------------------------------- 
     228Error #: 7 
     229Function: GpuProgramParameters::getParamIndex 
     230Description: Cannot find a parameter named REDUCED_CUBEMAP_SIZE.  
     231File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     232Line: 768 
     233Stack unwinding: <<beginning of stack>> 
     23415:47:59: Error in material GameTools/Diffuse2 at line 149 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     235 
     236----------------------------------- 
     237Details: 
     238----------------------------------- 
     239Error #: 7 
     240Function: GpuProgramParameters::getParamIndex 
     241Description: Cannot find a parameter named REDUCED_CUBEMAP_SIZE.  
     242File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     243Line: 768 
     244Stack unwinding: <<beginning of stack>> 
     24515:47:59: Parsing script EnvMetals.material 
     24615:47:59: An exception has been thrown! 
    181247 
    182248----------------------------------- 
     
    189255Line: 768 
    190256Stack unwinding: <<beginning of stack>> 
    191 09:22:27: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25715:47:59: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    192258 
    193259----------------------------------- 
     
    200266Line: 768 
    201267Stack unwinding: <<beginning of stack>> 
    202 09:22:27: An exception has been thrown! 
     26815:47:59: An exception has been thrown! 
    203269 
    204270----------------------------------- 
     
    211277Line: 768 
    212278Stack unwinding: <<beginning of stack>> 
    213 09:22:27: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27915:47:59: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    214280 
    215281----------------------------------- 
     
    222288Line: 768 
    223289Stack unwinding: <<beginning of stack>> 
    224 09:22:27: An exception has been thrown! 
     29015:47:59: An exception has been thrown! 
    225291 
    226292----------------------------------- 
     
    233299Line: 768 
    234300Stack unwinding: <<beginning of stack>> 
    235 09:22:27: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30115:47:59: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    236302 
    237303----------------------------------- 
     
    244310Line: 768 
    245311Stack unwinding: <<beginning of stack>> 
    246 09:22:27: An exception has been thrown! 
     31215:47:59: An exception has been thrown! 
    247313 
    248314----------------------------------- 
     
    255321Line: 768 
    256322Stack unwinding: <<beginning of stack>> 
    257 09:22:27: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32315:47:59: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    258324 
    259325----------------------------------- 
     
    266332Line: 768 
    267333Stack unwinding: <<beginning of stack>> 
    268 09:22:27: Parsing script GameTools.material 
    269 09:22:27: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
    270 09:22:27: An exception has been thrown! 
     33415:47:59: Parsing script GameTools.material 
     33515:47:59: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
     33615:47:59: An exception has been thrown! 
    271337 
    272338----------------------------------- 
     
    279345Line: 768 
    280346Stack unwinding: <<beginning of stack>> 
    281 09:22:27: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34715:47:59: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    282348 
    283349----------------------------------- 
     
    290356Line: 768 
    291357Stack unwinding: <<beginning of stack>> 
    292 09:22:27: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
    293 09:22:27: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    294 09:22:27: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
    295 09:22:27: Parsing script GameTools_HPS.material 
    296 09:22:27: 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 09: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 ----------------------------------- 
    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 09:22:27: 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 09: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 ----------------------------------- 
    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 09:22:27: An exception has been thrown! 
     35815:47:59: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
     35915:47:59: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     36015:47:59: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
     36115:47:59: Parsing script GameTools_HPS.material 
     36215:47:59: 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>> 
     37315:47:59: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     374 
     375----------------------------------- 
     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>> 
     38415:47:59: An exception has been thrown! 
     385 
     386----------------------------------- 
     387Details: 
     388----------------------------------- 
     389Error #: 7 
     390Function: GpuProgramParameters::getParamIndex 
     391Description: Cannot find a parameter named worldViewProj.  
     392File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     393Line: 768 
     394Stack unwinding: <<beginning of stack>> 
     39515:47:59: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     396 
     397----------------------------------- 
     398Details: 
     399----------------------------------- 
     400Error #: 7 
     401Function: GpuProgramParameters::getParamIndex 
     402Description: Cannot find a parameter named worldViewProj.  
     403File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     404Line: 768 
     405Stack unwinding: <<beginning of stack>> 
     40615:47:59: An exception has been thrown! 
    341407 
    342408----------------------------------- 
     
    349415Line: 768 
    350416Stack unwinding: <<beginning of stack>> 
    351 09: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! 
     41715:47:59: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    352418 
    353419----------------------------------- 
     
    360426Line: 768 
    361427Stack unwinding: <<beginning of stack>> 
    362 09:22:27: 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 09: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 ----------------------------------- 
    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 09:22:27: An exception has been thrown! 
     42815:47:59: 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>> 
     43915:47:59: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     440 
     441----------------------------------- 
     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>> 
     45015:47:59: An exception has been thrown! 
    385451 
    386452----------------------------------- 
     
    393459Line: 768 
    394460Stack unwinding: <<beginning of stack>> 
    395 09: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! 
     46115:47:59: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    396462 
    397463----------------------------------- 
     
    404470Line: 768 
    405471Stack unwinding: <<beginning of stack>> 
    406 09:22:27: An exception has been thrown! 
     47215:47:59: An exception has been thrown! 
    407473 
    408474----------------------------------- 
     
    415481Line: 768 
    416482Stack unwinding: <<beginning of stack>> 
    417 09: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! 
     48315:47:59: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    418484 
    419485----------------------------------- 
     
    426492Line: 768 
    427493Stack unwinding: <<beginning of stack>> 
    428 09:22:27: 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 09: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 ----------------------------------- 
    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 09:22:27: Parsing script GlassHead.material 
    451 09:22:27: An exception has been thrown! 
     49415:47:59: An exception has been thrown! 
     495 
     496----------------------------------- 
     497Details: 
     498----------------------------------- 
     499Error #: 7 
     500Function: GpuProgramParameters::getParamIndex 
     501Description: Cannot find a parameter named worldViewProj.  
     502File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     503Line: 768 
     504Stack unwinding: <<beginning of stack>> 
     50515:47:59: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     506 
     507----------------------------------- 
     508Details: 
     509----------------------------------- 
     510Error #: 7 
     511Function: GpuProgramParameters::getParamIndex 
     512Description: Cannot find a parameter named worldViewProj.  
     513File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     514Line: 768 
     515Stack unwinding: <<beginning of stack>> 
     51615:47:59: Parsing script GlassHead.material 
     51715:47:59: An exception has been thrown! 
    452518 
    453519----------------------------------- 
     
    460526Line: 768 
    461527Stack unwinding: <<beginning of stack>> 
    462 09:22:27: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52815:47:59: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    463529 
    464530----------------------------------- 
     
    471537Line: 768 
    472538Stack unwinding: <<beginning of stack>> 
    473 09:22:27: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    474 09:22:27: 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 09: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 ----------------------------------- 
    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 09:22:27: An exception has been thrown! 
     53915:47:59: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     54015:47:59: An exception has been thrown! 
     541 
     542----------------------------------- 
     543Details: 
     544----------------------------------- 
     545Error #: 7 
     546Function: GpuProgramParameters::getParamIndex 
     547Description: Cannot find a parameter named worldViewProj.  
     548File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     549Line: 768 
     550Stack unwinding: <<beginning of stack>> 
     55115:47:59: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     552 
     553----------------------------------- 
     554Details: 
     555----------------------------------- 
     556Error #: 7 
     557Function: GpuProgramParameters::getParamIndex 
     558Description: Cannot find a parameter named worldViewProj.  
     559File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     560Line: 768 
     561Stack unwinding: <<beginning of stack>> 
     56215:47:59: An exception has been thrown! 
    497563 
    498564----------------------------------- 
     
    505571Line: 768 
    506572Stack unwinding: <<beginning of stack>> 
    507 09:22:27: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     57315:47:59: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    508574 
    509575----------------------------------- 
     
    516582Line: 768 
    517583Stack unwinding: <<beginning of stack>> 
    518 09:22:27: An exception has been thrown! 
     58415:48:00: An exception has been thrown! 
    519585 
    520586----------------------------------- 
     
    527593Line: 768 
    528594Stack unwinding: <<beginning of stack>> 
    529 09:22:27: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     59515:48:00: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    530596 
    531597----------------------------------- 
     
    538604Line: 768 
    539605Stack unwinding: <<beginning of stack>> 
    540 09:22:28: Parsing script Glow.material 
    541 09:22:28: An exception has been thrown! 
     60615:48:00: Parsing script Glow.material 
     60715:48:00: An exception has been thrown! 
    542608 
    543609----------------------------------- 
     
    550616Line: 768 
    551617Stack unwinding: <<beginning of stack>> 
    552 09:22:28: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     61815:48:00: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    553619 
    554620----------------------------------- 
     
    561627Line: 768 
    562628Stack unwinding: <<beginning of stack>> 
    563 09:22:28: Parsing script hangar.material 
    564 09:22:28: Parsing script kupola.material 
    565 09:22:28: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    566 09:22:28: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    567 09:22:28: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    568 09:22:28: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    569 09:22:28: Parsing script Ogre.material 
    570 09:22:28: Parsing script Particles.material 
    571 09:22:28: 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 09: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 ----------------------------------- 
    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 09:22:28: An exception has been thrown! 
    594  
    595 ----------------------------------- 
    596 Details: 
    597 ----------------------------------- 
    598 Error #: 7 
    599 Function: GpuProgramParameters::getParamIndex 
    600 Description: Cannot find a parameter named worldViewProj.  
    601 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    602 Line: 768 
    603 Stack unwinding: <<beginning of stack>> 
    604 09: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 ----------------------------------- 
    607 Details: 
    608 ----------------------------------- 
    609 Error #: 7 
    610 Function: GpuProgramParameters::getParamIndex 
    611 Description: Cannot find a parameter named worldViewProj.  
    612 File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
    613 Line: 768 
    614 Stack unwinding: <<beginning of stack>> 
    615 09:22:28: Parsing script RaytraceDemo.material 
    616 09:22:28: Parsing script stairs.material 
    617 09:22:28: Parsing script X3D.material 
    618 09:22:28: Parsing script GameTools_Glow.compositor 
    619 09:22:29: Parsing script GameTools_ToneMap.compositor 
    620 09:22:29: Parsing script sample.fontdef 
    621 09:22:29: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    622 09:22:29: Parsing script GameTools.particle 
    623 09:22:29: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    624 09:22:29: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    625 09:22:29: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    626 09:22:29: Parsing script Compositor.overlay 
    627 09:22:29: Parsing script DP3.overlay 
    628 09:22:29: Parsing script Example-CubeMapping.overlay 
    629 09:22:29: Parsing script Example-DynTex.overlay 
    630 09:22:29: Parsing script Example-Water.overlay 
    631 09:22:29: Parsing script FullScreen.overlay 
    632 09:22:29: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    633 09:22:29: Parsing script Shadows.overlay 
    634 09:22:29: Finished parsing scripts for resource group General 
    635 09:22:29: Parsing scripts for resource group Internal 
    636 09:22:29: Finished parsing scripts for resource group Internal 
    637 09:22:29: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    638 09:22:29: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    639 09:22:29: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    640 09:22:29: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    641 09:22:29: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    642 09:22:29: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    643 09:22:29: Win32Input8: DirectInput Activation Starts 
    644 09:22:29: Win32Input8: Establishing keyboard input. 
    645 09:22:29: Win32Input8: Keyboard input established. 
    646 09:22:29: Win32Input8: Initializing mouse input in immediate mode. 
    647 09:22:29: Win32Input8: Mouse input in immediate mode initialized. 
    648 09:22:29: Win32Input8: DirectInput OK. 
     62915:48:00: Parsing script hangar.material 
     63015:48:00: Parsing script kupola.material 
     63115:48:00: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     63215:48:00: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     63315:48:00: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     63415:48:00: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     63515:48:00: Parsing script Ogre.material 
     63615:48:00: Parsing script Particles.material 
     63715:48:00: An exception has been thrown! 
     638 
     639----------------------------------- 
     640Details: 
     641----------------------------------- 
     642Error #: 7 
     643Function: GpuProgramParameters::getParamIndex 
     644Description: Cannot find a parameter named worldViewProj.  
     645File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     646Line: 768 
     647Stack unwinding: <<beginning of stack>> 
     64815:48:00: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     649 
     650----------------------------------- 
     651Details: 
     652----------------------------------- 
     653Error #: 7 
     654Function: GpuProgramParameters::getParamIndex 
     655Description: Cannot find a parameter named worldViewProj.  
     656File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     657Line: 768 
     658Stack unwinding: <<beginning of stack>> 
     65915:48:00: An exception has been thrown! 
     660 
     661----------------------------------- 
     662Details: 
     663----------------------------------- 
     664Error #: 7 
     665Function: GpuProgramParameters::getParamIndex 
     666Description: Cannot find a parameter named worldViewProj.  
     667File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     668Line: 768 
     669Stack unwinding: <<beginning of stack>> 
     67015:48:00: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     671 
     672----------------------------------- 
     673Details: 
     674----------------------------------- 
     675Error #: 7 
     676Function: GpuProgramParameters::getParamIndex 
     677Description: Cannot find a parameter named worldViewProj.  
     678File: d:\ogre_gametools\ogremain\src\ogregpuprogram.cpp 
     679Line: 768 
     680Stack unwinding: <<beginning of stack>> 
     68115:48:00: Parsing script RaytraceDemo.material 
     68215:48:00: Parsing script stairs.material 
     68315:48:00: Parsing script X3D.material 
     68415:48:00: Parsing script GameTools_Glow.compositor 
     68515:48:00: Parsing script GameTools_ToneMap.compositor 
     68615:48:00: Parsing script sample.fontdef 
     68715:48:00: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     68815:48:00: Parsing script GameTools.particle 
     68915:48:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     69015:48:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     69115:48:00: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     69215:48:00: Parsing script Compositor.overlay 
     69315:48:00: Parsing script DP3.overlay 
     69415:48:00: Parsing script Example-CubeMapping.overlay 
     69515:48:00: Parsing script Example-DynTex.overlay 
     69615:48:00: Parsing script Example-Water.overlay 
     69715:48:00: Parsing script FullScreen.overlay 
     69815:48:00: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     69915:48:00: Parsing script Shadows.overlay 
     70015:48:00: Finished parsing scripts for resource group General 
     70115:48:00: Parsing scripts for resource group Internal 
     70215:48:00: Finished parsing scripts for resource group Internal 
     70315:48:00: Mesh: Loading ogrehead.mesh. 
     70415:48:00: Texture: WeirdEye.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70515:48:00: Texture: GreenSkin.jpg: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70615:48:00: Texture: spheremap.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     70715:48:00: Texture: dirt01.jpg: Loading 1 faces(PF_B8G8R8,96x96x1) with 6 generated mipmaps from Image. Internal format is PF_X8R8G8B8,96x96x1. 
     70815:48:00: An exception has been thrown! 
     709 
     710----------------------------------- 
     711Details: 
     712----------------------------------- 
     713Error #: 8 
     714Function: ResourceGroupManager::openResource 
     715Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
     716File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
     717Line: 583 
     718Stack unwinding: <<beginning of stack>> 
     71915:48:00: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     720 
     721----------------------------------- 
     722Details: 
     723----------------------------------- 
     724Error #: 8 
     725Function: ResourceGroupManager::openResource 
     726Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
     727File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
     728Line: 583 
     729Stack unwinding: <<beginning of stack>> 
     73015:48:00: An exception has been thrown! 
     731 
     732----------------------------------- 
     733Details: 
     734----------------------------------- 
     735Error #: 8 
     736Function: ResourceGroupManager::openResource 
     737Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
     738File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
     739Line: 583 
     740Stack unwinding: <<beginning of stack>> 
     74115:48:00: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     742 
     743----------------------------------- 
     744Details: 
     745----------------------------------- 
     746Error #: 8 
     747Function: ResourceGroupManager::openResource 
     748Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
     749File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
     750Line: 583 
     751Stack unwinding: <<beginning of stack>> 
     75215:48:00: An exception has been thrown! 
     753 
     754----------------------------------- 
     755Details: 
     756----------------------------------- 
     757Error #: 8 
     758Function: ResourceGroupManager::openResource 
     759Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
     760File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
     761Line: 583 
     762Stack unwinding: <<beginning of stack>> 
     76315:48:00: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     764 
     765----------------------------------- 
     766Details: 
     767----------------------------------- 
     768Error #: 8 
     769Function: ResourceGroupManager::openResource 
     770Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
     771File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
     772Line: 583 
     773Stack unwinding: <<beginning of stack>> 
     77415:48:00: An exception has been thrown! 
     775 
     776----------------------------------- 
     777Details: 
     778----------------------------------- 
     779Error #: 8 
     780Function: ResourceGroupManager::openResource 
     781Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
     782File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
     783Line: 583 
     784Stack unwinding: <<beginning of stack>> 
     78515:48:00: Error loading texture cubemap.jpg. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     786 
     787----------------------------------- 
     788Details: 
     789----------------------------------- 
     790Error #: 8 
     791Function: ResourceGroupManager::openResource 
     792Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
     793File: d:\ogre_gametools\ogremain\src\ogreresourcegroupmanager.cpp 
     794Line: 583 
     795Stack unwinding: <<beginning of stack>> 
     79615:48:00: Mesh: Loading atlascube.mesh. 
     79715:48:00: Texture: cubbe.jpg: Loading 1 faces(PF_B8G8R8,556x556x1) with 9 generated mipmaps from Image. Internal format is PF_X8R8G8B8,556x556x1. 
     79815:48:01: Creating viewport on target 'rtt/51581056', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     79915:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80015:48:01: Creating viewport on target 'rtt/51581120', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     80115:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80215:48:01: Creating viewport on target 'rtt/51581184', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     80315:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80415:48:01: Creating viewport on target 'rtt/51581248', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     80515:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80615:48:01: Creating viewport on target 'rtt/51581312', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     80715:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     80815:48:01: Creating viewport on target 'rtt/51581376', rendering from camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     80915:48:01: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     81015:48:01: WARNING: Texture instance 'object_SE_0_DISTANCECUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     81115:48:01: Creating viewport on target 'rtt/51582656', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     81215:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81315:48:01: Creating viewport on target 'rtt/51582720', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     81415:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81515:48:01: Creating viewport on target 'rtt/51582784', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     81615:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81715:48:01: Creating viewport on target 'rtt/51582848', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     81815:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     81915:48:01: Creating viewport on target 'rtt/51582912', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     82015:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     82115:48:01: Creating viewport on target 'rtt/51582976', rendering from camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     82215:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     82315:48:01: Creating viewport on target 'rtt/51584000', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     82415:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82515:48:01: Creating viewport on target 'rtt/51584064', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     82615:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82715:48:01: Creating viewport on target 'rtt/51584128', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     82815:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     82915:48:01: Creating viewport on target 'rtt/51584192', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     83015:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83115:48:01: Creating viewport on target 'rtt/51584256', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     83215:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83315:48:01: Creating viewport on target 'rtt/51584320', rendering from camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     83415:48:01: Viewport for camera 'object_SE_0_COLORCUBEMAP_REDUCEDCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 4 H: 4 
     83515:48:01: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_REDUCED' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     83615:48:01: Win32Input8: DirectInput Activation Starts 
     83715:48:01: Win32Input8: Establishing keyboard input. 
     83815:48:01: Win32Input8: Keyboard input established. 
     83915:48:01: Win32Input8: Initializing mouse input in immediate mode. 
     84015:48:01: Win32Input8: Mouse input in immediate mode initialized. 
     84115:48:01: Win32Input8: DirectInput OK. 
     84215:48:01: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     84315:48:13: Unregistering ResourceManager for type BspLevel 
     84415:48:13: Render Target 'rtt/51584000' Average FPS: 29.2412 Best FPS: 43.7318 Worst FPS: 21.7822 
     84515:48:13: Render Target 'rtt/51584064' Average FPS: 29.2415 Best FPS: 43.7318 Worst FPS: 21.7822 
     84615:48:13: Render Target 'rtt/51584128' Average FPS: 29.236 Best FPS: 43.7743 Worst FPS: 21.7822 
     84715:48:13: Render Target 'rtt/51584192' Average FPS: 30.7706 Best FPS: 43.1862 Worst FPS: 22.3414 
     84815:48:13: Render Target 'rtt/51584256' Average FPS: 30.76 Best FPS: 43.1448 Worst FPS: 22.3414 
     84915:48:13: Render Target 'rtt/51584320' Average FPS: 30.7706 Best FPS: 43.1448 Worst FPS: 22.3414 
     85015:48:13: Render Target 'rtt/51582656' Average FPS: 29.2355 Best FPS: 43.7743 Worst FPS: 21.7822 
     85115:48:13: Render Target 'rtt/51582720' Average FPS: 29.2381 Best FPS: 43.7318 Worst FPS: 21.8038 
     85215:48:13: Render Target 'rtt/51582784' Average FPS: 29.2359 Best FPS: 43.7743 Worst FPS: 21.7822 
     85315:48:13: Render Target 'rtt/51582848' Average FPS: 29.2374 Best FPS: 43.7743 Worst FPS: 21.8038 
     85415:48:13: Render Target 'rtt/51582912' Average FPS: 29.2415 Best FPS: 43.7318 Worst FPS: 21.7822 
     85515:48:13: Render Target 'rtt/51582976' Average FPS: 29.2359 Best FPS: 43.7743 Worst FPS: 21.7822 
     85615:48:13: Render Target 'rtt/51581056' Average FPS: 5.20071 Best FPS: 7.48363 Worst FPS: 3.62976 
     85715:48:13: Render Target 'rtt/51581120' Average FPS: 4.87062 Best FPS: 7.38689 Worst FPS: 3.56824 
     85815:48:13: Render Target 'rtt/51581184' Average FPS: 4.64788 Best FPS: 7.27935 Worst FPS: 3.43348 
     85915:48:13: Render Target 'rtt/51581248' Average FPS: 5.07516 Best FPS: 7.47664 Worst FPS: 3.76648 
     86015:48:13: Render Target 'rtt/51581312' Average FPS: 5.27908 Best FPS: 7.46965 Worst FPS: 3.61664 
     86115:48:13: Render Target 'rtt/51581376' Average FPS: 5.19112 Best FPS: 7.59013 Worst FPS: 3.6036 
     86215:48:13: *-*-* OGRE Shutdown 
     86315:48:13: Unregistering ResourceManager for type Compositor 
     86415:48:13: Unregistering ResourceManager for type Font 
     86515:48:13: Unregistering ResourceManager for type Skeleton 
     86615:48:13: Unregistering ResourceManager for type Mesh 
     86715:48:13: Unregistering ResourceManager for type HighLevelGpuProgram 
     86815:48:13: Unloading library .\Plugin_CgProgramManager 
     86915:48:13: Unloading library .\Plugin_OctreeSceneManager 
     87015:48:13: Unloading library .\Plugin_BSPSceneManager 
     87115:48:13: Unloading library .\Plugin_ParticleFX 
     87215:48:13: Render Target 'OGRE Render Window' Average FPS: 30.785 Best FPS: 43.1448 Worst FPS: 22.3414 
     87315:48:13: D3D9 : Shutting down cleanly. 
     87415:48:13: Unregistering ResourceManager for type Texture 
     87515:48:13: Unregistering ResourceManager for type GpuProgram 
     87615:48:13: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     87715:48:13: Unloading library .\RenderSystem_Direct3D9 
     87815:48:13: Unregistering ResourceManager for type Material 
     87915:48:13: Unloading library OgrePlatform_d.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreLeaks.log

    r1487 r1519  
    11 ----------------------------------------------------------------------------------------------------------------------------------  
    2 |                                          Memory leak report for:  09/26/2006 09:14:54                                            | 
     2|                                          Memory leak report for:  09/27/2006 15:48:13                                            | 
    33 ----------------------------------------------------------------------------------------------------------------------------------  
    44 
    55 
    6 341 memory leaks found: 
     6261 memory leaks found: 
    77 
    88Alloc.   Addr       Size       Addr       Size                        BreakOn BreakOn               
    99Number Reported   Reported    Actual     Actual     Unused    Method  Dealloc Realloc Allocated by  
    1010------ ---------- ---------- ---------- ---------- ---------- -------- ------- ------- ---------------------------------------------------  
    11 023912 0x00CE7C78 0x00000018 0x00CE7C68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    12 023918 0x00CE8C10 0x00000018 0x00CE8C00 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    13 023890 0x00CF6B38 0x00000018 0x00CF6B28 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    14 023892 0x00D28B48 0x00000018 0x00D28B38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    15 006776 0x00D2B370 0x00000028 0x00D2B360 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    16 006622 0x00D2B6E0 0x00000048 0x00D2B6D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    17 006626 0x00D2B788 0x00000048 0x00D2B778 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    18 006630 0x00D2B830 0x00000048 0x00D2B820 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    19 006794 0x00D2CDC0 0x00000028 0x00D2CDB0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    20 006612 0x00D2E390 0x00000028 0x00D2E380 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    21 006618 0x00D2EE08 0x00000048 0x00D2EDF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    22 006613 0x00D2EF00 0x00000048 0x00D2EEF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    23 007128 0x00D2F020 0x00000028 0x00D2F010 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    24 006956 0x00D2F928 0x00000028 0x00D2F918 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    25 006957 0x00D2F9B0 0x00000048 0x00D2F9A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    26 006962 0x00D2FAB8 0x00000048 0x00D2FAA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    27 006966 0x00D2FB60 0x00000048 0x00D2FB50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    28 006970 0x00D2FC08 0x00000048 0x00D2FBF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    29 006974 0x00D2FCB0 0x00000028 0x00D2FCA0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    30 006975 0x00D2FD38 0x00000048 0x00D2FD28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    31 006980 0x00D2FE48 0x00000048 0x00D2FE38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    32 006984 0x00D2FEF0 0x00000048 0x00D2FEE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    33 006988 0x00D2FF98 0x00000048 0x00D2FF88 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    34 006777 0x00D41670 0x00000048 0x00D41660 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    35 006782 0x00D41718 0x00000048 0x00D41708 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    36 006786 0x00D417C0 0x00000048 0x00D417B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    37 006790 0x00D41868 0x00000048 0x00D41858 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    38 006795 0x00D41910 0x00000048 0x00D41900 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    39 006800 0x00D419B8 0x00000048 0x00D419A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    40 006804 0x00D41A60 0x00000048 0x00D41A50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    41 006808 0x00D41B08 0x00000048 0x00D41AF8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    42 007129 0x00D42C38 0x00000048 0x00D42C28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    43 007134 0x00D42CE0 0x00000048 0x00D42CD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    44 007138 0x00D42D88 0x00000048 0x00D42D78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    45 007142 0x00D42E30 0x00000048 0x00D42E20 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    46 007146 0x00D42ED8 0x00000028 0x00D42EC8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    47 007147 0x00D42F60 0x00000048 0x00D42F50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    48 007152 0x00D43070 0x00000048 0x00D43060 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    49 007156 0x00D43118 0x00000048 0x00D43108 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    50 007160 0x00D431C0 0x00000048 0x00D431B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    51 007300 0x00D4B218 0x00000028 0x00D4B208 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    52 007301 0x00D4B2A0 0x00000048 0x00D4B290 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    53 007306 0x00D4B3A8 0x00000048 0x00D4B398 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    54 007310 0x00D4B450 0x00000048 0x00D4B440 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    55 007314 0x00D4B4F8 0x00000048 0x00D4B4E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    56 007318 0x00D4B5A0 0x00000028 0x00D4B590 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    57 007319 0x00D4B628 0x00000048 0x00D4B618 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    58 007324 0x00D4B738 0x00000048 0x00D4B728 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    59 007328 0x00D4B7E0 0x00000048 0x00D4B7D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    60 007332 0x00D4B888 0x00000048 0x00D4B878 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    61 023891 0x00D4D4B0 0x00000018 0x00D4D4A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    62 023899 0x00D4E7E0 0x00000018 0x00D4E7D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    63 023901 0x00D4F6A0 0x00000018 0x00D4F690 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    64 007730 0x00D50150 0x00000048 0x00D50140 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    65 007724 0x00D51590 0x00000028 0x00D51580 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    66 007725 0x00D51618 0x00000048 0x00D51608 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    67 023900 0x00D51918 0x00000018 0x00D51908 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    68 023902 0x00D5DFB0 0x00000018 0x00D5DFA0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    69 023917 0x00D5FF58 0x000000C4 0x00D5FF48 0x000000E4 0x00000000 new         N       N    ogresharedruns.cpp(147) OgreSharedRuns::createInstance 
    70 023910 0x00D67570 0x00000018 0x00D67560 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    71 023909 0x00D69B08 0x00000018 0x00D69AF8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    72 008567 0x00D6A3E8 0x00000028 0x00D6A3D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    73 008568 0x00D6A518 0x00000048 0x00D6A508 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    74 008573 0x00D6A620 0x00000048 0x00D6A610 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    75 008577 0x00D6A728 0x00000048 0x00D6A718 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    76 008581 0x00D6A7D0 0x00000048 0x00D6A7C0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    77 008747 0x00D6B8C8 0x00000028 0x00D6B8B8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    78 008748 0x00D6C068 0x00000048 0x00D6C058 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    79 008753 0x00D6CC88 0x00000048 0x00D6CC78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    80 008757 0x00D6CD90 0x00000048 0x00D6CD80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    81 008761 0x00D6CE38 0x00000048 0x00D6CE28 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    82 008765 0x00D6CEE0 0x00000048 0x00D6CED0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    83 008769 0x00D6CFE8 0x00000028 0x00D6CFD8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    84 008770 0x00D6D070 0x00000048 0x00D6D060 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    85 008775 0x00D6D180 0x00000048 0x00D6D170 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    86 008779 0x00D6D228 0x00000028 0x00D6D218 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    87 008780 0x00D6D2B0 0x00000048 0x00D6D2A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    88 008785 0x00D6D3C0 0x00000048 0x00D6D3B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    89 008789 0x00D6D468 0x00000048 0x00D6D458 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    90 023889 0x00D6EAE0 0x00000018 0x00D6EAD0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    91 023911 0x01BECAD8 0x00000018 0x01BECAC8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    92 047747 0x01BF2778 0x00000070 0x01BF2768 0x00000090 0x00000000 new         N       N    ??(0) ?? 
    93 009572 0x01BF3650 0x00000028 0x01BF3640 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    94 009573 0x01BFF018 0x00000048 0x01BFF008 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    95 009582 0x01BFF0C0 0x00000048 0x01BFF0B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    96 009586 0x01BFF168 0x00000028 0x01BFF158 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    97 009592 0x01BFF1F0 0x00000048 0x01BFF1E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    98 009587 0x01BFF310 0x00000048 0x01BFF300 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    99 009600 0x01BFF3B8 0x00000028 0x01BFF3A8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    100 009606 0x01BFF440 0x00000048 0x01BFF430 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    101 009596 0x01BFF4E8 0x00000048 0x01BFF4D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    102 009601 0x01BFF590 0x00000048 0x01BFF580 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    103 009610 0x01BFF6D0 0x00000048 0x01BFF6C0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    104 009614 0x01BFF838 0x00000048 0x01BFF828 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    105 009618 0x01BFF940 0x00000048 0x01BFF930 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    106 009622 0x01BFFA48 0x00000048 0x01BFFA38 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    107 009578 0x01C013E0 0x00000048 0x01C013D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    108 010740 0x01C035A0 0x00000048 0x01C03590 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    109 023908 0x01C03648 0x000000C4 0x01C03638 0x000000E4 0x00000000 new         N       N    ogresharedruns.cpp(147) OgreSharedRuns::createInstance 
    110 023919 0x01C03768 0x00000018 0x01C03758 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    111 010734 0x01C03B58 0x00000028 0x01C03B48 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    112 010735 0x01C03BE0 0x00000048 0x01C03BD0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    113 023888 0x01C1EEF0 0x000000C4 0x01C1EEE0 0x000000E4 0x00000000 new         N       N    ogresharedruns.cpp(147) OgreSharedRuns::createInstance 
    114 010510 0x01C27970 0x00000028 0x01C27960 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    115 010511 0x01C279F8 0x00000048 0x01C279E8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    116 010585 0x01C27D78 0x00000048 0x01C27D68 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    117 010579 0x01C298F0 0x00000028 0x01C298E0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    118 010580 0x01C29978 0x00000048 0x01C29968 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    119 023921 0x01C382D8 0x00000018 0x01C382C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    120 011604 0x01C3D4E0 0x00000028 0x01C3D4D0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
    121 011605 0x01C3D568 0x00000048 0x01C3D558 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    122 011610 0x01C3D6D0 0x00000048 0x01C3D6C0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    123 011614 0x01C3D7D8 0x00000048 0x01C3D7C8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    124 023898 0x01C40DE8 0x000000C4 0x01C40DD8 0x000000E4 0x00000000 new         N       N    ogresharedruns.cpp(147) OgreSharedRuns::createInstance 
    125 019951 0x01CA0B68 0x00000140 0x01CA0B58 0x00000160 0x00000000 new         N       N    ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 
    126 019952 0x01CA0D08 0x0000000C 0x01CA0CF8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    127 019953 0x01CA0D70 0x00000018 0x01CA0D60 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    128 019954 0x01CA0DE8 0x0000000C 0x01CA0DD8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    129 019955 0x01CA0E50 0x00000018 0x01CA0E40 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    130 019956 0x01CA0EC8 0x00000018 0x01CA0EB8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    131 019957 0x01CA0F40 0x00000030 0x01CA0F30 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    132 019958 0x01CA0FD0 0x00000018 0x01CA0FC0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    133 019959 0x01CA1048 0x00000008 0x01CA1038 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
    134 019960 0x01CA10B0 0x00000018 0x01CA10A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    135 019961 0x01CA1128 0x00000018 0x01CA1118 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    136 019962 0x01CA11A0 0x00000018 0x01CA1190 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    137 019963 0x01CA1218 0x00000018 0x01CA1208 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    138 019964 0x01CA1290 0x00000018 0x01CA1280 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    139 019965 0x01CA1308 0x00000018 0x01CA12F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    140 019966 0x01CA1380 0x00000018 0x01CA1370 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    141 019967 0x01CA13F8 0x00000018 0x01CA13E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    142 019968 0x01CA1470 0x00000018 0x01CA1460 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    143 019969 0x01CA14E8 0x00000018 0x01CA14D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    144 019970 0x01CA1560 0x00000018 0x01CA1550 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    145 019971 0x01CA15D8 0x00000048 0x01CA15C8 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 
    146 019972 0x01CA1680 0x00000030 0x01CA1670 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    147 019973 0x01CA1710 0x00000030 0x01CA1700 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    148 019974 0x01CA17A0 0x00000030 0x01CA1790 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    149 019975 0x01CA1830 0x00000030 0x01CA1820 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    150 019976 0x01CA18C0 0x00000030 0x01CA18B0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    151 019977 0x01CA1950 0x00000030 0x01CA1940 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    152 019978 0x01CA19E0 0x00000030 0x01CA19D0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    153 019979 0x01CA1A70 0x00000030 0x01CA1A60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    154 019980 0x01CA1B00 0x0000000C 0x01CA1AF0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    155 019981 0x01CA1B68 0x00000048 0x01CA1B58 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 
    156 019982 0x01CA1C10 0x00000030 0x01CA1C00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    157 019983 0x01CA1CA0 0x00000030 0x01CA1C90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    158 019984 0x01CA1D30 0x00000030 0x01CA1D20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    159 019985 0x01CA1DC0 0x00000030 0x01CA1DB0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    160 019986 0x01CA1E50 0x00000030 0x01CA1E40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    161 019987 0x01CA1EE0 0x00000030 0x01CA1ED0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    162 019988 0x01CA1F70 0x00000030 0x01CA1F60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    163 019989 0x01CA2000 0x00000030 0x01CA1FF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    164 019990 0x01CA2090 0x0000000C 0x01CA2080 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    165 019991 0x01CA20F8 0x0000004C 0x01CA20E8 0x0000006C 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
    166 019992 0x01CA21A0 0x00000030 0x01CA2190 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    167 019993 0x01CA2290 0x00000030 0x01CA2280 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    168 019994 0x01CA2320 0x00000030 0x01CA2310 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    169 019995 0x01CA23B0 0x00000030 0x01CA23A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    170 019997 0x01CA2440 0x00000030 0x01CA2430 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    171 019996 0x01CA2500 0x00000030 0x01CA24F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    172 019998 0x01CA25F0 0x00000030 0x01CA25E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    173 019999 0x01CA2680 0x00000030 0x01CA2670 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    174 020000 0x01CA2710 0x00000030 0x01CA2700 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    175 020001 0x01CA27A0 0x0000000C 0x01CA2790 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    176 020002 0x01CA2808 0x0000007C 0x01CA27F8 0x0000009C 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
    177 020003 0x01CA28E0 0x00000030 0x01CA28D0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    178 020004 0x01CA2970 0x00000030 0x01CA2960 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    179 020005 0x01CA2A00 0x00000030 0x01CA29F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    180 020012 0x01CA2A90 0x00000030 0x01CA2A80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    181 020006 0x01CA2B50 0x00000030 0x01CA2B40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    182 020007 0x01CA2C40 0x00000030 0x01CA2C30 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    183 020008 0x01CA2D30 0x00000030 0x01CA2D20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    184 020009 0x01CA2E20 0x00000030 0x01CA2E10 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    185 020010 0x01CA2F10 0x00000030 0x01CA2F00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    186 020011 0x01CA3000 0x00000030 0x01CA2FF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    187 020013 0x01CA30F0 0x00000030 0x01CA30E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    188 020014 0x01CA3180 0x00000030 0x01CA3170 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    189 020015 0x01CA3210 0x0000000C 0x01CA3200 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    190 020016 0x01CA3278 0x00000068 0x01CA3268 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
    191 020017 0x01CA3340 0x00000030 0x01CA3330 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    192 020021 0x01CA33D0 0x0000000C 0x01CA33C0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    193 020018 0x01CA3490 0x00000030 0x01CA3480 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    194 020019 0x01CA3580 0x00000030 0x01CA3570 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    195 020020 0x01CA3670 0x00000030 0x01CA3660 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    196 020022 0x01CA3760 0x00000068 0x01CA3750 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
    197 020023 0x01CA3828 0x00000030 0x01CA3818 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    198 020024 0x01CA3918 0x00000030 0x01CA3908 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    199 020027 0x01CA39A8 0x0000000C 0x01CA3998 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    200 020025 0x01CA3A68 0x00000030 0x01CA3A58 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    201 020026 0x01CA3B58 0x00000030 0x01CA3B48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    202 020028 0x01CA3C48 0x00000030 0x01CA3C38 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
    203 020029 0x01CA3CD8 0x00000030 0x01CA3CC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    204 020030 0x01CA3DC8 0x00000030 0x01CA3DB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    205 020031 0x01CA3E58 0x0000000C 0x01CA3E48 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    206 020032 0x01CA3EC0 0x00000030 0x01CA3EB0 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
    207 020033 0x01CA3F50 0x00000030 0x01CA3F40 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    208 020034 0x01CA3FE0 0x00000030 0x01CA3FD0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    209 020035 0x01CA4070 0x0000000C 0x01CA4060 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    210 020036 0x01CA40D8 0x000000B4 0x01CA40C8 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
    211 020037 0x01CA41E8 0x00000030 0x01CA41D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    212 020038 0x01CA4278 0x00000030 0x01CA4268 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    213 020039 0x01CA4308 0x00000030 0x01CA42F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    214 020040 0x01CA4398 0x00000030 0x01CA4388 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    215 020041 0x01CA4428 0x00000030 0x01CA4418 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    216 020042 0x01CA44B8 0x00000030 0x01CA44A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    217 020043 0x01CA4548 0x00000030 0x01CA4538 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    218 020044 0x01CA45D8 0x00000030 0x01CA45C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    219 020045 0x01CA4668 0x00000030 0x01CA4658 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    220 020046 0x01CA46F8 0x00000030 0x01CA46E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    221 020047 0x01CA4788 0x00000030 0x01CA4778 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    222 020048 0x01CA4818 0x0000000C 0x01CA4808 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    223 020049 0x01CA4880 0x00000080 0x01CA4870 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
    224 020050 0x01CA4960 0x00000030 0x01CA4950 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    225 020051 0x01CA49F0 0x00000030 0x01CA49E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    226 020052 0x01CA4A80 0x00000030 0x01CA4A70 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    227 020053 0x01CA4B10 0x00000030 0x01CA4B00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    228 020054 0x01CA4BA0 0x00000030 0x01CA4B90 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    229 020055 0x01CA4C30 0x00000030 0x01CA4C20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    230 020057 0x01CA4CC0 0x00000030 0x01CA4CB0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    231 020056 0x01CA4D80 0x00000030 0x01CA4D70 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    232 020058 0x01CA4E70 0x00000030 0x01CA4E60 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    233 020059 0x01CA4F00 0x00000030 0x01CA4EF0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    234 020061 0x01CA4F90 0x0000000C 0x01CA4F80 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    235 020060 0x01CA5050 0x00000030 0x01CA5040 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    236 021176 0x01D2F5B8 0x00000028 0x01D2F5A8 0x00000048 0x00000000 new         N       N    ogrepass.cpp(148) Ogre::Pass::operator`=' 
    237 021177 0x01D2F640 0x00000048 0x01D2F630 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    238 021179 0x01D2F6E8 0x00000028 0x01D2F6D8 0x00000048 0x00000000 new         N       N    ogrepass.cpp(148) Ogre::Pass::operator`=' 
    239 021180 0x01D2F770 0x00000048 0x01D2F760 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    240 021227 0x01D31378 0x00000028 0x01D31368 0x00000048 0x00000000 new         N       N    ogrepass.cpp(148) Ogre::Pass::operator`=' 
    241 021228 0x01D31400 0x00000048 0x01D313F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    242 021230 0x01D314A8 0x00000028 0x01D31498 0x00000048 0x00000000 new         N       N    ogrepass.cpp(148) Ogre::Pass::operator`=' 
    243 021231 0x01D31530 0x00000048 0x01D31520 0x00000068 0x00000000 new         N       N    ??(0) ?? 
    244 021375 0x01D32850 0x00000004 0x01D32840 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    245 021369 0x01D33380 0x000000C0 0x01D33370 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    246 021370 0x01D334A0 0x0000001C 0x01D33490 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    247 021371 0x01D33518 0x000000C4 0x01D33508 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    248 021372 0x01D33638 0x00000018 0x01D33628 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    249 021373 0x01D336B0 0x00000018 0x01D336A0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    250 021376 0x01D33790 0x00000018 0x01D33780 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    251 021387 0x01D33808 0x0000004C 0x01D337F8 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
    252 021388 0x01D338B0 0x0000008C 0x01D338A0 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
    253 021389 0x01D339F8 0x00000030 0x01D339E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    254 021650 0x01D33A88 0x00000004 0x01D33A78 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    255 021643 0x01D38220 0x00000008 0x01D38210 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    256 021509 0x01D3A710 0x00000018 0x01D3A700 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    257 021521 0x01D3A788 0x0000004C 0x01D3A778 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    258 021522 0x01D3A830 0x0000008C 0x01D3A820 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
    259 021523 0x01D3A918 0x00000030 0x01D3A908 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    260 021645 0x01D46C58 0x0000001C 0x01D46C48 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    261 021642 0x01D48E18 0x00000018 0x01D48E08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    262 021644 0x01D49090 0x000000C0 0x01D49080 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    263 021646 0x01D491B0 0x000000C4 0x01D491A0 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    264 021647 0x01D492D0 0x00000018 0x01D492C0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    265 021648 0x01D49348 0x00000018 0x01D49338 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    266 021651 0x01D493C0 0x00000018 0x01D493B0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    267 021658 0x01D49438 0x0000004C 0x01D49428 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
    268 021659 0x01D494E0 0x0000008C 0x01D494D0 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
    269 021660 0x01D49688 0x00000030 0x01D49678 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    270 022108 0x01D4EA70 0x00000004 0x01D4EA60 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    271 021778 0x01D502E8 0x00000018 0x01D502D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    272 021786 0x01D50360 0x0000004C 0x01D50350 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    273 021787 0x01D50408 0x0000008C 0x01D503F8 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
    274 021788 0x01D504F0 0x00000030 0x01D504E0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    275 022378 0x01D59400 0x00000018 0x01D593F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    276 021906 0x01D5EBC8 0x00000018 0x01D5EBB8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    277 021914 0x01D5EC40 0x00000084 0x01D5EC30 0x000000A4 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(252) OgreCausticCasterRenderTechniqueFactory 
    278 021952 0x01D60320 0x000000A8 0x01D60310 0x000000C8 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(102) OgreCausticCasterRenderTechnique::creat 
    279 021953 0x01D60558 0x00000030 0x01D60548 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    280 022101 0x01D64120 0x0000000C 0x01D64110 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    281 022072 0x01D67290 0x00000018 0x01D67280 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    282 022073 0x01D67308 0x000000A4 0x01D672F8 0x000000C4 0x00000000 new         N       N    ogrecausticcasterrendertechnique.cpp(90) OgreCausticCasterRenderTechnique::creat 
    283 022074 0x01D67408 0x00000030 0x01D673F8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    284 022098 0x01D70550 0x00000018 0x01D70540 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    285 022102 0x01D706B8 0x000000C0 0x01D706A8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    286 022103 0x01D707D8 0x0000001C 0x01D707C8 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    287 022104 0x01D70850 0x000000C4 0x01D70840 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    288 022105 0x01D70970 0x00000018 0x01D70960 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    289 022106 0x01D709E8 0x00000018 0x01D709D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    290 022109 0x01D70A60 0x00000018 0x01D70A50 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    291 022120 0x01D70AD8 0x0000004C 0x01D70AC8 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
    292 022121 0x01D70B80 0x0000008C 0x01D70B70 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
    293 022122 0x01D70C68 0x00000030 0x01D70C58 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    294 022380 0x01D70CF8 0x00000004 0x01D70CE8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    295 022240 0x01D775E0 0x00000018 0x01D775D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    296 022252 0x01D77858 0x0000004C 0x01D77848 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    297 022253 0x01D77900 0x0000008C 0x01D778F0 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
    298 022254 0x01D779E8 0x00000030 0x01D779D8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    299 022373 0x01D77A78 0x00000008 0x01D77A68 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    300 022375 0x01D7A918 0x0000001C 0x01D7A908 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    301 022377 0x01D7B268 0x00000018 0x01D7B258 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    302 022372 0x01D7B568 0x00000018 0x01D7B558 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    303 022374 0x01D7E5D8 0x000000C0 0x01D7E5C8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    304 022376 0x01D7E6F8 0x000000C4 0x01D7E6E8 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    305 023920 0x01D864E8 0x00000018 0x01D864D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    306 022381 0x01D86568 0x00000018 0x01D86558 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    307 022383 0x01D865E0 0x0000004C 0x01D865D0 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
    308 022384 0x01D86688 0x0000008C 0x01D86678 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
    309 022385 0x01D86830 0x00000030 0x01D86820 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    310 022506 0x01D889E0 0x0000004C 0x01D889D0 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    311 022503 0x01D89760 0x00000018 0x01D89750 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    312 022507 0x01D8D418 0x0000008C 0x01D8D408 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
    313 048004 0x01D8D500 0x00000004 0x01D8D4F0 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    314 022508 0x01D8D560 0x00000030 0x01D8D550 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    315 022630 0x01D8F718 0x0000001C 0x01D8F708 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    316 022627 0x01D903A0 0x00000008 0x01D90390 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    317 022626 0x01D90498 0x00000018 0x01D90488 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    318 022628 0x01D94140 0x000000C0 0x01D94130 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    319 022631 0x01D94260 0x000000C4 0x01D94250 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    320 022632 0x01D94380 0x00000018 0x01D94370 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    321 022633 0x01D943F8 0x00000018 0x01D943E8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    322 022634 0x01D94470 0x0000000C 0x01D94460 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    323 022636 0x01D944D8 0x00000018 0x01D944C8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    324 022640 0x01D945B0 0x00000084 0x01D945A0 0x000000A4 0x00000000 new         N       N    ogrecausticrecieverrendertechnique.cpp(166) OgreCausticRecieverRenderTechniqueFacto 
    325 022955 0x01D94690 0x0000001C 0x01D94680 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    326 022924 0x01DA6F70 0x00000034 0x01DA6F60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    327 022952 0x01DA76E8 0x00000004 0x01DA76D8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    328 023272 0x01DA7838 0x00000004 0x01DA7828 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    329 022953 0x01DA7ED0 0x000000C0 0x01DA7EC0 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    330 022956 0x01DA7FF0 0x00000008 0x01DA7FE0 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    331 022957 0x01DA8058 0x00000018 0x01DA8048 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    332 022961 0x01DA80D0 0x00000084 0x01DA80C0 0x000000A4 0x00000000 new         N       N    ogrecausticrecieverrendertechnique.cpp(166) OgreCausticRecieverRenderTechniqueFacto 
    333 023237 0x01DB9E70 0x00000034 0x01DB9E60 0x00000054 0x00000000 new         N       N    ??(0) ?? 
    334 023265 0x01DBA5E8 0x00000004 0x01DBA5D8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
    335 023266 0x01DBADD0 0x000000C0 0x01DBADC0 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
    336 023267 0x01DBAEF0 0x0000001C 0x01DBAEE0 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
    337 023268 0x01DBAF68 0x000000C4 0x01DBAF58 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
    338 023269 0x01DBB088 0x00000018 0x01DBB078 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    339 023270 0x01DBB100 0x00000018 0x01DBB0F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    340 023922 0x01DBB178 0x0000000C 0x01DBB168 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
    341 023273 0x01DBB1E0 0x00000018 0x01DBB1D0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    342 023275 0x01DBB258 0x0000004C 0x01DBB248 0x0000006C 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(179) OgreColorCubeMapRenderTechniqueFactory: 
    343 023276 0x01DBB300 0x0000008C 0x01DBB2F0 0x000000AC 0x00000000 new         N       N    ogrecubemaprendertechnique.cpp(56) OgreCubeMapRenderTechnique::createColor 
    344 023277 0x01DBB448 0x00000030 0x01DBB438 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    345 023396 0x01DC9A40 0x00000018 0x01DC9A30 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    346 023399 0x01DC9CB8 0x0000004C 0x01DC9CA8 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
    347 023400 0x01DC9D60 0x0000008C 0x01DC9D50 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
    348 023401 0x01DC9E48 0x00000030 0x01DC9E38 0x00000050 0x00000000 new         N       N    ??(0) ?? 
    349 023520 0x01DC9ED8 0x00000008 0x01DC9EC8 0x00000028 0x00000000 new         N       N    ??(0) ?? 
    350 023519 0x01DCE608 0x00000018 0x01DCE5F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
    351 048001 0x026F26C8 0x00000004 0x026F26B8 0x00000024 0x00000000 new         N       N    ??(0) ?? 
     11020192 0x01FD9938 0x00000030 0x01FD9928 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     12020193 0x01FD99B8 0x00000030 0x01FD99A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     13020194 0x01FD9A38 0x00000030 0x01FD9A28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     14020195 0x01FD9AB8 0x00000030 0x01FD9AA8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     15020196 0x01FD9B38 0x00000030 0x01FD9B28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     16020197 0x01FD9BB8 0x0000000C 0x01FD9BA8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     17020198 0x01FD9C10 0x00000080 0x01FD9C00 0x000000A0 0x00000000 new         N       N    ogreilluminationmanager.cpp(109) OgreIlluminationManager::OgreIlluminati 
     18020199 0x01FD9CE0 0x00000030 0x01FD9CD0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     19020200 0x01FD9D60 0x00000030 0x01FD9D50 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     20020201 0x01FD9DE0 0x00000030 0x01FD9DD0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     21020202 0x01FD9E60 0x00000030 0x01FD9E50 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     22020203 0x01FD9EE0 0x00000030 0x01FD9ED0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     23020204 0x01FD9F60 0x00000030 0x01FD9F50 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     24020205 0x01FDA030 0x00000030 0x01FDA020 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     25020206 0x01FDA100 0x00000030 0x01FDA0F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     26020207 0x01FDA180 0x00000030 0x01FDA170 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     27020208 0x01FDA200 0x00000030 0x01FDA1F0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     28020209 0x01FDA280 0x00000030 0x01FDA270 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     29020210 0x01FDA350 0x0000000C 0x01FDA340 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     30020120 0x01FDAC40 0x00000048 0x01FDAC30 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(91) OgreIlluminationManager::OgreIlluminati 
     31020121 0x01FDACD8 0x00000030 0x01FDACC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     32020122 0x01FDAD58 0x00000030 0x01FDAD48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     33020123 0x01FDADD8 0x00000030 0x01FDADC8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     34020106 0x01FDB070 0x00000030 0x01FDB060 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     35020104 0x01FDBC78 0x00000018 0x01FDBC68 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     36020112 0x01FE1CE0 0x00000018 0x01FE1CD0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     37020113 0x01FE1D48 0x00000018 0x01FE1D38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     38007062 0x01FE2C98 0x00000028 0x01FE2C88 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     39020103 0x01FF4C58 0x0000000C 0x01FF4C48 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     40020101 0x01FF6AF0 0x0000000C 0x01FF6AE0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     41020164 0x0200F100 0x0000000C 0x0200F0F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     42020165 0x0200F158 0x00000068 0x0200F148 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(99) OgreIlluminationManager::OgreIlluminati 
     43020166 0x0200F210 0x00000030 0x0200F200 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     44020167 0x0200F290 0x00000030 0x0200F280 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     45020168 0x0200F360 0x00000030 0x0200F350 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     46020169 0x0200F430 0x00000030 0x0200F420 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     47020170 0x0200F500 0x0000000C 0x0200F4F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     48020171 0x0200F558 0x00000068 0x0200F548 0x00000088 0x00000000 new         N       N    ogreilluminationmanager.cpp(101) OgreIlluminationManager::OgreIlluminati 
     49020172 0x0200F610 0x00000030 0x0200F600 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     50020173 0x0200F690 0x00000030 0x0200F680 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     51020174 0x0200F760 0x00000030 0x0200F750 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     52020175 0x0200F830 0x00000030 0x0200F820 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     53020176 0x0200F900 0x0000000C 0x0200F8F0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     54020177 0x0200F958 0x00000030 0x0200F948 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(103) OgreIlluminationManager::OgreIlluminati 
     55020178 0x0200F9D8 0x00000030 0x0200F9C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     56020179 0x0200FA58 0x00000030 0x0200FA48 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     57020180 0x0200FAD8 0x0000000C 0x0200FAC8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     58020181 0x0200FB30 0x00000030 0x0200FB20 0x00000050 0x00000000 new         N       N    ogreilluminationmanager.cpp(105) OgreIlluminationManager::OgreIlluminati 
     59020182 0x0200FBB0 0x00000030 0x0200FBA0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     60020183 0x0200FC30 0x00000030 0x0200FC20 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     61020184 0x0200FCB0 0x0000000C 0x0200FCA0 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     62020185 0x0200FD08 0x000000B4 0x0200FCF8 0x000000D4 0x00000000 new         N       N    ogreilluminationmanager.cpp(107) OgreIlluminationManager::OgreIlluminati 
     63020186 0x0200FE08 0x00000030 0x0200FDF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     64020187 0x0200FE88 0x00000030 0x0200FE78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     65020188 0x0200FF08 0x00000030 0x0200FEF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     66020189 0x0200FF88 0x00000030 0x0200FF78 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     67020190 0x02010008 0x00000030 0x0200FFF8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     68020191 0x02010088 0x00000030 0x02010078 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     69006628 0x02021AC8 0x00000048 0x02021AB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     70006632 0x02021B60 0x00000048 0x02021B50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     71006642 0x02021BF8 0x00000048 0x02021BE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     72006636 0x02021C98 0x00000028 0x02021C88 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     73006637 0x02021D10 0x00000048 0x02021D00 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     74006650 0x02021E00 0x00000048 0x02021DF0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     75006646 0x02021F28 0x00000048 0x02021F18 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     76006654 0x02021FC0 0x00000048 0x02021FB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     77006658 0x02022058 0x00000048 0x02022048 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     78006662 0x020220F0 0x00000048 0x020220E0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     79006623 0x02024200 0x00000048 0x020241F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     80006622 0x020244D0 0x00000028 0x020244C0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     81006867 0x02025188 0x00000028 0x02025178 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     82006868 0x02025200 0x00000048 0x020251F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     83006873 0x02025298 0x00000048 0x02025288 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     84006877 0x02025330 0x00000048 0x02025320 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     85006881 0x020253C8 0x00000028 0x020253B8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     86006882 0x02025440 0x00000048 0x02025430 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     87006887 0x02025530 0x00000048 0x02025520 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     88006891 0x02025618 0x00000048 0x02025608 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     89006895 0x020256B0 0x00000048 0x020256A0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     90006899 0x02025748 0x00000048 0x02025738 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     91006903 0x020257E0 0x00000048 0x020257D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     92006907 0x02025878 0x00000048 0x02025868 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     93007063 0x02025DC8 0x00000048 0x02025DB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     94007068 0x02025E60 0x00000048 0x02025E50 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     95007072 0x02025EF8 0x00000048 0x02025EE8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     96007076 0x02025F90 0x00000048 0x02025F80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     97007080 0x02026028 0x00000028 0x02026018 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     98007081 0x020260A0 0x00000048 0x02026090 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     99007086 0x02026190 0x00000048 0x02026180 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     100007090 0x02026228 0x00000048 0x02026218 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     101007094 0x020262C0 0x00000048 0x020262B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     102007242 0x02027730 0x00000028 0x02027720 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     103007243 0x020277A8 0x00000048 0x02027798 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     104007248 0x02027890 0x00000048 0x02027880 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     105007252 0x02027928 0x00000048 0x02027918 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     106007256 0x020279C0 0x00000048 0x020279B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     107007260 0x02027A58 0x00000028 0x02027A48 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     108007261 0x02027AD0 0x00000048 0x02027AC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     109007266 0x02027BC0 0x00000048 0x02027BB0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     110007270 0x02027C58 0x00000048 0x02027C48 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     111007274 0x02027CF0 0x00000048 0x02027CE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     112007414 0x02029E58 0x00000028 0x02029E48 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     113020117 0x0202C298 0x00000018 0x0202C288 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     114020118 0x0202C300 0x00000018 0x0202C2F0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     115020119 0x0202C368 0x00000018 0x0202C358 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     116020114 0x0202CB88 0x00000018 0x0202CB78 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     117020115 0x0202CBF0 0x00000018 0x0202CBE0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     118020116 0x0202CC58 0x00000018 0x0202CC48 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     119007415 0x02043FD0 0x00000048 0x02043FC0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     120007420 0x02044068 0x00000048 0x02044058 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     121007424 0x02044100 0x00000048 0x020440F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     122007428 0x02044198 0x00000048 0x02044188 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     123007432 0x02044230 0x00000028 0x02044220 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     124007433 0x020442A8 0x00000048 0x02044298 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     125007438 0x02044398 0x00000048 0x02044388 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     126007442 0x02044430 0x00000048 0x02044420 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     127007446 0x020444C8 0x00000048 0x020444B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     128007586 0x02045E28 0x00000028 0x02045E18 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     129007587 0x02045EA0 0x00000048 0x02045E90 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     130007592 0x02045F88 0x00000048 0x02045F78 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     131007596 0x02046020 0x00000048 0x02046010 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     132007600 0x020460B8 0x00000048 0x020460A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     133007604 0x02046150 0x00000028 0x02046140 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     134007605 0x020461C8 0x00000048 0x020461B8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     135007610 0x020462B8 0x00000048 0x020462A8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     136007614 0x02046350 0x00000048 0x02046340 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     137007618 0x020463E8 0x00000048 0x020463D8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     138008012 0x0204A490 0x00000048 0x0204A480 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     139008006 0x0204B6C0 0x00000028 0x0204B6B0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     140008007 0x0204B738 0x00000048 0x0204B728 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     141020129 0x0204C338 0x0000000C 0x0204C328 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     142020107 0x0204C4A8 0x00000018 0x0204C498 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     143020109 0x0204C510 0x00000018 0x0204C500 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     144020138 0x0204D068 0x00000030 0x0204D058 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     145020139 0x0204D0E8 0x0000000C 0x0204D0D8 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     146020140 0x0204D140 0x0000004C 0x0204D130 0x0000006C 0x00000000 new         N       N    ogreilluminationmanager.cpp(95) OgreIlluminationManager::OgreIlluminati 
     147020141 0x0204D1D8 0x00000030 0x0204D1C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     148020142 0x0204D258 0x00000030 0x0204D248 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     149020143 0x0204D2D8 0x00000030 0x0204D2C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     150020144 0x0204D358 0x00000030 0x0204D348 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     151020145 0x0204D3D8 0x00000030 0x0204D3C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     152020146 0x0204D458 0x00000030 0x0204D448 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     153020147 0x0204D4D8 0x00000030 0x0204D4C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     154020148 0x0204D558 0x00000030 0x0204D548 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     155020149 0x0204D5D8 0x00000030 0x0204D5C8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     156020130 0x0204D8A0 0x00000048 0x0204D890 0x00000068 0x00000000 new         N       N    ogreilluminationmanager.cpp(93) OgreIlluminationManager::OgreIlluminati 
     157020132 0x0204D938 0x00000030 0x0204D928 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     158020133 0x0204D9B8 0x00000030 0x0204D9A8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     159020134 0x0204DA38 0x00000030 0x0204DA28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     160020135 0x0204DAB8 0x00000030 0x0204DAA8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     161020136 0x0204DB38 0x00000030 0x0204DB28 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     162020137 0x0204DBB8 0x00000030 0x0204DBA8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     163020124 0x0204DD10 0x00000030 0x0204DD00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     164020125 0x0204DD90 0x00000030 0x0204DD80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     165020126 0x0204DE10 0x00000030 0x0204DE00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     166020127 0x0204DE90 0x00000030 0x0204DE80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     167020128 0x0204DF10 0x00000030 0x0204DF00 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     168020131 0x0204DF90 0x00000030 0x0204DF80 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     169008855 0x0206AFF0 0x00000048 0x0206AFE0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     170008859 0x0206B088 0x00000048 0x0206B078 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     171008863 0x0206B120 0x00000048 0x0206B110 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     172008849 0x0206DE08 0x00000028 0x0206DDF8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     173008850 0x0206DE80 0x00000048 0x0206DE70 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     174009029 0x0206E870 0x00000028 0x0206E860 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     175009030 0x0206EF90 0x00000048 0x0206EF80 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     176009035 0x0206F078 0x00000048 0x0206F068 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     177009039 0x0206F110 0x00000048 0x0206F100 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     178009043 0x0206F1A8 0x00000048 0x0206F198 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     179009047 0x0206F240 0x00000048 0x0206F230 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     180009051 0x0206F328 0x00000028 0x0206F318 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     181009052 0x0206F3A0 0x00000048 0x0206F390 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     182009057 0x0206F490 0x00000048 0x0206F480 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     183009061 0x0206F528 0x00000028 0x0206F518 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     184009062 0x033F0100 0x00000048 0x033F00F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     185009067 0x033F0198 0x00000048 0x033F0188 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     186009071 0x033F0230 0x00000048 0x033F0220 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     187009868 0x034033E8 0x00000028 0x034033D8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     188009855 0x03403470 0x00000048 0x03403460 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     189009882 0x03403508 0x00000028 0x034034F8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     190009860 0x03403590 0x00000048 0x03403580 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     191009864 0x03403628 0x00000048 0x03403618 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     192009869 0x034036C0 0x00000048 0x034036B0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     193009874 0x034037E0 0x00000048 0x034037D0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     194009878 0x03403878 0x00000048 0x03403868 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     195009883 0x03403910 0x00000048 0x03403900 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     196009888 0x03403A30 0x00000048 0x03403A20 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     197009892 0x03403AC8 0x00000048 0x03403AB8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     198009896 0x03403BB0 0x00000048 0x03403BA0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     199009854 0x0340AD30 0x00000028 0x0340AD20 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     200011008 0x0341D1A8 0x00000028 0x0341D198 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     201011009 0x0341D220 0x00000048 0x0341D210 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     202021635 0x034229E8 0x0000021C 0x034229D8 0x0000023C 0x00000000 new         N       N    ogrerenderingrun.cpp(198) OgreRenderingRun::renderFullscreenQuad 
     203010785 0x0342B710 0x00000048 0x0342B700 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     204010853 0x0342C088 0x00000028 0x0342C078 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     205010854 0x0342C100 0x00000048 0x0342C0F0 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     206010859 0x0342C310 0x00000048 0x0342C300 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     207010784 0x03430FB8 0x00000028 0x03430FA8 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     208011014 0x0343ACB8 0x00000048 0x0343ACA8 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     209020110 0x0343BAE0 0x00000018 0x0343BAD0 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     210020111 0x0343BB48 0x00000018 0x0343BB38 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     211054572 0x03440A40 0x00000010 0x03440A30 0x00000030 0x00000000 new         N       N    ??(0) ?? 
     212011878 0x034426B0 0x00000028 0x034426A0 0x00000048 0x00000000 new         N       N    ogrematerialserializer.cpp(2089) Ogre::parseIllumTechniqueParams 
     213011879 0x03442728 0x00000048 0x03442718 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     214011884 0x03442860 0x00000048 0x03442850 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     215011888 0x03442948 0x00000048 0x03442938 0x00000068 0x00000000 new         N       N    ??(0) ?? 
     216020108 0x0349E7B8 0x00000008 0x0349E7A8 0x00000028 0x00000000 new         N       N    ogreilluminationmanager.cpp(79) OgreIlluminationManager::OgreIlluminati 
     217020100 0x0349E888 0x00000140 0x0349E878 0x00000160 0x00000000 new         N       N    ogreilluminationmanager.cpp(121) OgreIlluminationManager::getSingleton 
     218020102 0x0349EA18 0x00000018 0x0349EA08 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     219020150 0x0349F858 0x0000000C 0x0349F848 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     220020151 0x0349F8B0 0x0000007C 0x0349F8A0 0x0000009C 0x00000000 new         N       N    ogreilluminationmanager.cpp(97) OgreIlluminationManager::OgreIlluminati 
     221020152 0x0349F978 0x00000030 0x0349F968 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     222020153 0x0349F9F8 0x00000030 0x0349F9E8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     223020154 0x0349FA78 0x00000030 0x0349FA68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     224020155 0x0349FAF8 0x00000030 0x0349FAE8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     225020156 0x0349FB78 0x00000030 0x0349FB68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     226020157 0x0349FBF8 0x00000030 0x0349FBE8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     227020158 0x0349FC78 0x00000030 0x0349FC68 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     228020159 0x0349FCF8 0x00000030 0x0349FCE8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     229020160 0x0349FDC8 0x00000030 0x0349FDB8 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     230020161 0x0349FE98 0x00000030 0x0349FE88 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     231020162 0x0349FF18 0x00000030 0x0349FF08 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     232020163 0x0349FF98 0x00000030 0x0349FF88 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     233020105 0x034B0DF8 0x00000018 0x034B0DE8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     234020893 0x03605D08 0x000000C0 0x03605CF8 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     235020895 0x03605E18 0x0000001C 0x03605E08 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     236020896 0x03605E80 0x000000C4 0x03605E70 0x000000E4 0x00000000 new         N       N    ogreilluminationmanager.cpp(214) OgreIlluminationManager::initTechniques 
     237020897 0x03605F90 0x00000018 0x03605F80 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     238020898 0x03605FF8 0x00000018 0x03605FE8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     239020899 0x03606060 0x0000000C 0x03606050 0x0000002C 0x00000000 new         N       N    ??(0) ?? 
     240020901 0x03606108 0x00000018 0x036060F8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     241020908 0x03606170 0x0000004C 0x03606160 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     242020909 0x03606208 0x0000008C 0x036061F8 0x000000AC 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(57) OgreDistanceCubeMapRenderTechnique::cre 
     243020910 0x03606380 0x00000030 0x03606370 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     244021030 0x0360C7C8 0x00000018 0x0360C7B8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     245021043 0x0360C830 0x00000050 0x0360C820 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
     246021044 0x0360C8D0 0x0000008C 0x0360C8C0 0x000000AC 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(67) OgreConvolvedCubeMapRenderTechnique::cr 
     247021045 0x0360C9A8 0x00000030 0x0360C998 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     248021285 0x0361A658 0x00000008 0x0361A648 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     249021164 0x0361A870 0x00000018 0x0361A860 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     250021165 0x0361A8D8 0x0000008C 0x0361A8C8 0x000000AC 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(81) OgreConvolvedCubeMapRenderTechnique::cr 
     251021166 0x0361A9B0 0x00000030 0x0361A9A0 0x00000050 0x00000000 new         N       N    ??(0) ?? 
     252021288 0x0361CFC0 0x0000001C 0x0361CFB0 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     253021284 0x0361F238 0x00000018 0x0361F228 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     254021286 0x03620B40 0x000000C0 0x03620B30 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     255021337 0x03620C50 0x00000008 0x03620C40 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     256021290 0x03620CA8 0x00000018 0x03620C98 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     257021297 0x03620D10 0x0000004C 0x03620D00 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     258021310 0x03620DA8 0x00000050 0x03620D98 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
     259021311 0x03620E48 0x00000008 0x03620E38 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     260021312 0x03620EA0 0x000000C0 0x03620E90 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     261021314 0x03620FB0 0x0000001C 0x03620FA0 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     262021363 0x03621018 0x00000008 0x03621008 0x00000028 0x00000000 new         N       N    ??(0) ?? 
     263021316 0x03621070 0x00000018 0x03621060 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     264021323 0x036210D8 0x0000004C 0x036210C8 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     265021336 0x03621170 0x00000050 0x03621160 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
     266021338 0x03621210 0x000000C0 0x03621200 0x000000E0 0x00000000 new         N       N    ogreilluminationmanager.cpp(208) OgreIlluminationManager::initTechniques 
     267021340 0x03621320 0x0000001C 0x03621310 0x0000003C 0x00000000 new         N       N    ogreilluminationmanager.cpp(209) OgreIlluminationManager::initTechniques 
     268021341 0x03621388 0x00000010 0x03621378 0x00000030 0x00000000 new         N       N    ??(0) ?? 
     269021342 0x036213E8 0x00000018 0x036213D8 0x00000038 0x00000000 new         N       N    ??(0) ?? 
     270021349 0x03621450 0x0000004C 0x03621440 0x0000006C 0x00000000 new         N       N    ogredistancecubemaprendertechnique.cpp(180) OgreDistanceCubeMapRenderTechniqueFacto 
     271021362 0x036214E8 0x00000050 0x036214D8 0x00000070 0x00000000 new         N       N    ogreconvolvedcubemaprendertechnique.cpp(211) OgreConvoledCubeMapRenderTechniqueFacto 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/OgreMemory.log

    r1487 r1519  
    11-------------------------------------------------------------------------------- 
    22 
    3       OgreMemory.log - Memory logging file created on Tue Sep 26 09:22:23 2006 
     3      OgreMemory.log - Memory logging file created on Wed Sep 27 15:47:56 2006 
    44 
    55-------------------------------------------------------------------------------- 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Debug/ogre.cfg

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

    r1487 r1519  
    1 08:50:08: Creating resource group General 
    2 08:50:08: Creating resource group Internal 
    3 08:50:08: Creating resource group Autodetect 
    4 08:50:08: Registering ResourceManager for type Material 
    5 08:50:08: Registering ResourceManager for type Mesh 
    6 08:50:08: Registering ResourceManager for type Skeleton 
    7 08:50:08: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 08:50:08: Loading library OgrePlatform.dll 
    9 08:50:08: OverlayElementFactory for type Panel registered. 
    10 08:50:08: OverlayElementFactory for type BorderPanel registered. 
    11 08:50:08: OverlayElementFactory for type TextArea registered. 
    12 08:50:08: Registering ResourceManager for type Font 
    13 08:50:08: ArchiveFactory for archive type FileSystem registered. 
    14 08:50:08: ArchiveFactory for archive type Zip registered. 
    15 08:50:08: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 08: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  
    17 08:50:08: Registering ResourceManager for type HighLevelGpuProgram 
    18 08:50:08: Registering ResourceManager for type Compositor 
    19 08:50:08: MovableObjectFactory for type 'Entity' registered. 
    20 08:50:08: MovableObjectFactory for type 'Light' registered. 
    21 08:50:08: MovableObjectFactory for type 'BillboardSet' registered. 
    22 08:50:08: MovableObjectFactory for type 'ManualObject' registered. 
    23 08:50:08: MovableObjectFactory for type 'BillboardChain' registered. 
    24 08:50:08: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 08:50:08: Loading library .\RenderSystem_Direct3D9 
    26 08:50:08: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 08:50:08: D3D9: Driver Detection Starts 
    28 08:50:08: D3D9: Driver Detection Ends 
    29 08:50:08: Loading library .\Plugin_ParticleFX 
    30 08:50:08: Particle Emitter Type 'Point' registered 
    31 08:50:08: Particle Emitter Type 'Box' registered 
    32 08:50:08: Particle Emitter Type 'Ellipsoid' registered 
    33 08:50:08: Particle Emitter Type 'Cylinder' registered 
    34 08:50:08: Particle Emitter Type 'Ring' registered 
    35 08:50:08: Particle Emitter Type 'HollowEllipsoid' registered 
    36 08:50:08: Particle Affector Type 'LinearForce' registered 
    37 08:50:08: Particle Affector Type 'ColourFader' registered 
    38 08:50:08: Particle Affector Type 'ColourFader2' registered 
    39 08:50:08: Particle Affector Type 'ColourImage' registered 
    40 08:50:08: Particle Affector Type 'ColourInterpolator' registered 
    41 08:50:08: Particle Affector Type 'Scaler' registered 
    42 08:50:08: Particle Affector Type 'Rotator' registered 
    43 08:50:08: Particle Affector Type 'DirectionRandomiser' registered 
    44 08:50:08: Particle Affector Type 'DeflectorPlane' registered 
    45 08:50:08: Loading library .\Plugin_BSPSceneManager 
    46 08:50:08: Registering ResourceManager for type BspLevel 
    47 08:50:08: Loading library .\Plugin_OctreeSceneManager 
    48 08:50:08: Loading library .\Plugin_CgProgramManager 
    49 08:50:08: *-*-* OGRE Initialising 
    50 08:50:08: *-*-* Version 1.2.0 (Dagon) 
    51 08:50:09: Creating resource group Bootstrap 
    52 08:50:09: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 08:50:09: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 08:50:09: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 08:50:09: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 08:50:09: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 08:50:09: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 08:50:09: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 08:50:09: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 08:50:09: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 08:50:09: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 08:50:09: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 08:50:09: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 08:50:09: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 08:50:09: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 08:50:09: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 08:50:09: D3D9 : RenderSystem Option: Full Screen = No 
    68 08:50:09: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 6800 GT 
    69 08:50:09: D3D9 : RenderSystem Option: VSync = No 
    70 08:50:09: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 08:50:11: D3D9 : Subsystem Initialising 
    72 08:50:11: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 08:50:11: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 08: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. 
    75 08:50:11: Registering ResourceManager for type Texture 
    76 08:50:11: Registering ResourceManager for type GpuProgram 
    77 08:50:11: RenderSystem capabilities 
    78 08:50:11: ------------------------- 
    79 08:50:11:  * Hardware generation of mipmaps: yes 
    80 08:50:11:  * Texture blending: yes 
    81 08:50:11:  * Anisotropic texture filtering: yes 
    82 08:50:11:  * Dot product texture operation: yes 
    83 08:50:11:  * Cube mapping: yes 
    84 08:50:11:  * Hardware stencil buffer: yes 
    85 08:50:11:    - Stencil depth: 8 
    86 08:50:11:    - Two sided stencil support: yes 
    87 08:50:11:    - Wrap stencil values: yes 
    88 08:50:11:  * Hardware vertex / index buffers: yes 
    89 08:50:11:  * Vertex programs: yes 
    90 08:50:11:    - Max vertex program version: vs_3_0 
    91 08:50:11:  * Fragment programs: yes 
    92 08:50:11:    - Max fragment program version: ps_3_0 
    93 08:50:11:  * Texture Compression: yes 
    94 08:50:11:    - DXT: yes 
    95 08:50:11:    - VTC: no 
    96 08:50:11:  * Scissor Rectangle: yes 
    97 08:50:11:  * Hardware Occlusion Query: yes 
    98 08:50:11:  * User clip planes: yes 
    99 08:50:11:  * VET_UBYTE4 vertex element type: yes 
    100 08:50:11:  * Infinite far plane projection: yes 
    101 08:50:11:  * Hardware render-to-texture: yes 
    102 08:50:11:  * Floating point textures: yes 
    103 08:50:11:  * Non-power-of-two textures: yes 
    104 08:50:11:  * Volume textures: yes 
    105 08:50:11:  * Multiple Render Targets: 4 
    106 08:50:11:  * Max Point Size: 8192 
    107 08:50:11: *************************************** 
    108 08:50:11: *** D3D9 : Subsystem Initialised OK *** 
    109 08:50:11: *************************************** 
    110 08:50:11: ResourceBackgroundQueue - threading disabled 
    111 08:50:11: Particle Renderer Type 'billboard' registered 
    112 08:50:11: Particle Renderer Type 'sprite' registered 
    113 08: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 
    114 08:50:11: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 08:50:11: Parsing scripts for resource group Autodetect 
    116 08:50:11: Finished parsing scripts for resource group Autodetect 
    117 08:50:11: Parsing scripts for resource group Bootstrap 
    118 08:50:11: Parsing script OgreCore.material 
    119 08:50:11: Parsing script OgreProfiler.material 
    120 08:50:11: Parsing script Ogre.fontdef 
    121 08:50:11: Parsing script OgreDebugPanel.overlay 
    122 08: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. 
    123 08: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. 
    124 08: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. 
    125 08:50:11: Font TrebuchetMSBoldusing texture size 512x512 
    126 08:50:11: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 08:50:11: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 08:50:11: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 08:50:11: Parsing script OgreLoadingPanel.overlay 
    130 08:50:11: Finished parsing scripts for resource group Bootstrap 
    131 08:50:11: Parsing scripts for resource group General 
    132 08:50:11: Parsing script GameTools.program 
    133 08:50:11: Parsing script atlascube.material 
    134 08:50:11: Parsing script Diffuse.material 
    135 08:50:13: An exception has been thrown! 
     110:29:14: Creating resource group General 
     210:29:14: Creating resource group Internal 
     310:29:14: Creating resource group Autodetect 
     410:29:14: Registering ResourceManager for type Material 
     510:29:14: Registering ResourceManager for type Mesh 
     610:29:14: Registering ResourceManager for type Skeleton 
     710:29:14: MovableObjectFactory for type 'ParticleSystem' registered. 
     810:29:14: Loading library OgrePlatform.dll 
     910:29:14: OverlayElementFactory for type Panel registered. 
     1010:29:14: OverlayElementFactory for type BorderPanel registered. 
     1110:29:14: OverlayElementFactory for type TextArea registered. 
     1210:29:14: Registering ResourceManager for type Font 
     1310:29:14: ArchiveFactory for archive type FileSystem registered. 
     1410:29:14: ArchiveFactory for archive type Zip registered. 
     1510:29:14: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1610:29:14: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
     1710:29:14: Registering ResourceManager for type HighLevelGpuProgram 
     1810:29:14: Registering ResourceManager for type Compositor 
     1910:29:14: MovableObjectFactory for type 'Entity' registered. 
     2010:29:14: MovableObjectFactory for type 'Light' registered. 
     2110:29:14: MovableObjectFactory for type 'BillboardSet' registered. 
     2210:29:14: MovableObjectFactory for type 'ManualObject' registered. 
     2310:29:14: MovableObjectFactory for type 'BillboardChain' registered. 
     2410:29:14: MovableObjectFactory for type 'RibbonTrail' registered. 
     2510:29:14: Loading library .\RenderSystem_Direct3D9 
     2610:29:14: D3D9 : Direct3D9 Rendering Subsystem created. 
     2710:29:14: D3D9: Driver Detection Starts 
     2810:29:14: D3D9: Driver Detection Ends 
     2910:29:14: Loading library .\Plugin_ParticleFX 
     3010:29:14: Particle Emitter Type 'Point' registered 
     3110:29:14: Particle Emitter Type 'Box' registered 
     3210:29:14: Particle Emitter Type 'Ellipsoid' registered 
     3310:29:14: Particle Emitter Type 'Cylinder' registered 
     3410:29:14: Particle Emitter Type 'Ring' registered 
     3510:29:14: Particle Emitter Type 'HollowEllipsoid' registered 
     3610:29:14: Particle Affector Type 'LinearForce' registered 
     3710:29:14: Particle Affector Type 'ColourFader' registered 
     3810:29:14: Particle Affector Type 'ColourFader2' registered 
     3910:29:14: Particle Affector Type 'ColourImage' registered 
     4010:29:14: Particle Affector Type 'ColourInterpolator' registered 
     4110:29:14: Particle Affector Type 'Scaler' registered 
     4210:29:14: Particle Affector Type 'Rotator' registered 
     4310:29:14: Particle Affector Type 'DirectionRandomiser' registered 
     4410:29:14: Particle Affector Type 'DeflectorPlane' registered 
     4510:29:14: Loading library .\Plugin_BSPSceneManager 
     4610:29:14: Registering ResourceManager for type BspLevel 
     4710:29:14: Loading library .\Plugin_OctreeSceneManager 
     4810:29:14: Loading library .\Plugin_CgProgramManager 
     4910:29:14: *-*-* OGRE Initialising 
     5010:29:14: *-*-* Version 1.2.0 (Dagon) 
     5110:29:14: Creating resource group Bootstrap 
     5210:29:14: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5310:29:14: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5410:29:14: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5510:29:14: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5610:29:14: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5710:29:14: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5810:29:14: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5910:29:14: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6010:29:14: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6110:29:14: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6210:29:14: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6310:29:14: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6410:29:14: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6510:29:14: D3D9 : RenderSystem Option: Anti aliasing = None 
     6610:29:14: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6710:29:14: D3D9 : RenderSystem Option: Full Screen = No 
     6810:29:14: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7800 GT 
     6910:29:14: D3D9 : RenderSystem Option: VSync = No 
     7010:29:14: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7110:29:16: D3D9 : Subsystem Initialising 
     7210:29:16: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7310:29:16: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7410:29:16: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7510:29:16: Registering ResourceManager for type Texture 
     7610:29:16: Registering ResourceManager for type GpuProgram 
     7710:29:16: RenderSystem capabilities 
     7810:29:16: ------------------------- 
     7910:29:16:  * Hardware generation of mipmaps: yes 
     8010:29:16:  * Texture blending: yes 
     8110:29:16:  * Anisotropic texture filtering: yes 
     8210:29:16:  * Dot product texture operation: yes 
     8310:29:16:  * Cube mapping: yes 
     8410:29:16:  * Hardware stencil buffer: yes 
     8510:29:16:    - Stencil depth: 8 
     8610:29:16:    - Two sided stencil support: yes 
     8710:29:16:    - Wrap stencil values: yes 
     8810:29:16:  * Hardware vertex / index buffers: yes 
     8910:29:16:  * Vertex programs: yes 
     9010:29:16:    - Max vertex program version: vs_3_0 
     9110:29:16:  * Fragment programs: yes 
     9210:29:16:    - Max fragment program version: ps_3_0 
     9310:29:16:  * Texture Compression: yes 
     9410:29:16:    - DXT: yes 
     9510:29:16:    - VTC: no 
     9610:29:16:  * Scissor Rectangle: yes 
     9710:29:16:  * Hardware Occlusion Query: yes 
     9810:29:16:  * User clip planes: yes 
     9910:29:16:  * VET_UBYTE4 vertex element type: yes 
     10010:29:16:  * Infinite far plane projection: yes 
     10110:29:16:  * Hardware render-to-texture: yes 
     10210:29:16:  * Floating point textures: yes 
     10310:29:16:  * Non-power-of-two textures: yes 
     10410:29:16:  * Volume textures: yes 
     10510:29:16:  * Multiple Render Targets: 4 
     10610:29:16:  * Max Point Size: 8192 
     10710:29:16: *************************************** 
     10810:29:16: *** D3D9 : Subsystem Initialised OK *** 
     10910:29:16: *************************************** 
     11010:29:16: ResourceBackgroundQueue - threading disabled 
     11110:29:16: Particle Renderer Type 'billboard' registered 
     11210:29:16: Particle Renderer Type 'sprite' registered 
     11310:29:16: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     11410:29:16: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11510:29:16: Parsing scripts for resource group Autodetect 
     11610:29:16: Finished parsing scripts for resource group Autodetect 
     11710:29:16: Parsing scripts for resource group Bootstrap 
     11810:29:16: Parsing script OgreCore.material 
     11910:29:16: Parsing script OgreProfiler.material 
     12010:29:16: Parsing script Ogre.fontdef 
     12110:29:16: Parsing script OgreDebugPanel.overlay 
     12210:29:16: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12310:29:16: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12410:29:16: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12510:29:16: Font TrebuchetMSBoldusing texture size 512x512 
     12610:29:16: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12710:29:16: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12810:29:16: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12910:29:16: Parsing script OgreLoadingPanel.overlay 
     13010:29:16: Finished parsing scripts for resource group Bootstrap 
     13110:29:16: Parsing scripts for resource group General 
     13210:29:16: Parsing script GameTools.program 
     13310:29:16: Parsing script atlascube.material 
     13410:29:16: Parsing script Diffuse.material 
     13510:29:17: An exception has been thrown! 
    136136 
    137137----------------------------------- 
     
    144144Line: 768 
    145145Stack unwinding: <<beginning of stack>> 
    146 08:50:13: Error in material GameTools/CubeMap/Diffuse at line 67 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14610:29:17: 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 08:50:13: An exception has been thrown! 
     15710:29:17: An exception has been thrown! 
    158158 
    159159----------------------------------- 
     
    166166Line: 768 
    167167Stack unwinding: <<beginning of stack>> 
    168 08:50:13: Error in material GameTools/CubeMap/Diffuse at line 68 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     16810:29:17: 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 08:50:13: Parsing script EnvMetals.material 
    180 08:50:13: An exception has been thrown! 
     17910:29:17: Parsing script EnvMetals.material 
     18010:29:17: An exception has been thrown! 
    181181 
    182182----------------------------------- 
     
    189189Line: 768 
    190190Stack unwinding: <<beginning of stack>> 
    191 08:50:13: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19110:29:17: 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 08:50:13: An exception has been thrown! 
     20210:29:17: An exception has been thrown! 
    203203 
    204204----------------------------------- 
     
    211211Line: 768 
    212212Stack unwinding: <<beginning of stack>> 
    213 08:50:13: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21310:29:17: 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 08:50:13: An exception has been thrown! 
     22410:29:17: An exception has been thrown! 
    225225 
    226226----------------------------------- 
     
    233233Line: 768 
    234234Stack unwinding: <<beginning of stack>> 
    235 08:50:13: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23510:29:17: 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 08:50:13: An exception has been thrown! 
     24610:29:17: An exception has been thrown! 
    247247 
    248248----------------------------------- 
     
    255255Line: 768 
    256256Stack unwinding: <<beginning of stack>> 
    257 08:50:13: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25710:29:17: 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 08:50:13: Parsing script GameTools.material 
    269 08:50:13: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
    270 08:50:13: An exception has been thrown! 
     26810:29:17: Parsing script GameTools.material 
     26910:29:17: Error in material GameTools/SceneCameraDepthShader at line 159 of GameTools.material: Unrecognised command: scene_blend 
     27010:29:17: An exception has been thrown! 
    271271 
    272272----------------------------------- 
     
    279279Line: 768 
    280280Stack unwinding: <<beginning of stack>> 
    281 08:50:13: Error in material GameTools/SceneCameraDepthShader at line 167 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     28110:29:17: 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 08:50:13: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
    293 08:50:13: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    294 08:50:13: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
    295 08:50:13: Parsing script GameTools_HPS.material 
    296 08:50:13: 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 08: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 ----------------------------------- 
    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 08:50:13: 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 08: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 ----------------------------------- 
    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 08:50:13: An exception has been thrown! 
     29210:29:17: Error in material GameTools/FocusingShader at line 183 of GameTools.material: Unrecognised command: scene_blend 
     29310:29:17: Error in material GameTools/FocusingShader at line 191 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     29410:29:17: Error in material GameTools/ShadowMapDepth at line 207 of GameTools.material: Unrecognised command: scene_blend 
     29510:29:17: Parsing script GameTools_HPS.material 
     29610:29:17: 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>> 
     30710:29:17: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     308 
     309----------------------------------- 
     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>> 
     31810:29:17: 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>> 
     32910:29:17: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     330 
     331----------------------------------- 
     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>> 
     34010:29:17: An exception has been thrown! 
    341341 
    342342----------------------------------- 
     
    349349Line: 768 
    350350Stack unwinding: <<beginning of stack>> 
    351 08: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! 
     35110:29:17: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    352352 
    353353----------------------------------- 
     
    360360Line: 768 
    361361Stack unwinding: <<beginning of stack>> 
    362 08:50:13: 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 08: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 ----------------------------------- 
    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 08:50:13: An exception has been thrown! 
     36210:29:17: An exception has been thrown! 
     363 
     364----------------------------------- 
     365Details: 
     366----------------------------------- 
     367Error #: 7 
     368Function: GpuProgramParameters::getParamIndex 
     369Description: Cannot find a parameter named worldViewProj.  
     370File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     371Line: 768 
     372Stack unwinding: <<beginning of stack>> 
     37310:29:17: Error in material HPS_SMOKE_L_Depth at line 152 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     374 
     375----------------------------------- 
     376Details: 
     377----------------------------------- 
     378Error #: 7 
     379Function: GpuProgramParameters::getParamIndex 
     380Description: Cannot find a parameter named worldViewProj.  
     381File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     382Line: 768 
     383Stack unwinding: <<beginning of stack>> 
     38410:29:17: An exception has been thrown! 
    385385 
    386386----------------------------------- 
     
    393393Line: 768 
    394394Stack unwinding: <<beginning of stack>> 
    395 08: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! 
     39510:29:17: Error in material HPS_SMOKE_L_Depth at line 161 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    396396 
    397397----------------------------------- 
     
    404404Line: 768 
    405405Stack unwinding: <<beginning of stack>> 
    406 08:50:13: An exception has been thrown! 
     40610:29:17: An exception has been thrown! 
    407407 
    408408----------------------------------- 
     
    415415Line: 768 
    416416Stack unwinding: <<beginning of stack>> 
    417 08: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! 
     41710:29:17: Error in material HPS_SMOKE_L_Depth at line 162 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    418418 
    419419----------------------------------- 
     
    426426Line: 768 
    427427Stack unwinding: <<beginning of stack>> 
    428 08:50:13: 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 08: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 ----------------------------------- 
    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 08:50:13: Parsing script GlassHead.material 
    451 08:50:13: An exception has been thrown! 
     42810:29:17: An exception has been thrown! 
     429 
     430----------------------------------- 
     431Details: 
     432----------------------------------- 
     433Error #: 7 
     434Function: GpuProgramParameters::getParamIndex 
     435Description: Cannot find a parameter named worldViewProj.  
     436File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     437Line: 768 
     438Stack unwinding: <<beginning of stack>> 
     43910:29:17: Error in material Smoke_IllumVolume at line 221 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     440 
     441----------------------------------- 
     442Details: 
     443----------------------------------- 
     444Error #: 7 
     445Function: GpuProgramParameters::getParamIndex 
     446Description: Cannot find a parameter named worldViewProj.  
     447File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
     448Line: 768 
     449Stack unwinding: <<beginning of stack>> 
     45010:29:17: Parsing script GlassHead.material 
     45110:29:17: An exception has been thrown! 
    452452 
    453453----------------------------------- 
     
    460460Line: 768 
    461461Stack unwinding: <<beginning of stack>> 
    462 08:50:13: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     46210:29:17: 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 08:50:13: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    474 08:50:13: 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 08: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 ----------------------------------- 
    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 08:50:13: An exception has been thrown! 
     47310:29:17: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     47410:29:17: 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>> 
     48510:29:17: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     486 
     487----------------------------------- 
     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>> 
     49610:29:17: An exception has been thrown! 
    497497 
    498498----------------------------------- 
     
    505505Line: 768 
    506506Stack unwinding: <<beginning of stack>> 
    507 08:50:13: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     50710:29:17: 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 08:50:13: An exception has been thrown! 
     51810:29:17: An exception has been thrown! 
    519519 
    520520----------------------------------- 
     
    527527Line: 768 
    528528Stack unwinding: <<beginning of stack>> 
    529 08:50:13: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52910:29:17: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    530530 
    531531----------------------------------- 
     
    538538Line: 768 
    539539Stack unwinding: <<beginning of stack>> 
    540 08:50:14: Parsing script Glow.material 
    541 08:50:14: An exception has been thrown! 
     54010:29:18: Parsing script Glow.material 
     54110:29:18: An exception has been thrown! 
    542542 
    543543----------------------------------- 
     
    550550Line: 768 
    551551Stack unwinding: <<beginning of stack>> 
    552 08:50:14: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     55210:29:18: Error in material GameTools/ToneMap at line 210 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    553553 
    554554----------------------------------- 
     
    561561Line: 768 
    562562Stack unwinding: <<beginning of stack>> 
    563 08:50:14: Parsing script hangar.material 
    564 08:50:14: Parsing script kupola.material 
    565 08:50:14: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    566 08:50:14: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    567 08:50:14: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    568 08:50:14: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    569 08:50:14: Parsing script Ogre.material 
    570 08:50:14: Parsing script Particles.material 
    571 08:50:14: 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 08: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 ----------------------------------- 
    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 08:50:14: An exception has been thrown! 
    594  
    595 ----------------------------------- 
    596 Details: 
    597 ----------------------------------- 
    598 Error #: 7 
    599 Function: GpuProgramParameters::getParamIndex 
    600 Description: Cannot find a parameter named worldViewProj.  
    601 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    602 Line: 768 
    603 Stack unwinding: <<beginning of stack>> 
    604 08: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 ----------------------------------- 
    607 Details: 
    608 ----------------------------------- 
    609 Error #: 7 
    610 Function: GpuProgramParameters::getParamIndex 
    611 Description: Cannot find a parameter named worldViewProj.  
    612 File: \ogre_gametools\OgreMain\src\OgreGpuProgram.cpp 
    613 Line: 768 
    614 Stack unwinding: <<beginning of stack>> 
    615 08:50:14: Parsing script RaytraceDemo.material 
    616 08:50:14: Parsing script stairs.material 
    617 08:50:14: Parsing script X3D.material 
    618 08:50:14: Parsing script GameTools_Glow.compositor 
    619 08:50:14: Parsing script GameTools_ToneMap.compositor 
    620 08:50:14: Parsing script sample.fontdef 
    621 08:50:14: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    622 08:50:14: Parsing script GameTools.particle 
    623 08:50:14: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    624 08:50:14: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    625 08:50:14: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    626 08:50:14: Parsing script Compositor.overlay 
    627 08:50:14: Parsing script DP3.overlay 
    628 08:50:14: Parsing script Example-CubeMapping.overlay 
    629 08:50:14: Parsing script Example-DynTex.overlay 
    630 08:50:14: Parsing script Example-Water.overlay 
    631 08:50:14: Parsing script FullScreen.overlay 
    632 08:50:14: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    633 08:50:14: Parsing script Shadows.overlay 
    634 08:50:14: Finished parsing scripts for resource group General 
    635 08:50:14: Parsing scripts for resource group Internal 
    636 08:50:14: Finished parsing scripts for resource group Internal 
    637 08:50:14: Texture: morning_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    638 08:50:14: Texture: morning_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    639 08:50:14: Texture: morning_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    640 08:50:14: Texture: morning_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    641 08:50:14: Texture: morning_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    642 08:50:14: Texture: morning_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    643 08:50:14: Mesh: Loading sphere.mesh. 
    644 08:50:14: 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: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    653 Line: 583 
    654 Stack unwinding: <<beginning of stack>> 
    655 08: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! 
    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: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    664 Line: 583 
    665 Stack unwinding: <<beginning of stack>> 
    666 08:50:14: 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: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    675 Line: 583 
    676 Stack unwinding: <<beginning of stack>> 
    677 08: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! 
    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: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    686 Line: 583 
    687 Stack unwinding: <<beginning of stack>> 
    688 08:50:14: 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: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    697 Line: 583 
    698 Stack unwinding: <<beginning of stack>> 
    699 08: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! 
    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: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    708 Line: 583 
    709 Stack unwinding: <<beginning of stack>> 
    710 08:50:14: An exception has been thrown! 
    711  
    712 ----------------------------------- 
    713 Details: 
    714 ----------------------------------- 
    715 Error #: 8 
    716 Function: ResourceGroupManager::openResource 
    717 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    718 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    719 Line: 583 
    720 Stack unwinding: <<beginning of stack>> 
    721 08: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! 
    722  
    723 ----------------------------------- 
    724 Details: 
    725 ----------------------------------- 
    726 Error #: 8 
    727 Function: ResourceGroupManager::openResource 
    728 Description: Cannot locate resource cubemap_rt.jpg in resource group General or any other group..  
    729 File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
    730 Line: 583 
    731 Stack unwinding: <<beginning of stack>> 
    732 08: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 
    733 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    734 08: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 
    735 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    736 08: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 
    737 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    738 08: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 
    739 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    740 08: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 
    741 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    742 08: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 
    743 08:50:14: Viewport for camera 'sphere_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    744 08: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. 
    745 08: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 
    746 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    747 08: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 
    748 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    749 08: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 
    750 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    751 08: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 
    752 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    753 08: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 
    754 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    755 08: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 
    756 08:50:14: Viewport for camera 'sphere_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    757 08: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. 
    758 08: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 
    759 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    760 08: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 
    761 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    762 08: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 
    763 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    764 08: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 
    765 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    766 08: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 
    767 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    768 08: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 
    769 08:50:14: Viewport for camera 'sphere_SE_0_CAUSTICCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    770 08: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 
    771 08:50:14: Viewport for camera 'sphere_SE_0_PHOTONMAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    772 08:50:14: sphere_SE_0_CAUSTICCUBEMAP map: sphere_SE_0_PHOTONMAP material: GameTools/CauTrisphere_SE_0_clone 
    773 08:50:14: Win32Input8: DirectInput Activation Starts 
    774 08:50:14: Win32Input8: Establishing keyboard input. 
    775 08:50:14: Win32Input8: Keyboard input established. 
    776 08:50:14: Win32Input8: Initializing mouse input in immediate mode. 
    777 08:50:14: Win32Input8: Mouse input in immediate mode initialized. 
    778 08:50:14: Win32Input8: DirectInput OK. 
    779 08: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. 
    780 08: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. 
    781 08: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. 
    782 08:50:21: Unregistering ResourceManager for type BspLevel 
    783 08:50:21: Render Target 'rtt/2266208' Average FPS: 400.1 Best FPS: 452.547 Worst FPS: 229.312 
    784 08:50:21: Render Target 'rtt/2302816' Average FPS: 66.9028 Best FPS: 75.3221 Worst FPS: 39.1389 
    785 08:50:21: Render Target 'rtt/2265376' Average FPS: 66.8135 Best FPS: 75.2475 Worst FPS: 38.8834 
    786 08:50:21: Render Target 'rtt/2265440' Average FPS: 66.8122 Best FPS: 75.2475 Worst FPS: 38.6905 
    787 08:50:21: Render Target 'rtt/2265504' Average FPS: 66.8262 Best FPS: 75.2475 Worst FPS: 38.5376 
    788 08:50:21: Render Target 'rtt/2265568' Average FPS: 66.8519 Best FPS: 75.3221 Worst FPS: 38.4236 
    789 08:50:21: Render Target 'rtt/2265632' Average FPS: 66.858 Best FPS: 75.3221 Worst FPS: 38.3104 
    790 08:50:21: Render Target 'rtt/2301728' Average FPS: 10.6566 Best FPS: 13.1703 Worst FPS: 4.81232 
    791 08:50:21: Render Target 'rtt/2301792' Average FPS: 7.83934 Best FPS: 9.35454 Worst FPS: 4.35161 
    792 08:50:21: Render Target 'rtt/2301856' Average FPS: 8.98519 Best FPS: 13.6054 Worst FPS: 2.58844 
    793 08:50:21: Render Target 'rtt/2301920' Average FPS: 10.4154 Best FPS: 11.396 Worst FPS: 4.44774 
    794 08:50:21: Render Target 'rtt/2301984' Average FPS: 8.05231 Best FPS: 11.2254 Worst FPS: 2.3166 
    795 08:50:21: Render Target 'rtt/2302048' Average FPS: 10.065 Best FPS: 11.976 Worst FPS: 4.83481 
    796 08:50:21: Render Target 'rtt/2346464' Average FPS: 6.15098 Best FPS: 7.52587 Worst FPS: 3.46741 
    797 08:50:21: Render Target 'rtt/2300736' Average FPS: 5.85933 Best FPS: 6.77638 Worst FPS: 3.76648 
    798 08:50:21: Render Target 'rtt/2300800' Average FPS: 3.78998 Best FPS: 6.89655 Worst FPS: 1.92926 
    799 08:50:21: Render Target 'rtt/2300864' Average FPS: 5.05615 Best FPS: 7.72947 Worst FPS: 3.89105 
    800 08:50:21: Render Target 'rtt/2300928' Average FPS: 4.86086 Best FPS: 7.17131 Worst FPS: 3.80228 
    801 08:50:21: Render Target 'rtt/2300992' Average FPS: 7.02867 Best FPS: 7.75194 Worst FPS: 3.58102 
    802 08:50:21: *-*-* OGRE Shutdown 
    803 08:50:21: Unregistering ResourceManager for type Compositor 
    804 08:50:21: Unregistering ResourceManager for type Font 
    805 08:50:21: Unregistering ResourceManager for type Skeleton 
    806 08:50:21: Unregistering ResourceManager for type Mesh 
    807 08:50:21: Unregistering ResourceManager for type HighLevelGpuProgram 
    808 08:50:21: Unloading library .\Plugin_CgProgramManager 
    809 08:50:21: Unloading library .\Plugin_OctreeSceneManager 
    810 08:50:21: Unloading library .\Plugin_BSPSceneManager 
    811 08:50:21: Unloading library .\Plugin_ParticleFX 
    812 08:50:21: Render Target 'OGRE Render Window' Average FPS: 400.076 Best FPS: 452.547 Worst FPS: 228.543 
    813 08:50:21: D3D9 : Shutting down cleanly. 
    814 08:50:21: Unregistering ResourceManager for type Texture 
    815 08:50:21: Unregistering ResourceManager for type GpuProgram 
    816 08:50:21: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    817 08:50:21: Unloading library .\RenderSystem_Direct3D9 
    818 08:50:21: Unregistering ResourceManager for type Material 
    819 08:50:21: Unloading library OgrePlatform.dll 
     56310:29:18: Parsing script hangar.material 
     56410:29:18: Parsing script kupola.material 
     56510:29:18: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     56610:29:18: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     56710:29:18: Error in material kupolalambert5 at line 76 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     56810:29:18: Error in material kupolalambert5 at line 79 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     56910:29:18: Parsing script Ogre.material 
     57010:29:18: Parsing script Particles.material 
     57110:29:18: 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>> 
     58210:29:18: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     583 
     584----------------------------------- 
     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>> 
     59310:29:18: 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>> 
     60410:29:18: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     605 
     606----------------------------------- 
     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>> 
     61510:29:18: Parsing script RaytraceDemo.material 
     61610:29:18: Parsing script stairs.material 
     61710:29:18: Parsing script X3D.material 
     61810:29:18: Parsing script GameTools_Glow.compositor 
     61910:29:18: Parsing script GameTools_ToneMap.compositor 
     62010:29:18: Parsing script sample.fontdef 
     62110:29:18: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     62210:29:18: Parsing script GameTools.particle 
     62310:29:18: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     62410:29:18: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     62510:29:18: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     62610:29:18: Parsing script Compositor.overlay 
     62710:29:18: Parsing script DP3.overlay 
     62810:29:18: Parsing script Example-CubeMapping.overlay 
     62910:29:18: Parsing script Example-DynTex.overlay 
     63010:29:18: Parsing script Example-Water.overlay 
     63110:29:18: Parsing script FullScreen.overlay 
     63210:29:18: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     63310:29:18: Parsing script Shadows.overlay 
     63410:29:18: Finished parsing scripts for resource group General 
     63510:29:18: Parsing scripts for resource group Internal 
     63610:29:18: Finished parsing scripts for resource group Internal 
     63710:29:18: Creating viewport on target 'rtt/3173344', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     63810:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     63910:29:18: Creating viewport on target 'rtt/3173408', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     64010:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     64110:29:18: Creating viewport on target 'rtt/3110848', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     64210:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     64310:29:18: Creating viewport on target 'rtt/3129536', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     64410:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     64510:29:18: Creating viewport on target 'rtt/3133280', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     64610:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 256 H: 256 
     64710:29:18: Texture: stormy_fr.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64810:29:18: Texture: stormy_bk.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     64910:29:18: Texture: stormy_lf.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     65010:29:18: Texture: stormy_rt.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     65110:29:18: Texture: stormy_up.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     65210:29:18: Texture: stormy_dn.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     65310:29:18: Mesh: Loading athene.mesh. 
     65410:29:18: Can't assign material 1 - Default to SubEntity of head because this Material does not exist. Have you forgotten to define it in a .material script? 
     65510:29:18: Creating viewport on target 'rtt/44978016', rendering from camera 'psys1_HPP_IMPOSTOR_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     65610:29:18: Viewport for camera 'psys1_HPP_IMPOSTOR_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     65710:29:18: WARNING: Texture instance 'psys1_HPP_IMPOSTOR' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     65810:29:18: Creating viewport on target 'rtt/44978080', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     65910:29:18: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     66010:29:18: Creating viewport on target 'rtt/44978144', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     66110:29:18: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     66210:29:18: Creating viewport on target 'rtt/3168960', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     66310:29:18: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     66410:29:18: WARNING: Texture instance 'ILLUMMODULE_SCENE_CAMERA_DEPTH' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     66510:29:18: Creating viewport on target 'rtt/3169312', rendering from camera 'psys1_LIGHT_VOLUME_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     66610:29:18: Viewport for camera 'psys1_LIGHT_VOLUME_CAMERA', actual dimensions L: 0 T: 0 W: 128 H: 128 
     66710:29:18: WARNING: Texture instance 'psys1_LIGHT_VOLUME' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     66810:29:18: Win32Input8: DirectInput Activation Starts 
     66910:29:18: Win32Input8: Establishing keyboard input. 
     67010:29:18: Win32Input8: Keyboard input established. 
     67110:29:18: Win32Input8: Initializing mouse input in immediate mode. 
     67210:29:18: Win32Input8: Mouse input in immediate mode initialized. 
     67310:29:18: Win32Input8: DirectInput OK. 
     67410:29:18: Texture: smoke2.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     67510:29:18: D3D9 : Loading 2D Texture, image name : 'pamacs.dds' with 2147483647 mip map levels 
     67610:29:18: WARNING: Texture instance 'CompositorInstanceTexture0' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     67710:29:18: WARNING: Texture instance 'CompositorInstanceTexture4' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     67810:29:18: An exception has been thrown! 
     679 
     680----------------------------------- 
     681Details: 
     682----------------------------------- 
     683Error #: 8 
     684Function: ResourceGroupManager::openResource 
     685Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     686File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     687Line: 583 
     688Stack unwinding: <<beginning of stack>> 
     68910:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     690 
     691----------------------------------- 
     692Details: 
     693----------------------------------- 
     694Error #: 8 
     695Function: ResourceGroupManager::openResource 
     696Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     697File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     698Line: 583 
     699Stack unwinding: <<beginning of stack>> 
     70010:29:18: An exception has been thrown! 
     701 
     702----------------------------------- 
     703Details: 
     704----------------------------------- 
     705Error #: 8 
     706Function: ResourceGroupManager::openResource 
     707Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     708File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     709Line: 583 
     710Stack unwinding: <<beginning of stack>> 
     71110:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     712 
     713----------------------------------- 
     714Details: 
     715----------------------------------- 
     716Error #: 8 
     717Function: ResourceGroupManager::openResource 
     718Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     719File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     720Line: 583 
     721Stack unwinding: <<beginning of stack>> 
     72210:29:18: WARNING: Texture instance 'CompositorInstanceTexture1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     72310:29:18: An exception has been thrown! 
     724 
     725----------------------------------- 
     726Details: 
     727----------------------------------- 
     728Error #: 8 
     729Function: ResourceGroupManager::openResource 
     730Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     731File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     732Line: 583 
     733Stack unwinding: <<beginning of stack>> 
     73410:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     735 
     736----------------------------------- 
     737Details: 
     738----------------------------------- 
     739Error #: 8 
     740Function: ResourceGroupManager::openResource 
     741Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     742File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     743Line: 583 
     744Stack unwinding: <<beginning of stack>> 
     74510:29:18: An exception has been thrown! 
     746 
     747----------------------------------- 
     748Details: 
     749----------------------------------- 
     750Error #: 8 
     751Function: ResourceGroupManager::openResource 
     752Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     753File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     754Line: 583 
     755Stack unwinding: <<beginning of stack>> 
     75610:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     757 
     758----------------------------------- 
     759Details: 
     760----------------------------------- 
     761Error #: 8 
     762Function: ResourceGroupManager::openResource 
     763Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     764File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     765Line: 583 
     766Stack unwinding: <<beginning of stack>> 
     76710:29:18: WARNING: Texture instance 'CompositorInstanceTexture2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     76810:29:18: An exception has been thrown! 
     769 
     770----------------------------------- 
     771Details: 
     772----------------------------------- 
     773Error #: 8 
     774Function: ResourceGroupManager::openResource 
     775Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     776File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     777Line: 583 
     778Stack unwinding: <<beginning of stack>> 
     77910:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     780 
     781----------------------------------- 
     782Details: 
     783----------------------------------- 
     784Error #: 8 
     785Function: ResourceGroupManager::openResource 
     786Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     787File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     788Line: 583 
     789Stack unwinding: <<beginning of stack>> 
     79010:29:18: An exception has been thrown! 
     791 
     792----------------------------------- 
     793Details: 
     794----------------------------------- 
     795Error #: 8 
     796Function: ResourceGroupManager::openResource 
     797Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     798File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     799Line: 583 
     800Stack unwinding: <<beginning of stack>> 
     80110:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     802 
     803----------------------------------- 
     804Details: 
     805----------------------------------- 
     806Error #: 8 
     807Function: ResourceGroupManager::openResource 
     808Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     809File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     810Line: 583 
     811Stack unwinding: <<beginning of stack>> 
     81210:29:18: WARNING: Texture instance 'CompositorInstanceTexture3' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     81310:29:18: An exception has been thrown! 
     814 
     815----------------------------------- 
     816Details: 
     817----------------------------------- 
     818Error #: 8 
     819Function: ResourceGroupManager::openResource 
     820Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     821File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     822Line: 583 
     823Stack unwinding: <<beginning of stack>> 
     82410:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     825 
     826----------------------------------- 
     827Details: 
     828----------------------------------- 
     829Error #: 8 
     830Function: ResourceGroupManager::openResource 
     831Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     832File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     833Line: 583 
     834Stack unwinding: <<beginning of stack>> 
     83510:29:18: An exception has been thrown! 
     836 
     837----------------------------------- 
     838Details: 
     839----------------------------------- 
     840Error #: 8 
     841Function: ResourceGroupManager::openResource 
     842Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     843File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     844Line: 583 
     845Stack unwinding: <<beginning of stack>> 
     84610:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     847 
     848----------------------------------- 
     849Details: 
     850----------------------------------- 
     851Error #: 8 
     852Function: ResourceGroupManager::openResource 
     853Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     854File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     855Line: 583 
     856Stack unwinding: <<beginning of stack>> 
     85710:29:18: An exception has been thrown! 
     858 
     859----------------------------------- 
     860Details: 
     861----------------------------------- 
     862Error #: 8 
     863Function: ResourceGroupManager::openResource 
     864Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     865File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     866Line: 583 
     867Stack unwinding: <<beginning of stack>> 
     86810:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     869 
     870----------------------------------- 
     871Details: 
     872----------------------------------- 
     873Error #: 8 
     874Function: ResourceGroupManager::openResource 
     875Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     876File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     877Line: 583 
     878Stack unwinding: <<beginning of stack>> 
     87910:29:18: An exception has been thrown! 
     880 
     881----------------------------------- 
     882Details: 
     883----------------------------------- 
     884Error #: 8 
     885Function: ResourceGroupManager::openResource 
     886Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     887File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     888Line: 583 
     889Stack unwinding: <<beginning of stack>> 
     89010:29:18: Error loading texture rockwall.tga. Texture layer will be blank. Loading the texture failed with the following exception: An exception has been thrown! 
     891 
     892----------------------------------- 
     893Details: 
     894----------------------------------- 
     895Error #: 8 
     896Function: ResourceGroupManager::openResource 
     897Description: Cannot locate resource rockwall.tga in resource group General or any other group..  
     898File: \ogre_gametools\OgreMain\src\OgreResourceGroupManager.cpp 
     899Line: 583 
     900Stack unwinding: <<beginning of stack>> 
     90110:29:59: Unregistering ResourceManager for type BspLevel 
     90210:29:59: Render Target 'rtt/3173344' Average FPS: 39.8856 Best FPS: 275.174 Worst FPS: 28.1827 
     90310:29:59: Render Target 'rtt/3129536' Average FPS: 39.8676 Best FPS: 275.174 Worst FPS: 28.1827 
     90410:29:59: Render Target 'rtt/3110848' Average FPS: 39.867 Best FPS: 274.725 Worst FPS: 28.1827 
     90510:29:59: Render Target 'rtt/3133280' Average FPS: 39.8701 Best FPS: 276.171 Worst FPS: 28.1827 
     90610:29:59: Render Target 'rtt/3173408' Average FPS: 39.8856 Best FPS: 275.174 Worst FPS: 28.1553 
     90710:29:59: Render Target 'rtt/3169312' Average FPS: 39.8441 Best FPS: 303.393 Worst FPS: 26.9784 
     90810:29:59: Render Target 'rtt/3168960' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     90910:29:59: Render Target 'rtt/44978144' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     91010:29:59: Render Target 'rtt/44978080' Average FPS: 39.8468 Best FPS: 303.091 Worst FPS: 26.9784 
     91110:29:59: Render Target 'rtt/44978016' Average FPS: 39.8468 Best FPS: 303.393 Worst FPS: 26.9784 
     91210:29:59: *-*-* OGRE Shutdown 
     91310:29:59: Unregistering ResourceManager for type Compositor 
     91410:29:59: Unregistering ResourceManager for type Font 
     91510:29:59: Unregistering ResourceManager for type Skeleton 
     91610:29:59: Unregistering ResourceManager for type Mesh 
     91710:29:59: Unregistering ResourceManager for type HighLevelGpuProgram 
     91810:29:59: Unloading library .\Plugin_CgProgramManager 
     91910:29:59: Unloading library .\Plugin_OctreeSceneManager 
     92010:29:59: Unloading library .\Plugin_BSPSceneManager 
     92110:29:59: Unloading library .\Plugin_ParticleFX 
     92210:29:59: Render Target 'OGRE Render Window' Average FPS: 39.8641 Best FPS: 305.777 Worst FPS: 26.9784 
     92310:29:59: D3D9 : Shutting down cleanly. 
     92410:29:59: Unregistering ResourceManager for type Texture 
     92510:29:59: Unregistering ResourceManager for type GpuProgram 
     92610:29:59: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     92710:29:59: Unloading library .\RenderSystem_Direct3D9 
     92810:29:59: Unregistering ResourceManager for type Material 
     92910:29:59: Unloading library OgrePlatform.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/ogre.cfg

    r1474 r1519  
    66Floating-point mode=Fastest 
    77Full Screen=No 
    8 Rendering Device=NVIDIA GeForce 6800 GT 
     8Rendering Device=NVIDIA GeForce 7800 GT 
    99VSync=No 
    1010Video Mode=800 x 600 @ 32-bit colour 
Note: See TracChangeset for help on using the changeset viewer.