Changeset 1860 for GTP/trunk/App


Ignore:
Timestamp:
12/06/06 16:05:53 (18 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum/Ogre
Files:
7 edited

Legend:

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

    r1859 r1860  
    312312} 
    313313 
    314 float4 NormalDistancePS( VertOut IN):COLOR 
     314float4 NormalDistancePS( VertOut IN, uniform float refIndex):COLOR 
    315315{ 
    316316  
    317317 float4 Color = float4(0, 0, 0, 0); 
    318318 //return Color; 
    319  Color = float4(normalize(IN.mNormal), length(IN.cPos)); 
     319 Color = float4(normalize(IN.mNormal) * refIndex, length(IN.cPos)); 
    320320 return Color; 
    321321} 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/programs/MetalTeapotNew.hlsl

    r1859 r1860  
    1616#define MIN_LIN_ITERATIONCOUNT 6 
    1717#define SECANT_ITERATIONCOUNT 1 
    18 #define MAX_RAY_DEPTH 2 
     18#define MAX_RAY_DEPTH 5 
    1919 
    2020void linearSearch(  float3 x, float3 R, float3 N, samplerCUBE mp, 
     
    3030 float a = xm / Rm; 
    3131            
    32  bool undershoot = true, overshoot = false;  
     32 bool undershoot = false, overshoot = false;  
    3333  
    3434 float dt =  length(x / xm - R / Rm) * MAX_LIN_ITERATIONCOUNT; 
     
    3636 dt = 1.0 / dt; 
    3737     
    38  float t = dt; 
     38 float t = 0.01;//dt; 
    3939 float pa; 
    4040 bool first = true; 
     
    6464 if(!overshoot) 
    6565  p = float3(0,0,0); 
    66  else if(t == 2 * dt) 
     66/* else if(t == 2 * dt) 
    6767 { 
    6868         float3 hitp = pa * normalize(p); 
    6969    if(dot(normalize(hitp - x), N) < 0.1f) 
    7070           p = float3(0,0,0); 
    71  } 
     71 }*/ 
    7272} 
    7373 
     
    178178                                                        uniform samplerCUBE NormDistMap1 : register(s2), 
    179179                                                        uniform samplerCUBE NormDistMap2 : register(s3), 
    180                                                         uniform float3 lastCenter) 
     180                                                        uniform float3 lastCenter, 
     181                                                        uniform float refIndex) 
    181182{ 
    182183 float4 Color = float4(1,1,1,1); 
     
    188189  
    189190 V = normalize(V); 
    190  float3 R = normalize(reflect( V, N)); 
    191  //float3 R = normalize(refract( V, N, 0.8)); 
     191 
     192float3 R;           
     193if(refIndex > 100.0) 
     194    R = normalize(reflect( V, N)); 
     195else 
     196{ 
     197        refIndex = 1.0 / refIndex; 
     198    R = normalize(refract( V, N, refIndex)); 
     199} 
    192200                         
    193201 float3 Nl; 
     
    207215                                                        uniform samplerCUBE NormDistMap1 : register(s2), 
    208216                                                        uniform samplerCUBE NormDistMap2 : register(s3), 
    209                                                         uniform float3 lastCenter) 
     217                                                        uniform float3 lastCenter, 
     218                                                        uniform float refIndex) 
    210219{ 
    211220         float4 I = float4(0,0,0,0); 
    212221                         
    213          float3 N = normalize(IN.mNormal); 
     222         float3 N = normalize(IN.mNormal) * refIndex; 
    214223         float3 newTexCoord;     
    215224         float3 x = IN.wPos - lastCenter; 
     
    222231         while(depth < MAX_RAY_DEPTH) 
    223232         { 
    224            float3 R = normalize(reflect( V, N)); 
    225           // float3 R = normalize(refract( V, N, 0.8)); 
     233           float3 R; 
     234           float refIndex = length(N); 
     235           refIndex = 1.0 / refIndex; 
     236           N = normalize(N); 
     237            
     238           if(refIndex > 100.0) 
     239            R = normalize(reflect( V, N)); 
     240           else 
     241            R = normalize(refract( V, N, refIndex)); 
    226242                                 
    227243           float3 Nl; 
     
    241257           N = normalize(Nl); 
    242258           V = R; 
    243           // if(dot(N, V) > 0) N = -N; 
     259            
     260          if(refIndex <= 100.0) 
     261            if(dot(N, V) > 0) N = -N; 
    244262        } 
    245263         
    246         /*if(I.a == 0) 
    247        I = readCubeMap(CubeMap, l);*/ 
     264//      if(I.a == 0) 
     265 //      I = readCubeMap(CubeMap, l); 
    248266   
    249267        return I; 
     
    257275                                                        uniform samplerCUBE NormDistMap2 : register(s3), 
    258276                                                        uniform float3 lastCenter, 
    259                                                         uniform float SingleBounce):COLOR 
     277                                                        uniform float SingleBounce, 
     278                                                        uniform float refIndex):COLOR 
    260279{ 
    261280        float4 Color = 1.0; 
    262281        if(SingleBounce == 1) 
    263          Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter); 
     282         Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex); 
    264283        else 
    265          Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter); 
     284         Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex); 
    266285          
    267286        return Color; 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/MetalTeapot.material

    r1859 r1860  
    8989    fragment_program_ref NormalDistancePS 
    9090    {  
    91                                  
     91                param_named refIndex float 1.6           
    9292        }  
    9393  } 
     
    111111    fragment_program_ref NormalDistancePS 
    112112    {  
    113                                  
     113                param_named refIndex float 1.6           
    114114        }  
    115115  } 
     
    134134      pass  
    135135      {  
     136        //cull_hardware none 
    136137                IllumTechniques 
    137138                { 
     
    194195                        //param_named k float3 4.16 2.57 2.32 
    195196                        param_named F0 float3 0.95 0.95 0.95 
    196                         param_named SingleBounce float 0.0                       
     197                        param_named SingleBounce float 0.0 
     198                        param_named refIndex float 1.6                   
    197199                }  
    198200                 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log

    r1856 r1860  
    1 12:01:10: Creating resource group General 
    2 12:01:10: Creating resource group Internal 
    3 12:01:10: Creating resource group Autodetect 
    4 12:01:10: Registering ResourceManager for type Material 
    5 12:01:10: Registering ResourceManager for type Mesh 
    6 12:01:10: Registering ResourceManager for type Skeleton 
    7 12:01:10: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 12:01:10: Loading library OgrePlatform.dll 
    9 12:01:10: OverlayElementFactory for type Panel registered. 
    10 12:01:10: OverlayElementFactory for type BorderPanel registered. 
    11 12:01:10: OverlayElementFactory for type TextArea registered. 
    12 12:01:10: Registering ResourceManager for type Font 
    13 12:01:10: ArchiveFactory for archive type FileSystem registered. 
    14 12:01:10: ArchiveFactory for archive type Zip registered. 
    15 12:01:10: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 12:01:10: 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 12:01:10: Registering ResourceManager for type HighLevelGpuProgram 
    18 12:01:10: Registering ResourceManager for type Compositor 
    19 12:01:10: MovableObjectFactory for type 'Entity' registered. 
    20 12:01:10: MovableObjectFactory for type 'Light' registered. 
    21 12:01:10: MovableObjectFactory for type 'BillboardSet' registered. 
    22 12:01:10: MovableObjectFactory for type 'ManualObject' registered. 
    23 12:01:10: MovableObjectFactory for type 'BillboardChain' registered. 
    24 12:01:10: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 12:01:10: Loading library .\RenderSystem_Direct3D9 
    26 12:01:10: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 12:01:10: D3D9: Driver Detection Starts 
    28 12:01:10: D3D9: Driver Detection Ends 
    29 12:01:10: Loading library .\Plugin_ParticleFX 
    30 12:01:10: Particle Emitter Type 'Point' registered 
    31 12:01:10: Particle Emitter Type 'Box' registered 
    32 12:01:10: Particle Emitter Type 'Ellipsoid' registered 
    33 12:01:10: Particle Emitter Type 'Cylinder' registered 
    34 12:01:10: Particle Emitter Type 'Ring' registered 
    35 12:01:10: Particle Emitter Type 'HollowEllipsoid' registered 
    36 12:01:10: Particle Affector Type 'LinearForce' registered 
    37 12:01:10: Particle Affector Type 'ColourFader' registered 
    38 12:01:10: Particle Affector Type 'ColourFader2' registered 
    39 12:01:10: Particle Affector Type 'ColourImage' registered 
    40 12:01:10: Particle Affector Type 'ColourInterpolator' registered 
    41 12:01:10: Particle Affector Type 'Scaler' registered 
    42 12:01:10: Particle Affector Type 'Rotator' registered 
    43 12:01:10: Particle Affector Type 'DirectionRandomiser' registered 
    44 12:01:10: Particle Affector Type 'DeflectorPlane' registered 
    45 12:01:10: Loading library .\Plugin_BSPSceneManager 
    46 12:01:10: Registering ResourceManager for type BspLevel 
    47 12:01:10: Loading library .\Plugin_OctreeSceneManager 
    48 12:01:10: Loading library .\Plugin_CgProgramManager 
    49 12:01:10: *-*-* OGRE Initialising 
    50 12:01:10: *-*-* Version 1.2.0 (Dagon) 
    51 12:01:10: Creating resource group Bootstrap 
    52 12:01:10: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 12:01:10: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 12:01:10: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 12:01:10: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 12:01:10: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 12:01:10: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 12:01:10: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 12:01:10: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 12:01:10: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 12:01:10: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 12:01:10: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 12:01:10: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 12:01:10: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 12:01:10: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 12:01:10: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 12:01:10: D3D9 : RenderSystem Option: Full Screen = No 
    68 12:01:10: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    69 12:01:10: D3D9 : RenderSystem Option: VSync = No 
    70 12:01:10: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 12:01:11: D3D9 : Subsystem Initialising 
    72 12:01:11: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 12:01:11: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 12:01: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 12:01:11: Registering ResourceManager for type Texture 
    76 12:01:11: Registering ResourceManager for type GpuProgram 
    77 12:01:11: RenderSystem capabilities 
    78 12:01:11: ------------------------- 
    79 12:01:11:  * Hardware generation of mipmaps: yes 
    80 12:01:11:  * Texture blending: yes 
    81 12:01:11:  * Anisotropic texture filtering: yes 
    82 12:01:11:  * Dot product texture operation: yes 
    83 12:01:11:  * Cube mapping: yes 
    84 12:01:11:  * Hardware stencil buffer: yes 
    85 12:01:11:    - Stencil depth: 8 
    86 12:01:11:    - Two sided stencil support: yes 
    87 12:01:11:    - Wrap stencil values: yes 
    88 12:01:11:  * Hardware vertex / index buffers: yes 
    89 12:01:11:  * Vertex programs: yes 
    90 12:01:11:    - Max vertex program version: vs_3_0 
    91 12:01:11:  * Fragment programs: yes 
    92 12:01:11:    - Max fragment program version: ps_3_0 
    93 12:01:11:  * Texture Compression: yes 
    94 12:01:11:    - DXT: yes 
    95 12:01:11:    - VTC: no 
    96 12:01:11:  * Scissor Rectangle: yes 
    97 12:01:11:  * Hardware Occlusion Query: yes 
    98 12:01:11:  * User clip planes: yes 
    99 12:01:11:  * VET_UBYTE4 vertex element type: yes 
    100 12:01:11:  * Infinite far plane projection: yes 
    101 12:01:11:  * Hardware render-to-texture: yes 
    102 12:01:11:  * Floating point textures: yes 
    103 12:01:11:  * Non-power-of-two textures: yes 
    104 12:01:11:  * Volume textures: yes 
    105 12:01:11:  * Multiple Render Targets: 4 
    106 12:01:11:  * Max Point Size: 8192 
    107 12:01:11: *************************************** 
    108 12:01:11: *** D3D9 : Subsystem Initialised OK *** 
    109 12:01:11: *************************************** 
    110 12:01:11: ResourceBackgroundQueue - threading disabled 
    111 12:01:11: Particle Renderer Type 'billboard' registered 
    112 12:01:11: Particle Renderer Type 'sprite' registered 
    113 12:01: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 12:01:11: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 12:01:11: Parsing scripts for resource group Autodetect 
    116 12:01:11: Finished parsing scripts for resource group Autodetect 
    117 12:01:11: Parsing scripts for resource group Bootstrap 
    118 12:01:11: Parsing script OgreCore.material 
    119 12:01:11: Parsing script OgreProfiler.material 
    120 12:01:11: Parsing script Ogre.fontdef 
    121 12:01:11: Parsing script OgreDebugPanel.overlay 
    122 12:01: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 12:01: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 12:01: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 12:01:11: Font TrebuchetMSBoldusing texture size 512x512 
    126 12:01:11: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 12:01:11: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 12:01:11: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 12:01:11: Parsing script OgreLoadingPanel.overlay 
    130 12:01:11: Finished parsing scripts for resource group Bootstrap 
    131 12:01:11: Parsing scripts for resource group General 
    132 12:01:11: Parsing script GameTools.program 
    133 12:01:11: Parsing script atlascube.material 
    134 12:01:11: Parsing script difflab.material 
    135 12:01:12: An exception has been thrown! 
     116:02:45: Creating resource group General 
     216:02:45: Creating resource group Internal 
     316:02:45: Creating resource group Autodetect 
     416:02:45: Registering ResourceManager for type Material 
     516:02:45: Registering ResourceManager for type Mesh 
     616:02:45: Registering ResourceManager for type Skeleton 
     716:02:45: MovableObjectFactory for type 'ParticleSystem' registered. 
     816:02:45: Loading library OgrePlatform.dll 
     916:02:45: OverlayElementFactory for type Panel registered. 
     1016:02:45: OverlayElementFactory for type BorderPanel registered. 
     1116:02:45: OverlayElementFactory for type TextArea registered. 
     1216:02:45: Registering ResourceManager for type Font 
     1316:02:45: ArchiveFactory for archive type FileSystem registered. 
     1416:02:45: ArchiveFactory for archive type Zip registered. 
     1516:02:45: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1616:02:45: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
     1716:02:45: Registering ResourceManager for type HighLevelGpuProgram 
     1816:02:45: Registering ResourceManager for type Compositor 
     1916:02:45: MovableObjectFactory for type 'Entity' registered. 
     2016:02:45: MovableObjectFactory for type 'Light' registered. 
     2116:02:45: MovableObjectFactory for type 'BillboardSet' registered. 
     2216:02:45: MovableObjectFactory for type 'ManualObject' registered. 
     2316:02:45: MovableObjectFactory for type 'BillboardChain' registered. 
     2416:02:45: MovableObjectFactory for type 'RibbonTrail' registered. 
     2516:02:45: Loading library .\RenderSystem_Direct3D9 
     2616:02:45: D3D9 : Direct3D9 Rendering Subsystem created. 
     2716:02:45: D3D9: Driver Detection Starts 
     2816:02:45: D3D9: Driver Detection Ends 
     2916:02:45: Loading library .\Plugin_ParticleFX 
     3016:02:45: Particle Emitter Type 'Point' registered 
     3116:02:45: Particle Emitter Type 'Box' registered 
     3216:02:45: Particle Emitter Type 'Ellipsoid' registered 
     3316:02:45: Particle Emitter Type 'Cylinder' registered 
     3416:02:45: Particle Emitter Type 'Ring' registered 
     3516:02:45: Particle Emitter Type 'HollowEllipsoid' registered 
     3616:02:45: Particle Affector Type 'LinearForce' registered 
     3716:02:45: Particle Affector Type 'ColourFader' registered 
     3816:02:45: Particle Affector Type 'ColourFader2' registered 
     3916:02:45: Particle Affector Type 'ColourImage' registered 
     4016:02:45: Particle Affector Type 'ColourInterpolator' registered 
     4116:02:45: Particle Affector Type 'Scaler' registered 
     4216:02:45: Particle Affector Type 'Rotator' registered 
     4316:02:45: Particle Affector Type 'DirectionRandomiser' registered 
     4416:02:45: Particle Affector Type 'DeflectorPlane' registered 
     4516:02:45: Loading library .\Plugin_BSPSceneManager 
     4616:02:45: Registering ResourceManager for type BspLevel 
     4716:02:45: Loading library .\Plugin_OctreeSceneManager 
     4816:02:45: Loading library .\Plugin_CgProgramManager 
     4916:02:45: *-*-* OGRE Initialising 
     5016:02:45: *-*-* Version 1.2.0 (Dagon) 
     5116:02:45: Creating resource group Bootstrap 
     5216:02:45: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5316:02:45: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5416:02:45: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5516:02:45: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5616:02:45: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5716:02:45: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5816:02:45: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5916:02:45: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6016:02:45: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6116:02:45: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6216:02:45: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6316:02:45: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6416:02:45: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6516:02:45: D3D9 : RenderSystem Option: Anti aliasing = None 
     6616:02:45: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6716:02:45: D3D9 : RenderSystem Option: Full Screen = No 
     6816:02:45: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     6916:02:45: D3D9 : RenderSystem Option: VSync = No 
     7016:02:45: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7116:02:46: D3D9 : Subsystem Initialising 
     7216:02:46: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7316:02:46: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7416:02:46: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7516:02:46: Registering ResourceManager for type Texture 
     7616:02:46: Registering ResourceManager for type GpuProgram 
     7716:02:46: RenderSystem capabilities 
     7816:02:46: ------------------------- 
     7916:02:46:  * Hardware generation of mipmaps: yes 
     8016:02:46:  * Texture blending: yes 
     8116:02:46:  * Anisotropic texture filtering: yes 
     8216:02:46:  * Dot product texture operation: yes 
     8316:02:46:  * Cube mapping: yes 
     8416:02:46:  * Hardware stencil buffer: yes 
     8516:02:46:    - Stencil depth: 8 
     8616:02:46:    - Two sided stencil support: yes 
     8716:02:46:    - Wrap stencil values: yes 
     8816:02:46:  * Hardware vertex / index buffers: yes 
     8916:02:46:  * Vertex programs: yes 
     9016:02:46:    - Max vertex program version: vs_3_0 
     9116:02:46:  * Fragment programs: yes 
     9216:02:46:    - Max fragment program version: ps_3_0 
     9316:02:46:  * Texture Compression: yes 
     9416:02:46:    - DXT: yes 
     9516:02:46:    - VTC: no 
     9616:02:46:  * Scissor Rectangle: yes 
     9716:02:46:  * Hardware Occlusion Query: yes 
     9816:02:46:  * User clip planes: yes 
     9916:02:46:  * VET_UBYTE4 vertex element type: yes 
     10016:02:46:  * Infinite far plane projection: yes 
     10116:02:46:  * Hardware render-to-texture: yes 
     10216:02:46:  * Floating point textures: yes 
     10316:02:46:  * Non-power-of-two textures: yes 
     10416:02:46:  * Volume textures: yes 
     10516:02:46:  * Multiple Render Targets: 4 
     10616:02:46:  * Max Point Size: 8192 
     10716:02:46: *************************************** 
     10816:02:46: *** D3D9 : Subsystem Initialised OK *** 
     10916:02:46: *************************************** 
     11016:02:46: ResourceBackgroundQueue - threading disabled 
     11116:02:46: Particle Renderer Type 'billboard' registered 
     11216:02:46: Particle Renderer Type 'sprite' registered 
     11316:02:46: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     11416:02:46: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11516:02:46: Parsing scripts for resource group Autodetect 
     11616:02:46: Finished parsing scripts for resource group Autodetect 
     11716:02:46: Parsing scripts for resource group Bootstrap 
     11816:02:46: Parsing script OgreCore.material 
     11916:02:46: Parsing script OgreProfiler.material 
     12016:02:46: Parsing script Ogre.fontdef 
     12116:02:46: Parsing script OgreDebugPanel.overlay 
     12216:02:46: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12316:02:46: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12416:02:46: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12516:02:46: Font TrebuchetMSBoldusing texture size 512x512 
     12616:02:46: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12716:02:46: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12816:02:46: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12916:02:46: Parsing script OgreLoadingPanel.overlay 
     13016:02:46: Finished parsing scripts for resource group Bootstrap 
     13116:02:46: Parsing scripts for resource group General 
     13216:02:46: Parsing script GameTools.program 
     13316:02:46: Parsing script atlascube.material 
     13416:02:46: Parsing script difflab.material 
     13516:02:47: An exception has been thrown! 
    136136 
    137137----------------------------------- 
     
    144144Line: 779 
    145145Stack unwinding: <<beginning of stack>> 
    146 12:01:12: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14616:02:47: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    147147 
    148148----------------------------------- 
     
    155155Line: 779 
    156156Stack unwinding: <<beginning of stack>> 
    157 12:01:12: An exception has been thrown! 
     15716:02:47: An exception has been thrown! 
    158158 
    159159----------------------------------- 
     
    166166Line: 779 
    167167Stack unwinding: <<beginning of stack>> 
    168 12:01:12: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16816:02:47: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    169169 
    170170----------------------------------- 
     
    177177Line: 779 
    178178Stack unwinding: <<beginning of stack>> 
    179 12:01:12: An exception has been thrown! 
     17916:02:47: An exception has been thrown! 
    180180 
    181181----------------------------------- 
     
    188188Line: 779 
    189189Stack unwinding: <<beginning of stack>> 
    190 12:01:12: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19016:02:47: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    191191 
    192192----------------------------------- 
     
    199199Line: 779 
    200200Stack unwinding: <<beginning of stack>> 
    201 12:01:12: An exception has been thrown! 
     20116:02:47: An exception has been thrown! 
    202202 
    203203----------------------------------- 
     
    210210Line: 779 
    211211Stack unwinding: <<beginning of stack>> 
    212 12:01:12: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21216:02:47: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    213213 
    214214----------------------------------- 
     
    221221Line: 779 
    222222Stack unwinding: <<beginning of stack>> 
    223 12:01:12: An exception has been thrown! 
     22316:02:47: An exception has been thrown! 
    224224 
    225225----------------------------------- 
     
    232232Line: 779 
    233233Stack unwinding: <<beginning of stack>> 
    234 12:01:12: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23416:02:47: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    235235 
    236236----------------------------------- 
     
    243243Line: 779 
    244244Stack unwinding: <<beginning of stack>> 
    245 12:01:12: An exception has been thrown! 
     24516:02:47: An exception has been thrown! 
    246246 
    247247----------------------------------- 
     
    254254Line: 779 
    255255Stack unwinding: <<beginning of stack>> 
    256 12:01:12: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25616:02:47: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    257257 
    258258----------------------------------- 
     
    265265Line: 779 
    266266Stack unwinding: <<beginning of stack>> 
    267 12:01:12: An exception has been thrown! 
     26716:02:47: An exception has been thrown! 
    268268 
    269269----------------------------------- 
     
    276276Line: 779 
    277277Stack unwinding: <<beginning of stack>> 
    278 12:01:12: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27816:02:47: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    279279 
    280280----------------------------------- 
     
    287287Line: 779 
    288288Stack unwinding: <<beginning of stack>> 
    289 12:01:12: An exception has been thrown! 
     28916:02:47: An exception has been thrown! 
    290290 
    291291----------------------------------- 
     
    298298Line: 779 
    299299Stack unwinding: <<beginning of stack>> 
    300 12:01:12: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30016:02:47: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    301301 
    302302----------------------------------- 
     
    309309Line: 779 
    310310Stack unwinding: <<beginning of stack>> 
    311 12:01:12: An exception has been thrown! 
     31116:02:47: An exception has been thrown! 
    312312 
    313313----------------------------------- 
     
    320320Line: 779 
    321321Stack unwinding: <<beginning of stack>> 
    322 12:01:12: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32216:02:47: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    323323 
    324324----------------------------------- 
     
    331331Line: 779 
    332332Stack unwinding: <<beginning of stack>> 
    333 12:01:12: An exception has been thrown! 
     33316:02:47: An exception has been thrown! 
    334334 
    335335----------------------------------- 
     
    342342Line: 779 
    343343Stack unwinding: <<beginning of stack>> 
    344 12:01:12: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34416:02:47: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    345345 
    346346----------------------------------- 
     
    353353Line: 779 
    354354Stack unwinding: <<beginning of stack>> 
    355 12:01:12: An exception has been thrown! 
     35516:02:47: An exception has been thrown! 
    356356 
    357357----------------------------------- 
     
    364364Line: 779 
    365365Stack unwinding: <<beginning of stack>> 
    366 12:01:12: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     36616:02:47: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    367367 
    368368----------------------------------- 
     
    375375Line: 779 
    376376Stack unwinding: <<beginning of stack>> 
    377 12:01:12: An exception has been thrown! 
     37716:02:47: An exception has been thrown! 
    378378 
    379379----------------------------------- 
     
    386386Line: 779 
    387387Stack unwinding: <<beginning of stack>> 
    388 12:01:12: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     38816:02:47: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    389389 
    390390----------------------------------- 
     
    397397Line: 779 
    398398Stack unwinding: <<beginning of stack>> 
    399 12:01:12: An exception has been thrown! 
     39916:02:47: An exception has been thrown! 
    400400 
    401401----------------------------------- 
     
    408408Line: 779 
    409409Stack unwinding: <<beginning of stack>> 
    410 12:01:12: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41016:02:47: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    411411 
    412412----------------------------------- 
     
    419419Line: 779 
    420420Stack unwinding: <<beginning of stack>> 
    421 12:01:12: An exception has been thrown! 
     42116:02:47: An exception has been thrown! 
    422422 
    423423----------------------------------- 
     
    430430Line: 779 
    431431Stack unwinding: <<beginning of stack>> 
    432 12:01:12: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43216:02:47: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    433433 
    434434----------------------------------- 
     
    441441Line: 779 
    442442Stack unwinding: <<beginning of stack>> 
    443 12:01:12: An exception has been thrown! 
     44316:02:47: An exception has been thrown! 
    444444 
    445445----------------------------------- 
     
    452452Line: 779 
    453453Stack unwinding: <<beginning of stack>> 
    454 12:01:12: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45416:02:47: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    455455 
    456456----------------------------------- 
     
    463463Line: 779 
    464464Stack unwinding: <<beginning of stack>> 
    465 12:01:12: An exception has been thrown! 
     46516:02:47: An exception has been thrown! 
    466466 
    467467----------------------------------- 
     
    474474Line: 779 
    475475Stack unwinding: <<beginning of stack>> 
    476 12:01:12: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     47616:02:47: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    477477 
    478478----------------------------------- 
     
    485485Line: 779 
    486486Stack unwinding: <<beginning of stack>> 
    487 12:01:12: An exception has been thrown! 
     48716:02:47: An exception has been thrown! 
    488488 
    489489----------------------------------- 
     
    496496Line: 779 
    497497Stack unwinding: <<beginning of stack>> 
    498 12:01:12: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     49816:02:47: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    499499 
    500500----------------------------------- 
     
    507507Line: 779 
    508508Stack unwinding: <<beginning of stack>> 
    509 12:01:12: An exception has been thrown! 
     50916:02:47: An exception has been thrown! 
    510510 
    511511----------------------------------- 
     
    518518Line: 779 
    519519Stack unwinding: <<beginning of stack>> 
    520 12:01:12: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52016:02:47: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    521521 
    522522----------------------------------- 
     
    529529Line: 779 
    530530Stack unwinding: <<beginning of stack>> 
    531 12:01:12: An exception has been thrown! 
     53116:02:47: An exception has been thrown! 
    532532 
    533533----------------------------------- 
     
    540540Line: 779 
    541541Stack unwinding: <<beginning of stack>> 
    542 12:01:12: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54216:02:47: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    543543 
    544544----------------------------------- 
     
    551551Line: 779 
    552552Stack unwinding: <<beginning of stack>> 
    553 12:01:12: An exception has been thrown! 
     55316:02:47: An exception has been thrown! 
    554554 
    555555----------------------------------- 
     
    562562Line: 779 
    563563Stack unwinding: <<beginning of stack>> 
    564 12:01:12: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56416:02:47: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    565565 
    566566----------------------------------- 
     
    573573Line: 779 
    574574Stack unwinding: <<beginning of stack>> 
    575 12:01:12: An exception has been thrown! 
     57516:02:47: An exception has been thrown! 
    576576 
    577577----------------------------------- 
     
    584584Line: 779 
    585585Stack unwinding: <<beginning of stack>> 
    586 12:01:12: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     58616:02:47: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    587587 
    588588----------------------------------- 
     
    595595Line: 779 
    596596Stack unwinding: <<beginning of stack>> 
    597 12:01:12: Parsing script diffscene.material 
    598 12:01:12: An exception has been thrown! 
     59716:02:47: Parsing script diffscene.material 
     59816:02:47: An exception has been thrown! 
    599599 
    600600----------------------------------- 
     
    607607Line: 779 
    608608Stack unwinding: <<beginning of stack>> 
    609 12:01:12: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     60916:02:47: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    610610 
    611611----------------------------------- 
     
    618618Line: 779 
    619619Stack unwinding: <<beginning of stack>> 
    620 12:01:12: An exception has been thrown! 
     62016:02:47: An exception has been thrown! 
    621621 
    622622----------------------------------- 
     
    629629Line: 779 
    630630Stack unwinding: <<beginning of stack>> 
    631 12:01:12: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63116:02:47: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    632632 
    633633----------------------------------- 
     
    640640Line: 779 
    641641Stack unwinding: <<beginning of stack>> 
    642 12:01:12: An exception has been thrown! 
     64216:02:47: An exception has been thrown! 
    643643 
    644644----------------------------------- 
     
    651651Line: 779 
    652652Stack unwinding: <<beginning of stack>> 
    653 12:01:12: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65316:02:47: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    654654 
    655655----------------------------------- 
     
    662662Line: 779 
    663663Stack unwinding: <<beginning of stack>> 
    664 12:01:12: An exception has been thrown! 
     66416:02:47: An exception has been thrown! 
    665665 
    666666----------------------------------- 
     
    673673Line: 779 
    674674Stack unwinding: <<beginning of stack>> 
    675 12:01:12: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67516:02:47: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    676676 
    677677----------------------------------- 
     
    684684Line: 779 
    685685Stack unwinding: <<beginning of stack>> 
    686 12:01:12: An exception has been thrown! 
     68616:02:47: An exception has been thrown! 
    687687 
    688688----------------------------------- 
     
    695695Line: 779 
    696696Stack unwinding: <<beginning of stack>> 
    697 12:01:12: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69716:02:47: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    698698 
    699699----------------------------------- 
     
    706706Line: 779 
    707707Stack unwinding: <<beginning of stack>> 
    708 12:01:12: An exception has been thrown! 
     70816:02:47: An exception has been thrown! 
    709709 
    710710----------------------------------- 
     
    717717Line: 779 
    718718Stack unwinding: <<beginning of stack>> 
    719 12:01:12: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     71916:02:47: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    720720 
    721721----------------------------------- 
     
    728728Line: 779 
    729729Stack unwinding: <<beginning of stack>> 
    730 12:01:12: An exception has been thrown! 
     73016:02:47: An exception has been thrown! 
    731731 
    732732----------------------------------- 
     
    739739Line: 779 
    740740Stack unwinding: <<beginning of stack>> 
    741 12:01:12: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74116:02:47: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    742742 
    743743----------------------------------- 
     
    750750Line: 779 
    751751Stack unwinding: <<beginning of stack>> 
    752 12:01:12: An exception has been thrown! 
     75216:02:47: An exception has been thrown! 
    753753 
    754754----------------------------------- 
     
    761761Line: 779 
    762762Stack unwinding: <<beginning of stack>> 
    763 12:01:12: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76316:02:47: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    764764 
    765765----------------------------------- 
     
    772772Line: 779 
    773773Stack unwinding: <<beginning of stack>> 
    774 12:01:12: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    775 12:01:12: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    776 12:01:12: Parsing script Diffuse.material 
    777 12:01:12: An exception has been thrown! 
     77416:02:47: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77516:02:47: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77616:02:47: Parsing script Diffuse.material 
     77716:02:47: An exception has been thrown! 
    778778 
    779779----------------------------------- 
     
    786786Line: 779 
    787787Stack unwinding: <<beginning of stack>> 
    788 12:01:12: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     78816:02:47: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    789789 
    790790----------------------------------- 
     
    797797Line: 779 
    798798Stack unwinding: <<beginning of stack>> 
    799 12:01:13: An exception has been thrown! 
     79916:02:48: An exception has been thrown! 
    800800 
    801801----------------------------------- 
     
    808808Line: 779 
    809809Stack unwinding: <<beginning of stack>> 
    810 12:01:13: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     81016:02:48: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    811811 
    812812----------------------------------- 
     
    819819Line: 779 
    820820Stack unwinding: <<beginning of stack>> 
    821 12:01:16: An exception has been thrown! 
     82116:02:51: An exception has been thrown! 
    822822 
    823823----------------------------------- 
     
    830830Line: 779 
    831831Stack unwinding: <<beginning of stack>> 
    832 12:01:16: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83216:02:51: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    833833 
    834834----------------------------------- 
     
    841841Line: 779 
    842842Stack unwinding: <<beginning of stack>> 
    843 12:01:16: An exception has been thrown! 
     84316:02:51: An exception has been thrown! 
    844844 
    845845----------------------------------- 
     
    852852Line: 779 
    853853Stack unwinding: <<beginning of stack>> 
    854 12:01:16: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     85416:02:51: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    855855 
    856856----------------------------------- 
     
    863863Line: 779 
    864864Stack unwinding: <<beginning of stack>> 
    865 12:01:16: Parsing script EnvMetals.material 
    866 12:01:16: An exception has been thrown! 
     86516:02:51: Parsing script EnvMetals.material 
     86616:02:51: An exception has been thrown! 
    867867 
    868868----------------------------------- 
     
    875875Line: 779 
    876876Stack unwinding: <<beginning of stack>> 
    877 12:01:16: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     87716:02:51: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    878878 
    879879----------------------------------- 
     
    886886Line: 779 
    887887Stack unwinding: <<beginning of stack>> 
    888 12:01:16: An exception has been thrown! 
     88816:02:51: An exception has been thrown! 
    889889 
    890890----------------------------------- 
     
    897897Line: 779 
    898898Stack unwinding: <<beginning of stack>> 
    899 12:01:16: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     89916:02:51: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    900900 
    901901----------------------------------- 
     
    908908Line: 779 
    909909Stack unwinding: <<beginning of stack>> 
    910 12:01:16: An exception has been thrown! 
     91016:02:51: An exception has been thrown! 
    911911 
    912912----------------------------------- 
     
    919919Line: 779 
    920920Stack unwinding: <<beginning of stack>> 
    921 12:01:16: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     92116:02:51: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    922922 
    923923----------------------------------- 
     
    930930Line: 779 
    931931Stack unwinding: <<beginning of stack>> 
    932 12:01:16: An exception has been thrown! 
     93216:02:51: An exception has been thrown! 
    933933 
    934934----------------------------------- 
     
    941941Line: 779 
    942942Stack unwinding: <<beginning of stack>> 
    943 12:01:16: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     94316:02:51: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    944944 
    945945----------------------------------- 
     
    952952Line: 779 
    953953Stack unwinding: <<beginning of stack>> 
    954 12:01:16: Parsing script GameTools.material 
    955 12:01:16: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    956 12:01:16: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    957 12:01:16: An exception has been thrown! 
     95416:02:51: Parsing script GameTools.material 
     95516:02:51: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     95616:02:51: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     95716:02:51: An exception has been thrown! 
    958958 
    959959----------------------------------- 
     
    966966Line: 779 
    967967Stack unwinding: <<beginning of stack>> 
    968 12:01:16: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     96816:02:51: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    969969 
    970970----------------------------------- 
     
    977977Line: 779 
    978978Stack unwinding: <<beginning of stack>> 
    979 12:01:16: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    980 12:01:16: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    981 12:01:16: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    982 12:01:16: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
    983 12:01:16: Parsing script GameTools_HPS.material 
    984 12:01:16: An exception has been thrown! 
     97916:02:51: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     98016:02:51: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     98116:02:51: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     98216:02:51: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
     98316:02:51: Parsing script GameTools_HPS.material 
     98416:02:51: An exception has been thrown! 
    985985 
    986986----------------------------------- 
     
    993993Line: 779 
    994994Stack unwinding: <<beginning of stack>> 
    995 12:01:16: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     99516:02:51: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    996996 
    997997----------------------------------- 
     
    10041004Line: 779 
    10051005Stack unwinding: <<beginning of stack>> 
    1006 12:01:16: An exception has been thrown! 
     100616:02:51: An exception has been thrown! 
    10071007 
    10081008----------------------------------- 
     
    10151015Line: 779 
    10161016Stack unwinding: <<beginning of stack>> 
    1017 12:01:16: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     101716:02:51: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10181018 
    10191019----------------------------------- 
     
    10261026Line: 779 
    10271027Stack unwinding: <<beginning of stack>> 
    1028 12:01:16: An exception has been thrown! 
     102816:02:51: An exception has been thrown! 
    10291029 
    10301030----------------------------------- 
     
    10371037Line: 779 
    10381038Stack unwinding: <<beginning of stack>> 
    1039 12:01:16: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     103916:02:51: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10401040 
    10411041----------------------------------- 
     
    10481048Line: 779 
    10491049Stack unwinding: <<beginning of stack>> 
    1050 12:01:16: An exception has been thrown! 
     105016:02:51: An exception has been thrown! 
    10511051 
    10521052----------------------------------- 
     
    10591059Line: 779 
    10601060Stack unwinding: <<beginning of stack>> 
    1061 12:01:16: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     106116:02:51: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10621062 
    10631063----------------------------------- 
     
    10701070Line: 779 
    10711071Stack unwinding: <<beginning of stack>> 
    1072 12:01:17: An exception has been thrown! 
     107216:02:51: An exception has been thrown! 
    10731073 
    10741074----------------------------------- 
     
    10811081Line: 779 
    10821082Stack unwinding: <<beginning of stack>> 
    1083 12:01:17: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     108316:02:51: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10841084 
    10851085----------------------------------- 
     
    10921092Line: 779 
    10931093Stack unwinding: <<beginning of stack>> 
    1094 12:01:17: An exception has been thrown! 
     109416:02:51: An exception has been thrown! 
    10951095 
    10961096----------------------------------- 
     
    11031103Line: 779 
    11041104Stack unwinding: <<beginning of stack>> 
    1105 12:01:17: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     110516:02:51: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11061106 
    11071107----------------------------------- 
     
    11141114Line: 779 
    11151115Stack unwinding: <<beginning of stack>> 
    1116 12:01:17: An exception has been thrown! 
     111616:02:51: An exception has been thrown! 
    11171117 
    11181118----------------------------------- 
     
    11251125Line: 779 
    11261126Stack unwinding: <<beginning of stack>> 
    1127 12:01:17: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     112716:02:51: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11281128 
    11291129----------------------------------- 
     
    11361136Line: 779 
    11371137Stack unwinding: <<beginning of stack>> 
    1138 12:01:17: Parsing script GlassHead.material 
    1139 12:01:17: An exception has been thrown! 
     113816:02:51: Parsing script GlassHead.material 
     113916:02:51: An exception has been thrown! 
    11401140 
    11411141----------------------------------- 
     
    11481148Line: 779 
    11491149Stack unwinding: <<beginning of stack>> 
    1150 12:01:17: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     115016:02:51: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11511151 
    11521152----------------------------------- 
     
    11591159Line: 779 
    11601160Stack unwinding: <<beginning of stack>> 
    1161 12:01:17: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    1162 12:01:17: An exception has been thrown! 
     116116:02:51: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     116216:02:51: An exception has been thrown! 
    11631163 
    11641164----------------------------------- 
     
    11711171Line: 779 
    11721172Stack unwinding: <<beginning of stack>> 
    1173 12:01:17: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     117316:02:51: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11741174 
    11751175----------------------------------- 
     
    11821182Line: 779 
    11831183Stack unwinding: <<beginning of stack>> 
    1184 12:01:17: An exception has been thrown! 
     118416:02:51: An exception has been thrown! 
    11851185 
    11861186----------------------------------- 
     
    11931193Line: 779 
    11941194Stack unwinding: <<beginning of stack>> 
    1195 12:01:17: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     119516:02:51: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11961196 
    11971197----------------------------------- 
     
    12041204Line: 779 
    12051205Stack unwinding: <<beginning of stack>> 
    1206 12:01:17: An exception has been thrown! 
     120616:02:52: An exception has been thrown! 
    12071207 
    12081208----------------------------------- 
     
    12151215Line: 779 
    12161216Stack unwinding: <<beginning of stack>> 
    1217 12:01:17: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     121716:02:52: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12181218 
    12191219----------------------------------- 
     
    12261226Line: 779 
    12271227Stack unwinding: <<beginning of stack>> 
    1228 12:01:17: Parsing script Glow.material 
    1229 12:01:17: An exception has been thrown! 
     122816:02:52: Parsing script Glow.material 
     122916:02:52: An exception has been thrown! 
    12301230 
    12311231----------------------------------- 
     
    12381238Line: 779 
    12391239Stack unwinding: <<beginning of stack>> 
    1240 12:01:17: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     124016:02:52: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    12411241 
    12421242----------------------------------- 
     
    12491249Line: 779 
    12501250Stack unwinding: <<beginning of stack>> 
    1251 12:01:17: Parsing script hangar.material 
    1252 12:01:17: Parsing script kupola.material 
    1253 12:01:17: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1254 12:01:17: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1255 12:01:17: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1256 12:01:17: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1257 12:01:17: Parsing script MetalTeapot.material 
    1258 12:01:19: Parsing script Ogre.material 
    1259 12:01:19: Parsing script Particles.material 
    1260 12:01:19: An exception has been thrown! 
     125116:02:52: Parsing script hangar.material 
     125216:02:52: Parsing script kupola.material 
     125316:02:52: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     125416:02:52: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     125516:02:52: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     125616:02:52: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     125716:02:52: Parsing script MetalTeapot.material 
     125816:02:56: An exception has been thrown! 
     1259 
     1260----------------------------------- 
     1261Details: 
     1262----------------------------------- 
     1263Error #: 7 
     1264Function: GpuProgramParameters::getParamIndex 
     1265Description: Cannot find a parameter named F0.  
     1266File: ..\src\OgreGpuProgram.cpp 
     1267Line: 779 
     1268Stack unwinding: <<beginning of stack>> 
     126916:02:56: Error in material MetalTeapotMultipleBounce at line 196 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     1270 
     1271----------------------------------- 
     1272Details: 
     1273----------------------------------- 
     1274Error #: 7 
     1275Function: GpuProgramParameters::getParamIndex 
     1276Description: Cannot find a parameter named F0.  
     1277File: ..\src\OgreGpuProgram.cpp 
     1278Line: 779 
     1279Stack unwinding: <<beginning of stack>> 
     128016:02:56: Parsing script Ogre.material 
     128116:02:56: Parsing script Particles.material 
     128216:02:56: An exception has been thrown! 
    12611283 
    12621284----------------------------------- 
     
    12691291Line: 779 
    12701292Stack unwinding: <<beginning of stack>> 
    1271 12:01:19: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     129316:02:56: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12721294 
    12731295----------------------------------- 
     
    12801302Line: 779 
    12811303Stack unwinding: <<beginning of stack>> 
    1282 12:01:19: An exception has been thrown! 
     130416:02:56: An exception has been thrown! 
    12831305 
    12841306----------------------------------- 
     
    12911313Line: 779 
    12921314Stack unwinding: <<beginning of stack>> 
    1293 12:01:19: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     131516:02:56: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12941316 
    12951317----------------------------------- 
     
    13021324Line: 779 
    13031325Stack unwinding: <<beginning of stack>> 
    1304 12:01:19: Parsing script RaytraceDemo.material 
    1305 12:01:19: Parsing script stairs.material 
    1306 12:01:19: Parsing script uvegfolyoso2.material 
    1307 12:01:19: An exception has been thrown! 
     132616:02:56: Parsing script RaytraceDemo.material 
     132716:02:56: Parsing script stairs.material 
     132816:02:56: Parsing script uvegfolyoso2.material 
     132916:02:56: An exception has been thrown! 
    13081330 
    13091331----------------------------------- 
     
    13161338Line: 779 
    13171339Stack unwinding: <<beginning of stack>> 
    1318 12:01:19: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     134016:02:56: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13191341 
    13201342----------------------------------- 
     
    13271349Line: 779 
    13281350Stack unwinding: <<beginning of stack>> 
    1329 12:01:19: An exception has been thrown! 
     135116:02:56: An exception has been thrown! 
    13301352 
    13311353----------------------------------- 
     
    13381360Line: 779 
    13391361Stack unwinding: <<beginning of stack>> 
    1340 12:01:19: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     136216:02:56: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13411363 
    13421364----------------------------------- 
     
    13491371Line: 779 
    13501372Stack unwinding: <<beginning of stack>> 
    1351 12:01:19: An exception has been thrown! 
     137316:02:56: An exception has been thrown! 
    13521374 
    13531375----------------------------------- 
     
    13601382Line: 779 
    13611383Stack unwinding: <<beginning of stack>> 
    1362 12:01:19: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     138416:02:56: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13631385 
    13641386----------------------------------- 
     
    13711393Line: 779 
    13721394Stack unwinding: <<beginning of stack>> 
    1373 12:01:19: An exception has been thrown! 
     139516:02:56: An exception has been thrown! 
    13741396 
    13751397----------------------------------- 
     
    13821404Line: 779 
    13831405Stack unwinding: <<beginning of stack>> 
    1384 12:01:19: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     140616:02:56: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13851407 
    13861408----------------------------------- 
     
    13931415Line: 779 
    13941416Stack unwinding: <<beginning of stack>> 
    1395 12:01:19: An exception has been thrown! 
     141716:02:56: An exception has been thrown! 
    13961418 
    13971419----------------------------------- 
     
    14041426Line: 779 
    14051427Stack unwinding: <<beginning of stack>> 
    1406 12:01:19: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     142816:02:56: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14071429 
    14081430----------------------------------- 
     
    14151437Line: 779 
    14161438Stack unwinding: <<beginning of stack>> 
    1417 12:01:19: An exception has been thrown! 
     143916:02:56: An exception has been thrown! 
    14181440 
    14191441----------------------------------- 
     
    14261448Line: 779 
    14271449Stack unwinding: <<beginning of stack>> 
    1428 12:01:19: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     145016:02:56: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14291451 
    14301452----------------------------------- 
     
    14371459Line: 779 
    14381460Stack unwinding: <<beginning of stack>> 
    1439 12:01:19: An exception has been thrown! 
     146116:02:56: An exception has been thrown! 
    14401462 
    14411463----------------------------------- 
     
    14481470Line: 779 
    14491471Stack unwinding: <<beginning of stack>> 
    1450 12:01:19: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     147216:02:56: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14511473 
    14521474----------------------------------- 
     
    14591481Line: 779 
    14601482Stack unwinding: <<beginning of stack>> 
    1461 12:01:19: An exception has been thrown! 
     148316:02:56: An exception has been thrown! 
    14621484 
    14631485----------------------------------- 
     
    14701492Line: 779 
    14711493Stack unwinding: <<beginning of stack>> 
    1472 12:01:19: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     149416:02:56: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14731495 
    14741496----------------------------------- 
     
    14811503Line: 779 
    14821504Stack unwinding: <<beginning of stack>> 
    1483 12:01:19: An exception has been thrown! 
     150516:02:56: An exception has been thrown! 
    14841506 
    14851507----------------------------------- 
     
    14921514Line: 779 
    14931515Stack unwinding: <<beginning of stack>> 
    1494 12:01:19: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     151616:02:56: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14951517 
    14961518----------------------------------- 
     
    15031525Line: 779 
    15041526Stack unwinding: <<beginning of stack>> 
    1505 12:01:19: An exception has been thrown! 
     152716:02:56: An exception has been thrown! 
    15061528 
    15071529----------------------------------- 
     
    15141536Line: 779 
    15151537Stack unwinding: <<beginning of stack>> 
    1516 12:01:19: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     153816:02:56: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15171539 
    15181540----------------------------------- 
     
    15251547Line: 779 
    15261548Stack unwinding: <<beginning of stack>> 
    1527 12:01:19: An exception has been thrown! 
     154916:02:56: An exception has been thrown! 
    15281550 
    15291551----------------------------------- 
     
    15361558Line: 779 
    15371559Stack unwinding: <<beginning of stack>> 
    1538 12:01:19: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     156016:02:56: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15391561 
    15401562----------------------------------- 
     
    15471569Line: 779 
    15481570Stack unwinding: <<beginning of stack>> 
    1549 12:01:19: An exception has been thrown! 
     157116:02:56: An exception has been thrown! 
    15501572 
    15511573----------------------------------- 
     
    15581580Line: 779 
    15591581Stack unwinding: <<beginning of stack>> 
    1560 12:01:19: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     158216:02:56: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15611583 
    15621584----------------------------------- 
     
    15691591Line: 779 
    15701592Stack unwinding: <<beginning of stack>> 
    1571 12:01:19: An exception has been thrown! 
     159316:02:56: An exception has been thrown! 
    15721594 
    15731595----------------------------------- 
     
    15801602Line: 779 
    15811603Stack unwinding: <<beginning of stack>> 
    1582 12:01:19: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     160416:02:56: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15831605 
    15841606----------------------------------- 
     
    15911613Line: 779 
    15921614Stack unwinding: <<beginning of stack>> 
    1593 12:01:19: An exception has been thrown! 
     161516:02:56: An exception has been thrown! 
    15941616 
    15951617----------------------------------- 
     
    16021624Line: 779 
    16031625Stack unwinding: <<beginning of stack>> 
    1604 12:01:19: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     162616:02:56: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16051627 
    16061628----------------------------------- 
     
    16131635Line: 779 
    16141636Stack unwinding: <<beginning of stack>> 
    1615 12:01:19: An exception has been thrown! 
     163716:02:56: An exception has been thrown! 
    16161638 
    16171639----------------------------------- 
     
    16241646Line: 779 
    16251647Stack unwinding: <<beginning of stack>> 
    1626 12:01:19: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     164816:02:56: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16271649 
    16281650----------------------------------- 
     
    16351657Line: 779 
    16361658Stack unwinding: <<beginning of stack>> 
    1637 12:01:19: An exception has been thrown! 
     165916:02:56: An exception has been thrown! 
    16381660 
    16391661----------------------------------- 
     
    16461668Line: 779 
    16471669Stack unwinding: <<beginning of stack>> 
    1648 12:01:19: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     167016:02:56: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16491671 
    16501672----------------------------------- 
     
    16571679Line: 779 
    16581680Stack unwinding: <<beginning of stack>> 
    1659 12:01:19: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1660 12:01:19: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1661 12:01:19: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1662 12:01:19: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1663 12:01:19: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1664 12:01:19: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1665 12:01:19: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1666 12:01:19: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1667 12:01:19: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1668 12:01:19: Parsing script X3D.material 
    1669 12:01:19: Parsing script GameTools_Glow.compositor 
    1670 12:01:19: Parsing script GameTools_ToneMap.compositor 
    1671 12:01:19: Parsing script sample.fontdef 
    1672 12:01:19: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1673 12:01:19: Parsing script GameTools.particle 
    1674 12:01:19: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1675 12:01:19: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1676 12:01:19: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1677 12:01:19: Parsing script Compositor.overlay 
    1678 12:01:19: Parsing script DP3.overlay 
    1679 12:01:19: Parsing script Example-CubeMapping.overlay 
    1680 12:01:19: Parsing script Example-DynTex.overlay 
    1681 12:01:19: Parsing script Example-Water.overlay 
    1682 12:01:19: Parsing script FullScreen.overlay 
    1683 12:01:19: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1684 12:01:19: Parsing script Shadows.overlay 
    1685 12:01:19: Finished parsing scripts for resource group General 
    1686 12:01:19: Parsing scripts for resource group Internal 
    1687 12:01:19: Finished parsing scripts for resource group Internal 
    1688 12:01:19: Mesh: Loading teapot.mesh. 
    1689 12:01:19: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 
    1690 12:01:19: Mesh: Loading difflab.mesh. 
    1691 12:01:20: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1692 12:01:20: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1693 12:01:20: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
    1694 12:01:20: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1695 12:01:20: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1696 12:01:20: Creating viewport on target 'rtt/42813280', 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 
    1697 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1698 12:01:20: Creating viewport on target 'rtt/42813344', 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 
    1699 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1700 12:01:20: Creating viewport on target 'rtt/42813408', 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 
    1701 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1702 12:01:20: Creating viewport on target 'rtt/42813472', 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 
    1703 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1704 12:01:20: Creating viewport on target 'rtt/42813536', 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 
    1705 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1706 12:01:20: Creating viewport on target 'rtt/42813600', 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 
    1707 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1708 12:01:20: 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. 
    1709 12:01:20: Creating viewport on target 'rtt/42814560', 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 
    1710 12:01:20: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1711 12:01:20: Creating viewport on target 'rtt/42814624', 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 
    1712 12:01:20: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1713 12:01:20: Creating viewport on target 'rtt/42814688', 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 
    1714 12:01:20: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1715 12:01:20: Creating viewport on target 'rtt/42814752', 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 
    1716 12:01:20: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1717 12:01:20: Creating viewport on target 'rtt/42814816', 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 
    1718 12:01:20: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1719 12:01:20: Creating viewport on target 'rtt/42814880', 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 
    1720 12:01:20: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1721 12:01:20: 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. 
    1722 12:01:20: Creating viewport on target 'rtt/3257248', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1723 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1724 12:01:20: Creating viewport on target 'rtt/3257312', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1725 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1726 12:01:20: Creating viewport on target 'rtt/3257376', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1727 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1728 12:01:20: Creating viewport on target 'rtt/3257440', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1729 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1730 12:01:20: Creating viewport on target 'rtt/3257504', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1731 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1732 12:01:20: Creating viewport on target 'rtt/3257568', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1733 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1734 12:01:20: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1735 12:01:20: Creating viewport on target 'rtt/3258624', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1736 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1737 12:01:20: Creating viewport on target 'rtt/3258688', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1738 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1739 12:01:20: Creating viewport on target 'rtt/3258752', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1740 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1741 12:01:20: Creating viewport on target 'rtt/3258816', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1742 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1743 12:01:20: Creating viewport on target 'rtt/3258880', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1744 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1745 12:01:20: Creating viewport on target 'rtt/3258944', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1746 12:01:20: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1747 12:01:20: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1748 12:01:20: Win32Input8: DirectInput Activation Starts 
    1749 12:01:20: Win32Input8: Establishing keyboard input. 
    1750 12:01:20: Win32Input8: Keyboard input established. 
    1751 12:01:20: Win32Input8: Initializing mouse input in immediate mode. 
    1752 12:01:20: Win32Input8: Mouse input in immediate mode initialized. 
    1753 12:01:20: Win32Input8: DirectInput OK. 
    1754 12:01:20: Creating viewport on target 'rtt/42659456', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1755 12:01:20: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1756 12:01:20: Creating viewport on target 'rtt/42669216', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1757 12:01:20: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1758 12:01:20: Creating viewport on target 'rtt/42824800', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1759 12:01:20: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1760 12:01:20: Creating viewport on target 'rtt/42825152', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    1761 12:01:20: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1762 12:01:20: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1763 12:01:20: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAPblurred' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
    1764 12:02:01: Unregistering ResourceManager for type BspLevel 
    1765 12:02:01: Render Target 'rtt/42825152' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1766 12:02:01: Render Target 'rtt/42824800' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1767 12:02:01: Render Target 'rtt/42669216' Average FPS: 52.3981 Best FPS: 109.684 Worst FPS: 9.32836 
    1768 12:02:01: Render Target 'rtt/42659456' Average FPS: 52.39 Best FPS: 109.684 Worst FPS: 9.32836 
    1769 12:02:01: Render Target 'rtt/3258624' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1770 12:02:01: Render Target 'rtt/3258688' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1771 12:02:01: Render Target 'rtt/3258752' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1772 12:02:01: Render Target 'rtt/3258816' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1773 12:02:01: Render Target 'rtt/3258880' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1774 12:02:01: Render Target 'rtt/3258944' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1775 12:02:01: Render Target 'rtt/3257248' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1776 12:02:01: Render Target 'rtt/3257312' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1777 12:02:01: Render Target 'rtt/3257376' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1778 12:02:01: Render Target 'rtt/3257440' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1779 12:02:01: Render Target 'rtt/3257504' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1780 12:02:01: Render Target 'rtt/3257568' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1781 12:02:01: Render Target 'rtt/42814560' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1782 12:02:01: Render Target 'rtt/42814624' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1783 12:02:01: Render Target 'rtt/42814688' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1784 12:02:01: Render Target 'rtt/42814752' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1785 12:02:01: Render Target 'rtt/42814816' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1786 12:02:01: Render Target 'rtt/42814880' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1787 12:02:01: Render Target 'rtt/42813280' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1788 12:02:01: Render Target 'rtt/42813344' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1789 12:02:01: Render Target 'rtt/42813408' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1790 12:02:01: Render Target 'rtt/42813472' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1791 12:02:01: Render Target 'rtt/42813536' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1792 12:02:01: Render Target 'rtt/42813600' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1793 12:02:01: *-*-* OGRE Shutdown 
    1794 12:02:01: Unregistering ResourceManager for type Compositor 
    1795 12:02:01: Unregistering ResourceManager for type Font 
    1796 12:02:01: Unregistering ResourceManager for type Skeleton 
    1797 12:02:01: Unregistering ResourceManager for type Mesh 
    1798 12:02:01: Unregistering ResourceManager for type HighLevelGpuProgram 
    1799 12:02:01: Unloading library .\Plugin_CgProgramManager 
    1800 12:02:01: Unloading library .\Plugin_OctreeSceneManager 
    1801 12:02:01: Unloading library .\Plugin_BSPSceneManager 
    1802 12:02:01: Unloading library .\Plugin_ParticleFX 
    1803 12:02:01: Render Target 'OGRE Render Window' Average FPS: 52.3897 Best FPS: 109.89 Worst FPS: 9.32836 
    1804 12:02:01: D3D9 : Shutting down cleanly. 
    1805 12:02:01: Unregistering ResourceManager for type Texture 
    1806 12:02:01: Unregistering ResourceManager for type GpuProgram 
    1807 12:02:01: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    1808 12:02:01: Unloading library .\RenderSystem_Direct3D9 
    1809 12:02:01: Unregistering ResourceManager for type Material 
    1810 12:02:01: Unloading library OgrePlatform.dll 
     168116:02:56: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     168216:02:56: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     168316:02:56: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     168416:02:56: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     168516:02:56: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     168616:02:56: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     168716:02:56: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     168816:02:56: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     168916:02:56: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     169016:02:56: Parsing script X3D.material 
     169116:02:56: Parsing script GameTools_Glow.compositor 
     169216:02:56: Parsing script GameTools_ToneMap.compositor 
     169316:02:56: Parsing script sample.fontdef 
     169416:02:56: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     169516:02:56: Parsing script GameTools.particle 
     169616:02:56: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     169716:02:56: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     169816:02:56: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     169916:02:56: Parsing script Compositor.overlay 
     170016:02:56: Parsing script DP3.overlay 
     170116:02:56: Parsing script Example-CubeMapping.overlay 
     170216:02:56: Parsing script Example-DynTex.overlay 
     170316:02:56: Parsing script Example-Water.overlay 
     170416:02:56: Parsing script FullScreen.overlay 
     170516:02:56: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     170616:02:56: Parsing script Shadows.overlay 
     170716:02:56: Finished parsing scripts for resource group General 
     170816:02:56: Parsing scripts for resource group Internal 
     170916:02:56: Finished parsing scripts for resource group Internal 
     171016:02:56: Mesh: Loading teapot.mesh. 
     171116:02:56: Can't assign material Material_1 to SubEntity of object because this Material does not exist. Have you forgotten to define it in a .material script? 
     171216:02:56: Mesh: Loading difflab.mesh. 
     171316:02:56: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     171416:02:56: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
     171516:02:56: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
     171616:02:56: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     171716:02:56: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     171816:02:56: Creating viewport on target 'rtt/3262144', 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 
     171916:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     172016:02:56: Creating viewport on target 'rtt/3262208', 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 
     172116:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     172216:02:56: Creating viewport on target 'rtt/3262272', 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 
     172316:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     172416:02:56: Creating viewport on target 'rtt/3262336', 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 
     172516:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     172616:02:56: Creating viewport on target 'rtt/3262400', 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 
     172716:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     172816:02:56: Creating viewport on target 'rtt/3262464', 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 
     172916:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     173016:02:56: 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. 
     173116:02:56: Creating viewport on target 'rtt/3263424', 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 
     173216:02:56: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     173316:02:56: Creating viewport on target 'rtt/3263488', 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 
     173416:02:56: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     173516:02:56: Creating viewport on target 'rtt/3263552', 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 
     173616:02:56: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     173716:02:56: Creating viewport on target 'rtt/3263616', 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 
     173816:02:56: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     173916:02:56: Creating viewport on target 'rtt/3263680', 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 
     174016:02:56: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     174116:02:56: Creating viewport on target 'rtt/3263744', 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 
     174216:02:56: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     174316:02:56: 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. 
     174416:02:56: Creating viewport on target 'rtt/3264768', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     174516:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     174616:02:56: Creating viewport on target 'rtt/3264832', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     174716:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     174816:02:56: Creating viewport on target 'rtt/3264896', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     174916:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     175016:02:56: Creating viewport on target 'rtt/3264960', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     175116:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     175216:02:56: Creating viewport on target 'rtt/3265024', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     175316:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     175416:02:56: Creating viewport on target 'rtt/3265088', rendering from camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     175516:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     175616:02:56: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L1' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     175716:02:56: Creating viewport on target 'rtt/3266144', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     175816:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     175916:02:56: Creating viewport on target 'rtt/3266208', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     176016:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176116:02:56: Creating viewport on target 'rtt/3266272', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     176216:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176316:02:56: Creating viewport on target 'rtt/3266336', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     176416:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176516:02:56: Creating viewport on target 'rtt/3266400', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     176616:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176716:02:56: Creating viewport on target 'rtt/3266464', rendering from camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     176816:02:56: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176916:02:56: WARNING: Texture instance 'object_SE_0_COLORCUBEMAP_L2' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     177016:02:56: Win32Input8: DirectInput Activation Starts 
     177116:02:56: Win32Input8: Establishing keyboard input. 
     177216:02:56: Win32Input8: Keyboard input established. 
     177316:02:56: Win32Input8: Initializing mouse input in immediate mode. 
     177416:02:56: Win32Input8: Mouse input in immediate mode initialized. 
     177516:02:56: Win32Input8: DirectInput OK. 
     177616:02:56: Creating viewport on target 'rtt/42793440', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     177716:02:56: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     177816:02:56: Creating viewport on target 'rtt/42859392', rendering from camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     177916:02:56: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
     178016:02:56: Creating viewport on target 'rtt/42859744', rendering from camera 'LIGHT_FOCUSING_MAP_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     178116:02:56: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
     178216:02:56: Creating viewport on target 'rtt/42860096', rendering from camera 'PHASE_TEXTURE_CAMERA', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
     178316:02:56: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
     178416:02:56: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAP' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     178516:02:56: WARNING: Texture instance 'MainBlueLightDEPTH_SHADOW_MAPblurred' was defined as manually loaded, but no manual loader was provided. This Resource will be lost if it has to be reloaded. 
     178616:05:29: Unregistering ResourceManager for type BspLevel 
     178716:05:29: Render Target 'rtt/42860096' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     178816:05:29: Render Target 'rtt/42859744' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     178916:05:29: Render Target 'rtt/42859392' Average FPS: 332.596 Best FPS: 432.136 Worst FPS: 3.9604 
     179016:05:29: Render Target 'rtt/42793440' Average FPS: 332.59 Best FPS: 432.136 Worst FPS: 3.95648 
     179116:05:29: Render Target 'rtt/3266144' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     179216:05:29: Render Target 'rtt/3266208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     179316:05:29: Render Target 'rtt/3266272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     179416:05:29: Render Target 'rtt/3266336' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     179516:05:29: Render Target 'rtt/3266400' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     179616:05:29: Render Target 'rtt/3266464' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     179716:05:29: Render Target 'rtt/3264768' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     179816:05:29: Render Target 'rtt/3264832' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     179916:05:29: Render Target 'rtt/3264896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180016:05:29: Render Target 'rtt/3264960' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180116:05:29: Render Target 'rtt/3265024' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180216:05:29: Render Target 'rtt/3265088' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180316:05:29: Render Target 'rtt/3263424' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180416:05:29: Render Target 'rtt/3263488' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180516:05:29: Render Target 'rtt/3263552' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180616:05:29: Render Target 'rtt/3263616' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180716:05:29: Render Target 'rtt/3263680' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180816:05:29: Render Target 'rtt/3263744' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     180916:05:29: Render Target 'rtt/3262144' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     181016:05:29: Render Target 'rtt/3262208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     181116:05:29: Render Target 'rtt/3262272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     181216:05:29: Render Target 'rtt/3262336' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     181316:05:29: Render Target 'rtt/3262400' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     181416:05:29: Render Target 'rtt/3262464' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     181516:05:29: *-*-* OGRE Shutdown 
     181616:05:29: Unregistering ResourceManager for type Compositor 
     181716:05:29: Unregistering ResourceManager for type Font 
     181816:05:29: Unregistering ResourceManager for type Skeleton 
     181916:05:29: Unregistering ResourceManager for type Mesh 
     182016:05:29: Unregistering ResourceManager for type HighLevelGpuProgram 
     182116:05:29: Unloading library .\Plugin_CgProgramManager 
     182216:05:29: Unloading library .\Plugin_OctreeSceneManager 
     182316:05:29: Unloading library .\Plugin_BSPSceneManager 
     182416:05:29: Unloading library .\Plugin_ParticleFX 
     182516:05:29: Render Target 'OGRE Render Window' Average FPS: 6.69655 Best FPS: 9.90991 Worst FPS: 0.119713 
     182616:05:29: D3D9 : Shutting down cleanly. 
     182716:05:29: Unregistering ResourceManager for type Texture 
     182816:05:29: Unregistering ResourceManager for type GpuProgram 
     182916:05:29: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     183016:05:29: Unloading library .\RenderSystem_Direct3D9 
     183116:05:29: Unregistering ResourceManager for type Material 
     183216:05:29: Unloading library OgrePlatform.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/src/ReflectionTest/include/ReflectionTest.h

    r1856 r1860  
    261261                SceneNode* camNode = mSceneMgr->getRootSceneNode()->createChildSceneNode("mainCameraNode"); 
    262262                camNode->attachObject(mCamera); 
    263         camNode->setPosition(Vector3(0,1,0)); 
     263       //camNode->setPosition(Vector3(0,1,0)); 
    264264        // Position it at 500 in Z direction 
    265265        //mCamera->setPosition(Vector3(0,0,500)); 
     
    280280                Root::getSingleton()._setCurrentSceneManager(mSceneMgr); 
    281281 
    282                 //mCamera->setPosition(0,1,0);           
    283                 mCamera->setFOVy(Radian(Degree(80))); 
     282                mCamera->setFOVy(Radian(Degree(80 * 3.0 / 4.0))); 
    284283                mCamera->setFarClipDistance(200); 
    285284                mCamera->setNearClipDistance(0.1); 
     
    302301    { 
    303302        SceneNode* rootNode = mSceneMgr->getRootSceneNode(); 
     303                 
     304                mCamera->setPosition(0.532,1.232,1.529); 
     305                mCamera->lookAt(Vector3(0,1.2,0.0)); 
    304306                 
    305307                Entity* object = mSceneMgr->createEntity("object", "teapot.mesh"); 
  • GTP/trunk/App/Demos/Illum/Ogre/src/ReflectionTest/scripts/ReflectionTest.vcproj

    r1847 r1860  
    235235                                > 
    236236                        </File> 
     237                        <File 
     238                                RelativePath="..\..\..\Media\materials\programs\MetalTeapotNew.hlsl" 
     239                                > 
     240                        </File> 
    237241                </Filter> 
    238242        </Files> 
Note: See TracChangeset for help on using the changeset viewer.