Changeset 1863


Ignore:
Timestamp:
12/07/06 20:27:30 (17 years ago)
Author:
szirmay
Message:
 
Location:
GTP/trunk/App/Demos/Illum/Ogre
Files:
6 edited

Legend:

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

    r1862 r1863  
    1313} 
    1414 
    15 #define MAX_LIN_ITERATIONCOUNT 80 
    16 #define MIN_LIN_ITERATIONCOUNT 30 
     15#define MAX_LIN_ITERATIONCOUNT 40  //80 
     16#define MIN_LIN_ITERATIONCOUNT 20  //60 
    1717#define SECANT_ITERATIONCOUNT 2 
    18 #define MAX_RAY_DEPTH 4 
    19  
     18#define MAX_RAY_DEPTH 5 
     19 
     20/* 
    2021void linearSearch(  float3 x, float3 R, float3 N, samplerCUBE mp, 
    2122                    out float3 p, 
     
    6162   t += dt;   
    6263 } 
    63   
     64 
    6465 if(!overshoot) 
    6566  p = float3(0,0,0); 
    66 /* else if(t == 2 * dt) 
     67} 
     68*/ 
     69 
     70 
     71void linearSearch(  float3 x, float3 R, float3 N, samplerCUBE mp, 
     72                    out float3 p, 
     73                    out float dl, 
     74                    out float dp, 
     75                    out float llp, 
     76                    out float ppp) 
     77{ 
     78 float3 Ra = abs(R), xa = abs(x); 
     79 float xm =  max(max(xa.x,xa.y),xa.z); 
     80 float Rm = max(max(Ra.x,Ra.y),Ra.z); 
     81 float a = xm / Rm; 
     82  
     83 int shootL = 0, shootP = 0;           
     84 bool found = false;  
     85  
     86 float dt =  length(x / xm - R / Rm) * MAX_LIN_ITERATIONCOUNT; 
     87 dt = max(dt, MIN_LIN_ITERATIONCOUNT); 
     88 dt = 1.0 / dt; 
     89     
     90 float t = 0.01;//dt; 
     91 float pa; 
     92  
     93 //Linear iteration 
     94 while(t <= 1.0 && !found) 
    6795 { 
    68          float3 hitp = pa * normalize(p); 
    69     if(dot(normalize(hitp - x), N) < 0.1f) 
    70            p = float3(0,0,0); 
    71  }*/ 
    72 } 
     96   dp = a * t / (1 - t); 
     97   p = x + R * dp; 
     98   pa = readDistanceCubeMap(mp, p); 
     99       
     100   if(pa > 0) 
     101   { 
     102    ppp = length(p) / pa; 
     103    if(ppp < 1) 
     104      shootP = -1; 
     105    else  
     106      shootP = 1;       
     107    if(shootL * shootP == -1) 
     108      found = true; 
     109    else 
     110    { 
     111      shootL = shootP; 
     112      dl = dp; 
     113      llp = ppp; 
     114    } 
     115   } 
     116   else 
     117     shootL = 0; 
     118       
     119   t += dt;   
     120 } 
     121 
     122 if(!found) 
     123  p = float3(0,0,0); 
     124} 
     125 
    73126 
    74127void secantSearch(float3 x, float3 R, samplerCUBE mp,  
     
    220273         float4 I = float4(0,0,0,0); 
    221274                         
    222          float3 N = normalize(IN.mNormal);// * refIndex; 
    223          float3 newTexCoord;     
     275         float3 N = normalize(IN.mNormal); 
    224276         float3 x = IN.wPos - lastCenter; 
    225277         float3 V  = (IN.wPos - cameraPos); 
     
    231283         while(depth < MAX_RAY_DEPTH) 
    232284         { 
    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)); 
     285           float3 R;   
     286           //  R = normalize(reflect( V, N));      
     287           
     288          float ri = refIndex; 
     289           
     290          if(dot(V,N) > 0) 
     291          { 
     292            ri = 1.0 / ri; 
     293            N = -N;          
     294          } 
     295          R = refract( V, N, ri); 
     296          if(dot(R,R) == 0) R = reflect( V, -N);  
    242297                                 
    243298           float3 Nl; 
     
    246301           if(Il.a == 0) 
    247302           { 
    248                    depth += 1; 
    249                   // I = float4(0.2,0.2,0.2,1.0); 
     303                   depth += 1;            
    250304           } 
    251305           else 
     
    256310           x = l;           
    257311           N = normalize(Nl); 
    258            V = R; 
    259             
    260           //if(refIndex <= 100.0) 
    261             if(dot(N, V) > 0) N = -N; 
     312           V = R;                   
    262313        } 
     314        /* 
     315        N = normalize(IN.mNormal); 
     316        x = IN.wPos - lastCenter; 
     317        V  = (IN.wPos - cameraPos); 
     318        depth = 0; 
     319        while(depth < MAX_RAY_DEPTH) 
     320         { 
     321           float3 R;   
     322           R = normalize(reflect( V, N));          
     323                 
     324           float3 Nl; 
     325           float4 Il; 
     326           l = Hit(x, R, N, NormDistMap1, NormDistMap2, CubeMap, DistanceMap, Il, Nl); 
     327           if(Il.a == 0) 
     328           { 
     329                   depth += 1;            
     330           } 
     331           else 
     332           { 
     333                   I = Il * 0.2 + I * 0.8; 
     334                   depth = MAX_RAY_DEPTH; 
     335           } 
     336           x = l;           
     337           N = Nl; 
     338           V = R;    
     339        }*/ 
    263340         
    264341        //if(I.a == 0) 
     
    282359         Color = SingleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex); 
    283360        else 
    284          Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap2,NormDistMap2,lastCenter,refIndex); 
     361         Color = MultipleReflectionPS(IN,cameraPos, CubeMap, DistanceMap, NormDistMap1,NormDistMap2,lastCenter,refIndex); 
    285362          
    286363        return Color; 
  • GTP/trunk/App/Demos/Illum/Ogre/Media/materials/scripts/MetalTeapot.material

    r1862 r1863  
    196196                        param_named F0 float3 0.95 0.95 0.95 
    197197                        param_named SingleBounce float 0.0 
    198                         param_named refIndex float 200                   
     198                        param_named refIndex float 0.909                         
    199199                }  
    200200                 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/Ogre.log

    r1861 r1863  
    1 16:16:11: Creating resource group General 
    2 16:16:11: Creating resource group Internal 
    3 16:16:11: Creating resource group Autodetect 
    4 16:16:11: Registering ResourceManager for type Material 
    5 16:16:11: Registering ResourceManager for type Mesh 
    6 16:16:11: Registering ResourceManager for type Skeleton 
    7 16:16:11: MovableObjectFactory for type 'ParticleSystem' registered. 
    8 16:16:11: Loading library OgrePlatform.dll 
    9 16:16:11: OverlayElementFactory for type Panel registered. 
    10 16:16:11: OverlayElementFactory for type BorderPanel registered. 
    11 16:16:11: OverlayElementFactory for type TextArea registered. 
    12 16:16:11: Registering ResourceManager for type Font 
    13 16:16:11: ArchiveFactory for archive type FileSystem registered. 
    14 16:16:11: ArchiveFactory for archive type Zip registered. 
    15 16:16:11: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
    16 16:16:11: DevIL image formats: bmp dib cut dcx dds gif hdr ico cur jpg jpe jpeg lif mdl mng jng pcx pic pix png pbm pgm pnm ppm psd pdd psp pxr sgi bw rgb rgba tga vda icb vst tif tiff wal xpm raw  
    17 16:16:11: Registering ResourceManager for type HighLevelGpuProgram 
    18 16:16:11: Registering ResourceManager for type Compositor 
    19 16:16:11: MovableObjectFactory for type 'Entity' registered. 
    20 16:16:11: MovableObjectFactory for type 'Light' registered. 
    21 16:16:11: MovableObjectFactory for type 'BillboardSet' registered. 
    22 16:16:11: MovableObjectFactory for type 'ManualObject' registered. 
    23 16:16:11: MovableObjectFactory for type 'BillboardChain' registered. 
    24 16:16:11: MovableObjectFactory for type 'RibbonTrail' registered. 
    25 16:16:11: Loading library .\RenderSystem_Direct3D9 
    26 16:16:11: D3D9 : Direct3D9 Rendering Subsystem created. 
    27 16:16:11: D3D9: Driver Detection Starts 
    28 16:16:11: D3D9: Driver Detection Ends 
    29 16:16:11: Loading library .\Plugin_ParticleFX 
    30 16:16:11: Particle Emitter Type 'Point' registered 
    31 16:16:11: Particle Emitter Type 'Box' registered 
    32 16:16:11: Particle Emitter Type 'Ellipsoid' registered 
    33 16:16:11: Particle Emitter Type 'Cylinder' registered 
    34 16:16:11: Particle Emitter Type 'Ring' registered 
    35 16:16:11: Particle Emitter Type 'HollowEllipsoid' registered 
    36 16:16:11: Particle Affector Type 'LinearForce' registered 
    37 16:16:11: Particle Affector Type 'ColourFader' registered 
    38 16:16:11: Particle Affector Type 'ColourFader2' registered 
    39 16:16:11: Particle Affector Type 'ColourImage' registered 
    40 16:16:11: Particle Affector Type 'ColourInterpolator' registered 
    41 16:16:11: Particle Affector Type 'Scaler' registered 
    42 16:16:11: Particle Affector Type 'Rotator' registered 
    43 16:16:11: Particle Affector Type 'DirectionRandomiser' registered 
    44 16:16:11: Particle Affector Type 'DeflectorPlane' registered 
    45 16:16:11: Loading library .\Plugin_BSPSceneManager 
    46 16:16:11: Registering ResourceManager for type BspLevel 
    47 16:16:11: Loading library .\Plugin_OctreeSceneManager 
    48 16:16:12: Loading library .\Plugin_CgProgramManager 
    49 16:16:12: *-*-* OGRE Initialising 
    50 16:16:12: *-*-* Version 1.2.0 (Dagon) 
    51 16:16:12: Creating resource group Bootstrap 
    52 16:16:12: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
    53 16:16:12: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
    54 16:16:12: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
    55 16:16:12: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
    56 16:16:12: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
    57 16:16:12: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
    58 16:16:12: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
    59 16:16:12: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
    60 16:16:12: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
    61 16:16:12: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
    62 16:16:12: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
    63 16:16:12: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
    64 16:16:12: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
    65 16:16:12: D3D9 : RenderSystem Option: Anti aliasing = None 
    66 16:16:12: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
    67 16:16:12: D3D9 : RenderSystem Option: Full Screen = No 
    68 16:16:12: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
    69 16:16:12: D3D9 : RenderSystem Option: VSync = No 
    70 16:16:12: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
    71 16:16:12: D3D9 : Subsystem Initialising 
    72 16:16:12: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=0 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
    73 16:16:12: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
    74 16:16:12: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
    75 16:16:12: Registering ResourceManager for type Texture 
    76 16:16:12: Registering ResourceManager for type GpuProgram 
    77 16:16:12: RenderSystem capabilities 
    78 16:16:12: ------------------------- 
    79 16:16:12:  * Hardware generation of mipmaps: yes 
    80 16:16:12:  * Texture blending: yes 
    81 16:16:12:  * Anisotropic texture filtering: yes 
    82 16:16:12:  * Dot product texture operation: yes 
    83 16:16:12:  * Cube mapping: yes 
    84 16:16:12:  * Hardware stencil buffer: yes 
    85 16:16:12:    - Stencil depth: 8 
    86 16:16:12:    - Two sided stencil support: yes 
    87 16:16:12:    - Wrap stencil values: yes 
    88 16:16:12:  * Hardware vertex / index buffers: yes 
    89 16:16:12:  * Vertex programs: yes 
    90 16:16:12:    - Max vertex program version: vs_3_0 
    91 16:16:12:  * Fragment programs: yes 
    92 16:16:12:    - Max fragment program version: ps_3_0 
    93 16:16:12:  * Texture Compression: yes 
    94 16:16:12:    - DXT: yes 
    95 16:16:12:    - VTC: no 
    96 16:16:12:  * Scissor Rectangle: yes 
    97 16:16:12:  * Hardware Occlusion Query: yes 
    98 16:16:12:  * User clip planes: yes 
    99 16:16:12:  * VET_UBYTE4 vertex element type: yes 
    100 16:16:12:  * Infinite far plane projection: yes 
    101 16:16:12:  * Hardware render-to-texture: yes 
    102 16:16:12:  * Floating point textures: yes 
    103 16:16:12:  * Non-power-of-two textures: yes 
    104 16:16:12:  * Volume textures: yes 
    105 16:16:12:  * Multiple Render Targets: 4 
    106 16:16:12:  * Max Point Size: 8192 
    107 16:16:12: *************************************** 
    108 16:16:12: *** D3D9 : Subsystem Initialised OK *** 
    109 16:16:12: *************************************** 
    110 16:16:12: ResourceBackgroundQueue - threading disabled 
    111 16:16:12: Particle Renderer Type 'billboard' registered 
    112 16:16:12: Particle Renderer Type 'sprite' registered 
    113 16:16:12: Creating viewport on target 'OGRE Render Window', rendering from camera 'PlayerCam', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0 
    114 16:16:12: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
    115 16:16:12: Parsing scripts for resource group Autodetect 
    116 16:16:12: Finished parsing scripts for resource group Autodetect 
    117 16:16:12: Parsing scripts for resource group Bootstrap 
    118 16:16:12: Parsing script OgreCore.material 
    119 16:16:12: Parsing script OgreProfiler.material 
    120 16:16:12: Parsing script Ogre.fontdef 
    121 16:16:12: Parsing script OgreDebugPanel.overlay 
    122 16:16:12: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    123 16:16:12: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
    124 16:16:12: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
    125 16:16:12: Font TrebuchetMSBoldusing texture size 512x512 
    126 16:16:12: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
    127 16:16:12: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
    128 16:16:12: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
    129 16:16:12: Parsing script OgreLoadingPanel.overlay 
    130 16:16:12: Finished parsing scripts for resource group Bootstrap 
    131 16:16:12: Parsing scripts for resource group General 
    132 16:16:12: Parsing script GameTools.program 
    133 16:16:12: Parsing script atlascube.material 
    134 16:16:12: Parsing script difflab.material 
    135 16:16:13: An exception has been thrown! 
     120:25:33: Creating resource group General 
     220:25:33: Creating resource group Internal 
     320:25:33: Creating resource group Autodetect 
     420:25:33: Registering ResourceManager for type Material 
     520:25:33: Registering ResourceManager for type Mesh 
     620:25:33: Registering ResourceManager for type Skeleton 
     720:25:33: MovableObjectFactory for type 'ParticleSystem' registered. 
     820:25:33: Loading library OgrePlatform.dll 
     920:25:33: OverlayElementFactory for type Panel registered. 
     1020:25:33: OverlayElementFactory for type BorderPanel registered. 
     1120:25:33: OverlayElementFactory for type TextArea registered. 
     1220:25:33: Registering ResourceManager for type Font 
     1320:25:33: ArchiveFactory for archive type FileSystem registered. 
     1420:25:33: ArchiveFactory for archive type Zip registered. 
     1520:25:33: DevIL version: Developer's Image Library (DevIL) 1.6.7 Oct 28 2005 
     1620:25:33: 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  
     1720:25:33: Registering ResourceManager for type HighLevelGpuProgram 
     1820:25:33: Registering ResourceManager for type Compositor 
     1920:25:33: MovableObjectFactory for type 'Entity' registered. 
     2020:25:33: MovableObjectFactory for type 'Light' registered. 
     2120:25:33: MovableObjectFactory for type 'BillboardSet' registered. 
     2220:25:33: MovableObjectFactory for type 'ManualObject' registered. 
     2320:25:33: MovableObjectFactory for type 'BillboardChain' registered. 
     2420:25:33: MovableObjectFactory for type 'RibbonTrail' registered. 
     2520:25:33: Loading library .\RenderSystem_Direct3D9 
     2620:25:33: D3D9 : Direct3D9 Rendering Subsystem created. 
     2720:25:33: D3D9: Driver Detection Starts 
     2820:25:33: D3D9: Driver Detection Ends 
     2920:25:33: Loading library .\Plugin_ParticleFX 
     3020:25:33: Particle Emitter Type 'Point' registered 
     3120:25:33: Particle Emitter Type 'Box' registered 
     3220:25:33: Particle Emitter Type 'Ellipsoid' registered 
     3320:25:33: Particle Emitter Type 'Cylinder' registered 
     3420:25:33: Particle Emitter Type 'Ring' registered 
     3520:25:33: Particle Emitter Type 'HollowEllipsoid' registered 
     3620:25:33: Particle Affector Type 'LinearForce' registered 
     3720:25:33: Particle Affector Type 'ColourFader' registered 
     3820:25:33: Particle Affector Type 'ColourFader2' registered 
     3920:25:33: Particle Affector Type 'ColourImage' registered 
     4020:25:33: Particle Affector Type 'ColourInterpolator' registered 
     4120:25:33: Particle Affector Type 'Scaler' registered 
     4220:25:33: Particle Affector Type 'Rotator' registered 
     4320:25:33: Particle Affector Type 'DirectionRandomiser' registered 
     4420:25:33: Particle Affector Type 'DeflectorPlane' registered 
     4520:25:33: Loading library .\Plugin_BSPSceneManager 
     4620:25:33: Registering ResourceManager for type BspLevel 
     4720:25:33: Loading library .\Plugin_OctreeSceneManager 
     4820:25:33: Loading library .\Plugin_CgProgramManager 
     4920:25:33: *-*-* OGRE Initialising 
     5020:25:33: *-*-* Version 1.2.0 (Dagon) 
     5120:25:33: Creating resource group Bootstrap 
     5220:25:33: Added resource location '../../Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap' 
     5320:25:33: Added resource location '../../Media' of type 'FileSystem' to resource group 'General' 
     5420:25:33: Added resource location '../../Media/fonts' of type 'FileSystem' to resource group 'General' 
     5520:25:33: Added resource location '../../Media/materials/programs' of type 'FileSystem' to resource group 'General' 
     5620:25:33: Added resource location '../../Media/materials/scripts' of type 'FileSystem' to resource group 'General' 
     5720:25:33: Added resource location '../../Media/materials/textures' of type 'FileSystem' to resource group 'General' 
     5820:25:33: Added resource location '../../Media/models' of type 'FileSystem' to resource group 'General' 
     5920:25:33: Added resource location '../../Media/overlays' of type 'FileSystem' to resource group 'General' 
     6020:25:33: Added resource location '../../Media/particle' of type 'FileSystem' to resource group 'General' 
     6120:25:33: Added resource location '../../Media/gui' of type 'FileSystem' to resource group 'General' 
     6220:25:33: Added resource location '../../Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General' 
     6320:25:33: Added resource location '../../Media/packs/smokealphaclip.zip' of type 'Zip' to resource group 'General' 
     6420:25:33: D3D9 : RenderSystem Option: Allow NVPerfHUD = No 
     6520:25:33: D3D9 : RenderSystem Option: Anti aliasing = Level 4 
     6620:25:33: D3D9 : RenderSystem Option: Floating-point mode = Fastest 
     6720:25:33: D3D9 : RenderSystem Option: Full Screen = No 
     6820:25:33: D3D9 : RenderSystem Option: Rendering Device = NVIDIA GeForce 7950 GX2 
     6920:25:33: D3D9 : RenderSystem Option: VSync = No 
     7020:25:33: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour 
     7120:25:34: D3D9 : Subsystem Initialising 
     7220:25:34: D3D9RenderSystem::createRenderWindow "OGRE Render Window", 800x600 windowed  miscParams: FSAA=4 FSAAQuality=0 colourDepth=32 useNVPerfHUD=false vsync=false  
     7320:25:34: D3D9 : Created D3D9 Rendering Window 'OGRE Render Window' : 800x600, 32bpp 
     7420:25:34: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem. 
     7520:25:34: Registering ResourceManager for type Texture 
     7620:25:34: Registering ResourceManager for type GpuProgram 
     7720:25:34: RenderSystem capabilities 
     7820:25:34: ------------------------- 
     7920:25:34:  * Hardware generation of mipmaps: yes 
     8020:25:34:  * Texture blending: yes 
     8120:25:34:  * Anisotropic texture filtering: yes 
     8220:25:34:  * Dot product texture operation: yes 
     8320:25:34:  * Cube mapping: yes 
     8420:25:34:  * Hardware stencil buffer: yes 
     8520:25:34:    - Stencil depth: 8 
     8620:25:34:    - Two sided stencil support: yes 
     8720:25:34:    - Wrap stencil values: yes 
     8820:25:34:  * Hardware vertex / index buffers: yes 
     8920:25:34:  * Vertex programs: yes 
     9020:25:34:    - Max vertex program version: vs_3_0 
     9120:25:34:  * Fragment programs: yes 
     9220:25:34:    - Max fragment program version: ps_3_0 
     9320:25:34:  * Texture Compression: yes 
     9420:25:34:    - DXT: yes 
     9520:25:34:    - VTC: no 
     9620:25:34:  * Scissor Rectangle: yes 
     9720:25:34:  * Hardware Occlusion Query: yes 
     9820:25:34:  * User clip planes: yes 
     9920:25:34:  * VET_UBYTE4 vertex element type: yes 
     10020:25:34:  * Infinite far plane projection: yes 
     10120:25:34:  * Hardware render-to-texture: yes 
     10220:25:34:  * Floating point textures: yes 
     10320:25:34:  * Non-power-of-two textures: yes 
     10420:25:34:  * Volume textures: yes 
     10520:25:34:  * Multiple Render Targets: 4 
     10620:25:34:  * Max Point Size: 8192 
     10720:25:34: *************************************** 
     10820:25:34: *** D3D9 : Subsystem Initialised OK *** 
     10920:25:34: *************************************** 
     11020:25:34: ResourceBackgroundQueue - threading disabled 
     11120:25:34: Particle Renderer Type 'billboard' registered 
     11220:25:34: Particle Renderer Type 'sprite' registered 
     11320:25:34: 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 
     11420:25:34: Viewport for camera 'PlayerCam', actual dimensions L: 0 T: 0 W: 800 H: 600 
     11520:25:34: Parsing scripts for resource group Autodetect 
     11620:25:34: Finished parsing scripts for resource group Autodetect 
     11720:25:34: Parsing scripts for resource group Bootstrap 
     11820:25:34: Parsing script OgreCore.material 
     11920:25:34: Parsing script OgreProfiler.material 
     12020:25:34: Parsing script Ogre.fontdef 
     12120:25:34: Parsing script OgreDebugPanel.overlay 
     12220:25:34: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12320:25:34: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1. 
     12420:25:34: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1. 
     12520:25:34: Font TrebuchetMSBoldusing texture size 512x512 
     12620:25:34: Info: Freetype returned null for character 160 in font TrebuchetMSBold 
     12720:25:34: Texture: TrebuchetMSBoldTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1. 
     12820:25:34: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with  hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1. 
     12920:25:34: Parsing script OgreLoadingPanel.overlay 
     13020:25:34: Finished parsing scripts for resource group Bootstrap 
     13120:25:34: Parsing scripts for resource group General 
     13220:25:34: Parsing script GameTools.program 
     13320:25:34: Parsing script atlascube.material 
     13420:25:34: Parsing script colorcube.material 
     13520:25:34: Parsing script difflab.material 
     13620:25:35: An exception has been thrown! 
    136137 
    137138----------------------------------- 
     
    144145Line: 779 
    145146Stack unwinding: <<beginning of stack>> 
    146 16:16:13: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     14720:25:35: Error in material Difflab/TexturedPhong at line 33 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    147148 
    148149----------------------------------- 
     
    155156Line: 779 
    156157Stack unwinding: <<beginning of stack>> 
    157 16:16:13: An exception has been thrown! 
     15820:25:35: An exception has been thrown! 
    158159 
    159160----------------------------------- 
     
    166167Line: 779 
    167168Stack unwinding: <<beginning of stack>> 
    168 16:16:13: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     16920:25:35: Error in material Difflab/TexturedPhong at line 38 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    169170 
    170171----------------------------------- 
     
    177178Line: 779 
    178179Stack unwinding: <<beginning of stack>> 
    179 16:16:13: An exception has been thrown! 
     18020:25:35: An exception has been thrown! 
    180181 
    181182----------------------------------- 
     
    188189Line: 779 
    189190Stack unwinding: <<beginning of stack>> 
    190 16:16:13: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     19120:25:35: Error in material Difflab/TexturedPhong at line 39 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    191192 
    192193----------------------------------- 
     
    199200Line: 779 
    200201Stack unwinding: <<beginning of stack>> 
    201 16:16:13: An exception has been thrown! 
     20220:25:35: An exception has been thrown! 
    202203 
    203204----------------------------------- 
     
    210211Line: 779 
    211212Stack unwinding: <<beginning of stack>> 
    212 16:16:13: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     21320:25:35: Error in material Difflab/TexturedPhong at line 40 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    213214 
    214215----------------------------------- 
     
    221222Line: 779 
    222223Stack unwinding: <<beginning of stack>> 
    223 16:16:13: An exception has been thrown! 
     22420:25:35: An exception has been thrown! 
    224225 
    225226----------------------------------- 
     
    232233Line: 779 
    233234Stack unwinding: <<beginning of stack>> 
    234 16:16:13: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     23520:25:35: Error in material Difflab/TexturedPhong at line 41 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    235236 
    236237----------------------------------- 
     
    243244Line: 779 
    244245Stack unwinding: <<beginning of stack>> 
    245 16:16:13: An exception has been thrown! 
     24620:25:35: An exception has been thrown! 
    246247 
    247248----------------------------------- 
     
    254255Line: 779 
    255256Stack unwinding: <<beginning of stack>> 
    256 16:16:13: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     25720:25:35: Error in material Difflab/TexturedPhong at line 42 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    257258 
    258259----------------------------------- 
     
    265266Line: 779 
    266267Stack unwinding: <<beginning of stack>> 
    267 16:16:13: An exception has been thrown! 
     26820:25:35: An exception has been thrown! 
    268269 
    269270----------------------------------- 
     
    276277Line: 779 
    277278Stack unwinding: <<beginning of stack>> 
    278 16:16:13: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     27920:25:35: Error in material Difflab/TexturedPhong at line 47 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    279280 
    280281----------------------------------- 
     
    287288Line: 779 
    288289Stack unwinding: <<beginning of stack>> 
    289 16:16:13: An exception has been thrown! 
     29020:25:35: An exception has been thrown! 
    290291 
    291292----------------------------------- 
     
    298299Line: 779 
    299300Stack unwinding: <<beginning of stack>> 
    300 16:16:13: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     30120:25:35: Error in material Difflab/TexturedPhong at line 48 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    301302 
    302303----------------------------------- 
     
    309310Line: 779 
    310311Stack unwinding: <<beginning of stack>> 
    311 16:16:13: An exception has been thrown! 
     31220:25:35: An exception has been thrown! 
    312313 
    313314----------------------------------- 
     
    320321Line: 779 
    321322Stack unwinding: <<beginning of stack>> 
    322 16:16:13: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     32320:25:35: Error in material Difflab/TexturedPhong at line 49 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    323324 
    324325----------------------------------- 
     
    331332Line: 779 
    332333Stack unwinding: <<beginning of stack>> 
    333 16:16:13: An exception has been thrown! 
     33420:25:35: An exception has been thrown! 
    334335 
    335336----------------------------------- 
     
    342343Line: 779 
    343344Stack unwinding: <<beginning of stack>> 
    344 16:16:13: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     34520:25:35: Error in material Difflab/TexturedPhong at line 50 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    345346 
    346347----------------------------------- 
     
    353354Line: 779 
    354355Stack unwinding: <<beginning of stack>> 
    355 16:16:13: An exception has been thrown! 
     35620:25:35: An exception has been thrown! 
    356357 
    357358----------------------------------- 
     
    364365Line: 779 
    365366Stack unwinding: <<beginning of stack>> 
    366 16:16:13: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     36720:25:35: Error in material Difflab/TexturedPhong at line 51 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    367368 
    368369----------------------------------- 
     
    375376Line: 779 
    376377Stack unwinding: <<beginning of stack>> 
    377 16:16:13: An exception has been thrown! 
     37820:25:35: An exception has been thrown! 
    378379 
    379380----------------------------------- 
     
    386387Line: 779 
    387388Stack unwinding: <<beginning of stack>> 
    388 16:16:13: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     38920:25:35: Error in material Difflab/TexturedPhong at line 56 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    389390 
    390391----------------------------------- 
     
    397398Line: 779 
    398399Stack unwinding: <<beginning of stack>> 
    399 16:16:13: An exception has been thrown! 
     40020:25:35: An exception has been thrown! 
    400401 
    401402----------------------------------- 
     
    408409Line: 779 
    409410Stack unwinding: <<beginning of stack>> 
    410 16:16:13: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     41120:25:35: Error in material Difflab/TexturedPhong at line 57 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    411412 
    412413----------------------------------- 
     
    419420Line: 779 
    420421Stack unwinding: <<beginning of stack>> 
    421 16:16:13: An exception has been thrown! 
     42220:25:35: An exception has been thrown! 
    422423 
    423424----------------------------------- 
     
    430431Line: 779 
    431432Stack unwinding: <<beginning of stack>> 
    432 16:16:13: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     43320:25:35: Error in material Difflab/TexturedPhong at line 58 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    433434 
    434435----------------------------------- 
     
    441442Line: 779 
    442443Stack unwinding: <<beginning of stack>> 
    443 16:16:13: An exception has been thrown! 
     44420:25:35: An exception has been thrown! 
    444445 
    445446----------------------------------- 
     
    452453Line: 779 
    453454Stack unwinding: <<beginning of stack>> 
    454 16:16:13: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     45520:25:35: Error in material Difflab/TexturedPhong at line 59 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    455456 
    456457----------------------------------- 
     
    463464Line: 779 
    464465Stack unwinding: <<beginning of stack>> 
    465 16:16:13: An exception has been thrown! 
     46620:25:35: An exception has been thrown! 
    466467 
    467468----------------------------------- 
     
    474475Line: 779 
    475476Stack unwinding: <<beginning of stack>> 
    476 16:16:13: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     47720:25:35: Error in material Difflab/TexturedPhong at line 60 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    477478 
    478479----------------------------------- 
     
    485486Line: 779 
    486487Stack unwinding: <<beginning of stack>> 
    487 16:16:13: An exception has been thrown! 
     48820:25:35: An exception has been thrown! 
    488489 
    489490----------------------------------- 
     
    496497Line: 779 
    497498Stack unwinding: <<beginning of stack>> 
    498 16:16:13: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     49920:25:35: Error in material Difflab/TexturedPhong at line 65 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    499500 
    500501----------------------------------- 
     
    507508Line: 779 
    508509Stack unwinding: <<beginning of stack>> 
    509 16:16:13: An exception has been thrown! 
     51020:25:35: An exception has been thrown! 
    510511 
    511512----------------------------------- 
     
    518519Line: 779 
    519520Stack unwinding: <<beginning of stack>> 
    520 16:16:13: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     52120:25:35: Error in material Difflab/TexturedPhong at line 66 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    521522 
    522523----------------------------------- 
     
    529530Line: 779 
    530531Stack unwinding: <<beginning of stack>> 
    531 16:16:13: An exception has been thrown! 
     53220:25:35: An exception has been thrown! 
    532533 
    533534----------------------------------- 
     
    540541Line: 779 
    541542Stack unwinding: <<beginning of stack>> 
    542 16:16:13: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     54320:25:35: Error in material Difflab/TexturedPhong at line 67 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    543544 
    544545----------------------------------- 
     
    551552Line: 779 
    552553Stack unwinding: <<beginning of stack>> 
    553 16:16:13: An exception has been thrown! 
     55420:25:35: An exception has been thrown! 
    554555 
    555556----------------------------------- 
     
    562563Line: 779 
    563564Stack unwinding: <<beginning of stack>> 
    564 16:16:13: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     56520:25:35: Error in material Difflab/TexturedPhong at line 68 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    565566 
    566567----------------------------------- 
     
    573574Line: 779 
    574575Stack unwinding: <<beginning of stack>> 
    575 16:16:13: An exception has been thrown! 
     57620:25:35: An exception has been thrown! 
    576577 
    577578----------------------------------- 
     
    584585Line: 779 
    585586Stack unwinding: <<beginning of stack>> 
    586 16:16:13: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
     58720:25:35: Error in material Difflab/TexturedPhong at line 69 of difflab.material: Invalid param_named_auto attribute - An exception has been thrown! 
    587588 
    588589----------------------------------- 
     
    595596Line: 779 
    596597Stack unwinding: <<beginning of stack>> 
    597 16:16:13: Parsing script diffscene.material 
    598 16:16:13: An exception has been thrown! 
     59820:25:35: Parsing script diffscene.material 
     59920:25:35: An exception has been thrown! 
    599600 
    600601----------------------------------- 
     
    607608Line: 779 
    608609Stack unwinding: <<beginning of stack>> 
    609 16:16:13: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     61020:25:35: Error in material GameTools/Phong at line 36 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    610611 
    611612----------------------------------- 
     
    618619Line: 779 
    619620Stack unwinding: <<beginning of stack>> 
    620 16:16:13: An exception has been thrown! 
     62120:25:35: An exception has been thrown! 
    621622 
    622623----------------------------------- 
     
    629630Line: 779 
    630631Stack unwinding: <<beginning of stack>> 
    631 16:16:13: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     63220:25:35: Error in material GameTools/Phong at line 37 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    632633 
    633634----------------------------------- 
     
    640641Line: 779 
    641642Stack unwinding: <<beginning of stack>> 
    642 16:16:13: An exception has been thrown! 
     64320:25:35: An exception has been thrown! 
    643644 
    644645----------------------------------- 
     
    651652Line: 779 
    652653Stack unwinding: <<beginning of stack>> 
    653 16:16:13: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     65420:25:35: Error in material GameTools/Phong at line 38 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    654655 
    655656----------------------------------- 
     
    662663Line: 779 
    663664Stack unwinding: <<beginning of stack>> 
    664 16:16:13: An exception has been thrown! 
     66520:25:35: An exception has been thrown! 
    665666 
    666667----------------------------------- 
     
    673674Line: 779 
    674675Stack unwinding: <<beginning of stack>> 
    675 16:16:13: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     67620:25:35: Error in material GameTools/Phong at line 39 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    676677 
    677678----------------------------------- 
     
    684685Line: 779 
    685686Stack unwinding: <<beginning of stack>> 
    686 16:16:13: An exception has been thrown! 
     68720:25:35: An exception has been thrown! 
    687688 
    688689----------------------------------- 
     
    695696Line: 779 
    696697Stack unwinding: <<beginning of stack>> 
    697 16:16:13: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     69820:25:35: Error in material GameTools/Phong at line 45 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    698699 
    699700----------------------------------- 
     
    706707Line: 779 
    707708Stack unwinding: <<beginning of stack>> 
    708 16:16:13: An exception has been thrown! 
     70920:25:35: An exception has been thrown! 
    709710 
    710711----------------------------------- 
     
    717718Line: 779 
    718719Stack unwinding: <<beginning of stack>> 
    719 16:16:13: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     72020:25:35: Error in material GameTools/Phong at line 46 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    720721 
    721722----------------------------------- 
     
    728729Line: 779 
    729730Stack unwinding: <<beginning of stack>> 
    730 16:16:13: An exception has been thrown! 
     73120:25:35: An exception has been thrown! 
    731732 
    732733----------------------------------- 
     
    739740Line: 779 
    740741Stack unwinding: <<beginning of stack>> 
    741 16:16:13: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     74220:25:35: Error in material GameTools/Phong at line 47 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    742743 
    743744----------------------------------- 
     
    750751Line: 779 
    751752Stack unwinding: <<beginning of stack>> 
    752 16:16:13: An exception has been thrown! 
     75320:25:35: An exception has been thrown! 
    753754 
    754755----------------------------------- 
     
    761762Line: 779 
    762763Stack unwinding: <<beginning of stack>> 
    763 16:16:13: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
     76420:25:35: Error in material GameTools/Phong at line 48 of diffscene.material: Invalid param_named_auto attribute - An exception has been thrown! 
    764765 
    765766----------------------------------- 
     
    772773Line: 779 
    773774Stack unwinding: <<beginning of stack>> 
    774 16:16:13: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    775 16:16:13: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
    776 16:16:13: Parsing script Diffuse.material 
    777 16:16:13: An exception has been thrown! 
     77520:25:35: Error in material asztallap at line 73 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77620:25:35: Error in material asztallap at line 74 of diffscene.material: Invalid param_named attribute - unrecognised parameter type 0.560857 
     77720:25:35: Parsing script Diffuse.material 
     77820:25:35: An exception has been thrown! 
    778779 
    779780----------------------------------- 
     
    786787Line: 779 
    787788Stack unwinding: <<beginning of stack>> 
    788 16:16:13: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     78920:25:35: Error in material GameTools/CubeMap/Reduce at line 20 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    789790 
    790791----------------------------------- 
     
    797798Line: 779 
    798799Stack unwinding: <<beginning of stack>> 
    799 16:16:14: An exception has been thrown! 
     80020:25:35: An exception has been thrown! 
    800801 
    801802----------------------------------- 
     
    808809Line: 779 
    809810Stack unwinding: <<beginning of stack>> 
    810 16:16:14: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     81120:25:35: Error in material GameTools/Diffuse at line 74 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    811812 
    812813----------------------------------- 
     
    819820Line: 779 
    820821Stack unwinding: <<beginning of stack>> 
    821 16:16:17: An exception has been thrown! 
     82220:25:39: An exception has been thrown! 
    822823 
    823824----------------------------------- 
     
    830831Line: 779 
    831832Stack unwinding: <<beginning of stack>> 
    832 16:16:17: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
     83320:25:39: Error in material GameTools/DiffuseBump at line 226 of Diffuse.material: Invalid param_named_auto attribute - An exception has been thrown! 
    833834 
    834835----------------------------------- 
     
    841842Line: 779 
    842843Stack unwinding: <<beginning of stack>> 
    843 16:16:17: An exception has been thrown! 
     84420:25:39: An exception has been thrown! 
    844845 
    845846----------------------------------- 
     
    852853Line: 779 
    853854Stack unwinding: <<beginning of stack>> 
    854 16:16:17: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
     85520:25:39: Error in material GameTools/DiffuseBump at line 227 of Diffuse.material: Invalid param_named attribute - An exception has been thrown! 
    855856 
    856857----------------------------------- 
     
    863864Line: 779 
    864865Stack unwinding: <<beginning of stack>> 
    865 16:16:18: Parsing script EnvMetals.material 
    866 16:16:18: An exception has been thrown! 
     86620:25:39: Parsing script EnvMetals.material 
     86720:25:39: An exception has been thrown! 
    867868 
    868869----------------------------------- 
     
    875876Line: 779 
    876877Stack unwinding: <<beginning of stack>> 
    877 16:16:18: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     87820:25:39: Error in material EnvMetals/Copper at line 37 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    878879 
    879880----------------------------------- 
     
    886887Line: 779 
    887888Stack unwinding: <<beginning of stack>> 
    888 16:16:18: An exception has been thrown! 
     88920:25:39: An exception has been thrown! 
    889890 
    890891----------------------------------- 
     
    897898Line: 779 
    898899Stack unwinding: <<beginning of stack>> 
    899 16:16:18: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     90020:25:39: Error in material EnvMetals/Gold at line 97 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    900901 
    901902----------------------------------- 
     
    908909Line: 779 
    909910Stack unwinding: <<beginning of stack>> 
    910 16:16:18: An exception has been thrown! 
     91120:25:39: An exception has been thrown! 
    911912 
    912913----------------------------------- 
     
    919920Line: 779 
    920921Stack unwinding: <<beginning of stack>> 
    921 16:16:18: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     92220:25:39: Error in material EnvMetals/Silver at line 159 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    922923 
    923924----------------------------------- 
     
    930931Line: 779 
    931932Stack unwinding: <<beginning of stack>> 
    932 16:16:18: An exception has been thrown! 
     93320:25:39: An exception has been thrown! 
    933934 
    934935----------------------------------- 
     
    941942Line: 779 
    942943Stack unwinding: <<beginning of stack>> 
    943 16:16:18: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
     94420:25:39: Error in material EnvMetals/Alu at line 222 of EnvMetals.material: Invalid param_named_auto attribute - An exception has been thrown! 
    944945 
    945946----------------------------------- 
     
    952953Line: 779 
    953954Stack unwinding: <<beginning of stack>> 
    954 16:16:18: Parsing script GameTools.material 
    955 16:16:18: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
    956 16:16:18: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
    957 16:16:18: An exception has been thrown! 
     95520:25:39: Parsing script GameTools.material 
     95620:25:39: Error in material TestPlane at line 120 of GameTools.material: Bad specular attribute, wrong number of parameters (expected 2, 4 or 5) 
     95720:25:39: Error in material GameTools/SceneCameraDepthShader at line 190 of GameTools.material: Unrecognised command: scene_blend 
     95820:25:39: An exception has been thrown! 
    958959 
    959960----------------------------------- 
     
    966967Line: 779 
    967968Stack unwinding: <<beginning of stack>> 
    968 16:16:18: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
     96920:25:39: Error in material GameTools/SceneCameraDepthShader at line 198 of GameTools.material: Invalid param_named_auto attribute - An exception has been thrown! 
    969970 
    970971----------------------------------- 
     
    977978Line: 779 
    978979Stack unwinding: <<beginning of stack>> 
    979 16:16:18: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
    980 16:16:18: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
    981 16:16:18: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
    982 16:16:18: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
    983 16:16:18: Parsing script GameTools_HPS.material 
    984 16:16:18: An exception has been thrown! 
     98020:25:39: Error in material GameTools/FocusingShader at line 214 of GameTools.material: Unrecognised command: scene_blend 
     98120:25:39: Error in material GameTools/FocusingShader at line 222 of GameTools.material: Invalid param_named attribute - expected at least 3 parameters. 
     98220:25:39: Error in material GameTools/ShadowMapDepth at line 238 of GameTools.material: Unrecognised command: scene_blend 
     98320:25:39: Error in material GameTools/ShadowMapDistance at line 263 of GameTools.material: Unrecognised command: scene_blend 
     98420:25:39: Parsing script GameTools_HPS.material 
     98520:25:39: An exception has been thrown! 
    985986 
    986987----------------------------------- 
     
    993994Line: 779 
    994995Stack unwinding: <<beginning of stack>> 
    995 16:16:18: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     99620:25:39: Error in material HPS_SMOKE_S at line 25 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    996997 
    997998----------------------------------- 
     
    10041005Line: 779 
    10051006Stack unwinding: <<beginning of stack>> 
    1006 16:16:18: An exception has been thrown! 
     100720:25:39: An exception has been thrown! 
    10071008 
    10081009----------------------------------- 
     
    10151016Line: 779 
    10161017Stack unwinding: <<beginning of stack>> 
    1017 16:16:18: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     101820:25:39: Error in material HPS_SMOKE_L at line 84 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10181019 
    10191020----------------------------------- 
     
    10261027Line: 779 
    10271028Stack unwinding: <<beginning of stack>> 
    1028 16:16:18: An exception has been thrown! 
     102920:25:39: An exception has been thrown! 
    10291030 
    10301031----------------------------------- 
     
    10371038Line: 779 
    10381039Stack unwinding: <<beginning of stack>> 
    1039 16:16:18: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     104020:25:39: Error in material HPS_SMOKE_L at line 90 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10401041 
    10411042----------------------------------- 
     
    10481049Line: 779 
    10491050Stack unwinding: <<beginning of stack>> 
    1050 16:16:18: An exception has been thrown! 
     105120:25:39: An exception has been thrown! 
    10511052 
    10521053----------------------------------- 
     
    10591060Line: 779 
    10601061Stack unwinding: <<beginning of stack>> 
    1061 16:16:18: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     106220:25:39: Error in material HPS_SMOKE_L_Depth at line 160 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10621063 
    10631064----------------------------------- 
     
    10701071Line: 779 
    10711072Stack unwinding: <<beginning of stack>> 
    1072 16:16:18: An exception has been thrown! 
     107320:25:39: An exception has been thrown! 
    10731074 
    10741075----------------------------------- 
     
    10811082Line: 779 
    10821083Stack unwinding: <<beginning of stack>> 
    1083 16:16:18: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     108420:25:39: Error in material HPS_SMOKE_L_Depth at line 169 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    10841085 
    10851086----------------------------------- 
     
    10921093Line: 779 
    10931094Stack unwinding: <<beginning of stack>> 
    1094 16:16:18: An exception has been thrown! 
     109520:25:39: An exception has been thrown! 
    10951096 
    10961097----------------------------------- 
     
    11031104Line: 779 
    11041105Stack unwinding: <<beginning of stack>> 
    1105 16:16:18: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     110620:25:39: Error in material HPS_SMOKE_L_Depth at line 170 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11061107 
    11071108----------------------------------- 
     
    11141115Line: 779 
    11151116Stack unwinding: <<beginning of stack>> 
    1116 16:16:18: An exception has been thrown! 
     111720:25:39: An exception has been thrown! 
    11171118 
    11181119----------------------------------- 
     
    11251126Line: 779 
    11261127Stack unwinding: <<beginning of stack>> 
    1127 16:16:18: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
     112820:25:39: Error in material Smoke_IllumVolume at line 229 of GameTools_HPS.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11281129 
    11291130----------------------------------- 
     
    11361137Line: 779 
    11371138Stack unwinding: <<beginning of stack>> 
    1138 16:16:18: Parsing script GlassHead.material 
    1139 16:16:18: An exception has been thrown! 
     113920:25:39: Parsing script GlassHead.material 
     114020:25:39: An exception has been thrown! 
    11401141 
    11411142----------------------------------- 
     
    11481149Line: 779 
    11491150Stack unwinding: <<beginning of stack>> 
    1150 16:16:18: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     115120:25:39: Error in material GameTools/PhotonMapCaustic at line 12 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11511152 
    11521153----------------------------------- 
     
    11591160Line: 779 
    11601161Stack unwinding: <<beginning of stack>> 
    1161 16:16:18: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
    1162 16:16:18: An exception has been thrown! 
     116220:25:39: Error in material GameTools/PhotonMapCaustic at line 23 of GlassHead.material: Bad cubic_texture attribute, final parameter must be 'combinedUVW' or 'separateUV'. 
     116320:25:39: An exception has been thrown! 
    11631164 
    11641165----------------------------------- 
     
    11711172Line: 779 
    11721173Stack unwinding: <<beginning of stack>> 
    1173 16:16:18: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     117420:25:39: Error in material GameTools/Cau at line 47 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11741175 
    11751176----------------------------------- 
     
    11821183Line: 779 
    11831184Stack unwinding: <<beginning of stack>> 
    1184 16:16:18: An exception has been thrown! 
     118520:25:39: An exception has been thrown! 
    11851186 
    11861187----------------------------------- 
     
    11931194Line: 779 
    11941195Stack unwinding: <<beginning of stack>> 
    1195 16:16:18: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     119620:25:39: Error in material GameTools/Cau at line 50 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    11961197 
    11971198----------------------------------- 
     
    12041205Line: 779 
    12051206Stack unwinding: <<beginning of stack>> 
    1206 16:16:18: An exception has been thrown! 
     120720:25:39: An exception has been thrown! 
    12071208 
    12081209----------------------------------- 
     
    12151216Line: 779 
    12161217Stack unwinding: <<beginning of stack>> 
    1217 16:16:18: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
     121820:25:39: Error in material GameTools/CauTri at line 105 of GlassHead.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12181219 
    12191220----------------------------------- 
     
    12261227Line: 779 
    12271228Stack unwinding: <<beginning of stack>> 
    1228 16:16:18: Parsing script Glow.material 
    1229 16:16:18: An exception has been thrown! 
     122920:25:39: Parsing script Glow.material 
     123020:25:39: An exception has been thrown! 
    12301231 
    12311232----------------------------------- 
     
    12381239Line: 779 
    12391240Stack unwinding: <<beginning of stack>> 
    1240 16:16:18: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
     124120:25:39: Error in material GameTools/ToneMap at line 239 of Glow.material: Invalid param_named attribute - An exception has been thrown! 
    12411242 
    12421243----------------------------------- 
     
    12491250Line: 779 
    12501251Stack unwinding: <<beginning of stack>> 
    1251 16:16:18: Parsing script hangar.material 
    1252 16:16:18: Parsing script kupola.material 
    1253 16:16:18: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1254 16:16:18: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1255 16:16:18: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
    1256 16:16:18: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
    1257 16:16:18: Parsing script MetalTeapot.material 
    1258 16:16:22: An exception has been thrown! 
     125220:25:39: Parsing script hangar.material 
     125320:25:39: Parsing script kupola.material 
     125420:25:39: Error in material kupolalambert2 at line 23 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     125520:25:39: Error in material kupolalambert2 at line 26 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     125620:25:39: Error in material kupolalambert5 at line 77 of kupola.material: Bad scene_blend attribute, unrecognised parameter 'none' 
     125720:25:39: Error in material kupolalambert5 at line 80 of kupola.material: Bad scene_blend_alpha attribute, unrecognised parameter 'none' 
     125820:25:39: Parsing script MetalTeapot.material 
     125920:25:40: An exception has been thrown! 
     1260 
     1261----------------------------------- 
     1262Details: 
     1263----------------------------------- 
     1264Error #: 7 
     1265Function: GpuProgramParameters::getParamIndex 
     1266Description: Cannot find a parameter named refIndex.  
     1267File: ..\src\OgreGpuProgram.cpp 
     1268Line: 779 
     1269Stack unwinding: <<beginning of stack>> 
     127020:25:40: Error in material NormalDistanceCW at line 91 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     1271 
     1272----------------------------------- 
     1273Details: 
     1274----------------------------------- 
     1275Error #: 7 
     1276Function: GpuProgramParameters::getParamIndex 
     1277Description: Cannot find a parameter named refIndex.  
     1278File: ..\src\OgreGpuProgram.cpp 
     1279Line: 779 
     1280Stack unwinding: <<beginning of stack>> 
     128120:25:40: An exception has been thrown! 
     1282 
     1283----------------------------------- 
     1284Details: 
     1285----------------------------------- 
     1286Error #: 7 
     1287Function: GpuProgramParameters::getParamIndex 
     1288Description: Cannot find a parameter named refIndex.  
     1289File: ..\src\OgreGpuProgram.cpp 
     1290Line: 779 
     1291Stack unwinding: <<beginning of stack>> 
     129220:25:40: Error in material NormalDistanceCCW at line 113 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     1293 
     1294----------------------------------- 
     1295Details: 
     1296----------------------------------- 
     1297Error #: 7 
     1298Function: GpuProgramParameters::getParamIndex 
     1299Description: Cannot find a parameter named refIndex.  
     1300File: ..\src\OgreGpuProgram.cpp 
     1301Line: 779 
     1302Stack unwinding: <<beginning of stack>> 
     130320:25:46: An exception has been thrown! 
    12591304 
    12601305----------------------------------- 
     
    12671312Line: 779 
    12681313Stack unwinding: <<beginning of stack>> 
    1269 16:16:22: Error in material MetalTeapotMultipleBounce at line 196 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
     131420:25:46: Error in material MetalTeapotMultipleBounce at line 196 of MetalTeapot.material: Invalid param_named attribute - An exception has been thrown! 
    12701315 
    12711316----------------------------------- 
     
    12781323Line: 779 
    12791324Stack unwinding: <<beginning of stack>> 
    1280 16:16:22: Parsing script Ogre.material 
    1281 16:16:22: Parsing script Particles.material 
    1282 16:16:22: An exception has been thrown! 
     132520:25:46: Parsing script Ogre.material 
     132620:25:46: Parsing script Particles.material 
     132720:25:46: An exception has been thrown! 
    12831328 
    12841329----------------------------------- 
     
    12911336Line: 779 
    12921337Stack unwinding: <<beginning of stack>> 
    1293 16:16:22: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     133820:25:46: Error in material GameTools/SpriteShader at line 17 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    12941339 
    12951340----------------------------------- 
     
    13021347Line: 779 
    13031348Stack unwinding: <<beginning of stack>> 
    1304 16:16:22: An exception has been thrown! 
     134920:25:46: An exception has been thrown! 
    13051350 
    13061351----------------------------------- 
     
    13131358Line: 779 
    13141359Stack unwinding: <<beginning of stack>> 
    1315 16:16:22: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
     136020:25:46: Error in material GameTools/SBB at line 52 of Particles.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13161361 
    13171362----------------------------------- 
     
    13241369Line: 779 
    13251370Stack unwinding: <<beginning of stack>> 
    1326 16:16:22: Parsing script RaytraceDemo.material 
    1327 16:16:22: Parsing script stairs.material 
    1328 16:16:22: Parsing script uvegfolyoso2.material 
    1329 16:16:22: An exception has been thrown! 
     137120:25:46: Parsing script RaytraceDemo.material 
     137220:25:46: Parsing script stairs.material 
     137320:25:46: Parsing script terito.material 
     137420:25:46: Parsing script uvegfolyoso2.material 
     137520:25:46: An exception has been thrown! 
    13301376 
    13311377----------------------------------- 
     
    13381384Line: 779 
    13391385Stack unwinding: <<beginning of stack>> 
    1340 16:16:22: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     138620:25:46: Error in material Folyoso/Phong at line 22 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13411387 
    13421388----------------------------------- 
     
    13491395Line: 779 
    13501396Stack unwinding: <<beginning of stack>> 
    1351 16:16:22: An exception has been thrown! 
     139720:25:46: An exception has been thrown! 
    13521398 
    13531399----------------------------------- 
     
    13601406Line: 779 
    13611407Stack unwinding: <<beginning of stack>> 
    1362 16:16:22: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     140820:25:46: Error in material Folyoso/Phong at line 23 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13631409 
    13641410----------------------------------- 
     
    13711417Line: 779 
    13721418Stack unwinding: <<beginning of stack>> 
    1373 16:16:22: An exception has been thrown! 
     141920:25:46: An exception has been thrown! 
    13741420 
    13751421----------------------------------- 
     
    13821428Line: 779 
    13831429Stack unwinding: <<beginning of stack>> 
    1384 16:16:22: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     143020:25:46: Error in material Folyoso/Phong at line 24 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    13851431 
    13861432----------------------------------- 
     
    13931439Line: 779 
    13941440Stack unwinding: <<beginning of stack>> 
    1395 16:16:22: An exception has been thrown! 
     144120:25:46: An exception has been thrown! 
    13961442 
    13971443----------------------------------- 
     
    14041450Line: 779 
    14051451Stack unwinding: <<beginning of stack>> 
    1406 16:16:22: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     145220:25:46: Error in material Folyoso/Phong at line 25 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14071453 
    14081454----------------------------------- 
     
    14151461Line: 779 
    14161462Stack unwinding: <<beginning of stack>> 
    1417 16:16:22: An exception has been thrown! 
     146320:25:46: An exception has been thrown! 
    14181464 
    14191465----------------------------------- 
     
    14261472Line: 779 
    14271473Stack unwinding: <<beginning of stack>> 
    1428 16:16:22: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     147420:25:46: Error in material Folyoso/Phong at line 31 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14291475 
    14301476----------------------------------- 
     
    14371483Line: 779 
    14381484Stack unwinding: <<beginning of stack>> 
    1439 16:16:22: An exception has been thrown! 
     148520:25:46: An exception has been thrown! 
    14401486 
    14411487----------------------------------- 
     
    14481494Line: 779 
    14491495Stack unwinding: <<beginning of stack>> 
    1450 16:16:22: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     149620:25:46: Error in material Folyoso/Phong at line 32 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14511497 
    14521498----------------------------------- 
     
    14591505Line: 779 
    14601506Stack unwinding: <<beginning of stack>> 
    1461 16:16:22: An exception has been thrown! 
     150720:25:46: An exception has been thrown! 
    14621508 
    14631509----------------------------------- 
     
    14701516Line: 779 
    14711517Stack unwinding: <<beginning of stack>> 
    1472 16:16:22: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     151820:25:46: Error in material Folyoso/Phong at line 33 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14731519 
    14741520----------------------------------- 
     
    14811527Line: 779 
    14821528Stack unwinding: <<beginning of stack>> 
    1483 16:16:22: An exception has been thrown! 
     152920:25:46: An exception has been thrown! 
    14841530 
    14851531----------------------------------- 
     
    14921538Line: 779 
    14931539Stack unwinding: <<beginning of stack>> 
    1494 16:16:22: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     154020:25:46: Error in material Folyoso/Phong at line 34 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    14951541 
    14961542----------------------------------- 
     
    15031549Line: 779 
    15041550Stack unwinding: <<beginning of stack>> 
    1505 16:16:22: An exception has been thrown! 
     155120:25:46: An exception has been thrown! 
    15061552 
    15071553----------------------------------- 
     
    15141560Line: 779 
    15151561Stack unwinding: <<beginning of stack>> 
    1516 16:16:22: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     156220:25:46: Error in material Folyoso/PhongPlaneReflect at line 76 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15171563 
    15181564----------------------------------- 
     
    15251571Line: 779 
    15261572Stack unwinding: <<beginning of stack>> 
    1527 16:16:22: An exception has been thrown! 
     157320:25:46: An exception has been thrown! 
    15281574 
    15291575----------------------------------- 
     
    15361582Line: 779 
    15371583Stack unwinding: <<beginning of stack>> 
    1538 16:16:22: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     158420:25:46: Error in material Folyoso/PhongPlaneReflect at line 77 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15391585 
    15401586----------------------------------- 
     
    15471593Line: 779 
    15481594Stack unwinding: <<beginning of stack>> 
    1549 16:16:22: An exception has been thrown! 
     159520:25:46: An exception has been thrown! 
    15501596 
    15511597----------------------------------- 
     
    15581604Line: 779 
    15591605Stack unwinding: <<beginning of stack>> 
    1560 16:16:22: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     160620:25:46: Error in material Folyoso/PhongPlaneReflect at line 78 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15611607 
    15621608----------------------------------- 
     
    15691615Line: 779 
    15701616Stack unwinding: <<beginning of stack>> 
    1571 16:16:22: An exception has been thrown! 
     161720:25:46: An exception has been thrown! 
    15721618 
    15731619----------------------------------- 
     
    15801626Line: 779 
    15811627Stack unwinding: <<beginning of stack>> 
    1582 16:16:22: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     162820:25:46: Error in material Folyoso/PhongPlaneReflect at line 79 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    15831629 
    15841630----------------------------------- 
     
    15911637Line: 779 
    15921638Stack unwinding: <<beginning of stack>> 
    1593 16:16:22: An exception has been thrown! 
     163920:25:46: An exception has been thrown! 
    15941640 
    15951641----------------------------------- 
     
    16021648Line: 779 
    16031649Stack unwinding: <<beginning of stack>> 
    1604 16:16:22: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     165020:25:46: Error in material Folyoso/PhongPlaneReflect at line 85 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16051651 
    16061652----------------------------------- 
     
    16131659Line: 779 
    16141660Stack unwinding: <<beginning of stack>> 
    1615 16:16:22: An exception has been thrown! 
     166120:25:46: An exception has been thrown! 
    16161662 
    16171663----------------------------------- 
     
    16241670Line: 779 
    16251671Stack unwinding: <<beginning of stack>> 
    1626 16:16:22: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     167220:25:46: Error in material Folyoso/PhongPlaneReflect at line 86 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16271673 
    16281674----------------------------------- 
     
    16351681Line: 779 
    16361682Stack unwinding: <<beginning of stack>> 
    1637 16:16:22: An exception has been thrown! 
     168320:25:46: An exception has been thrown! 
    16381684 
    16391685----------------------------------- 
     
    16461692Line: 779 
    16471693Stack unwinding: <<beginning of stack>> 
    1648 16:16:22: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     169420:25:46: Error in material Folyoso/PhongPlaneReflect at line 87 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16491695 
    16501696----------------------------------- 
     
    16571703Line: 779 
    16581704Stack unwinding: <<beginning of stack>> 
    1659 16:16:22: An exception has been thrown! 
     170520:25:46: An exception has been thrown! 
    16601706 
    16611707----------------------------------- 
     
    16681714Line: 779 
    16691715Stack unwinding: <<beginning of stack>> 
    1670 16:16:22: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
     171620:25:46: Error in material Folyoso/PhongPlaneReflect at line 88 of uvegfolyoso2.material: Invalid param_named_auto attribute - An exception has been thrown! 
    16711717 
    16721718----------------------------------- 
     
    16791725Line: 779 
    16801726Stack unwinding: <<beginning of stack>> 
    1681 16:16:22: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1682 16:16:22: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
    1683 16:16:22: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1684 16:16:22: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1685 16:16:22: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
    1686 16:16:22: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
    1687 16:16:22: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1688 16:16:22: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
    1689 16:16:22: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
    1690 16:16:22: Parsing script X3D.material 
    1691 16:16:22: Parsing script GameTools_Glow.compositor 
    1692 16:16:22: Parsing script GameTools_ToneMap.compositor 
    1693 16:16:22: Parsing script sample.fontdef 
    1694 16:16:22: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
    1695 16:16:22: Parsing script GameTools.particle 
    1696 16:16:22: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
    1697 16:16:22: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
    1698 16:16:22: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
    1699 16:16:22: Parsing script Compositor.overlay 
    1700 16:16:22: Parsing script DP3.overlay 
    1701 16:16:22: Parsing script Example-CubeMapping.overlay 
    1702 16:16:22: Parsing script Example-DynTex.overlay 
    1703 16:16:22: Parsing script Example-Water.overlay 
    1704 16:16:22: Parsing script FullScreen.overlay 
    1705 16:16:22: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
    1706 16:16:22: Parsing script Shadows.overlay 
    1707 16:16:22: Finished parsing scripts for resource group General 
    1708 16:16:22: Parsing scripts for resource group Internal 
    1709 16:16:22: Finished parsing scripts for resource group Internal 
    1710 16:16:22: Mesh: Loading teapot.mesh. 
    1711 16:16:22: 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? 
    1712 16:16:22: Mesh: Loading difflab.mesh. 
    1713 16:16:22: Texture: screen.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1714 16:16:22: Texture: laborwall.jpg: Loading 1 faces(PF_B8G8R8,1024x1024x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,1024x1024x1. 
    1715 16:16:22: Texture: striped.jpg: Loading 1 faces(PF_B8G8R8,128x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,128x256x1. 
    1716 16:16:22: Texture: lamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1717 16:16:22: Texture: bluelamp.jpg: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
    1718 16:16:22: 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 
    1719 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1720 16:16:22: 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 
    1721 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1722 16:16:22: 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 
    1723 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1724 16:16:22: 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 
    1725 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1726 16:16:22: 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 
    1727 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1728 16:16:22: 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 
    1729 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1730 16:16:22: 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. 
    1731 16:16:22: 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 
    1732 16:16:22: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1733 16:16:22: 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 
    1734 16:16:22: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1735 16:16:22: 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 
    1736 16:16:22: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1737 16:16:22: 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 
    1738 16:16:22: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1739 16:16:22: 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 
    1740 16:16:22: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1741 16:16:22: 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 
    1742 16:16:22: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1743 16:16:22: 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. 
    1744 16:16:22: 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 
    1745 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1746 16:16:22: 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 
    1747 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1748 16:16:22: 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 
    1749 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1750 16:16:22: 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 
    1751 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1752 16:16:22: 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 
    1753 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1754 16:16:22: 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 
    1755 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1756 16:16:22: 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. 
    1757 16:16:22: 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 
    1758 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1759 16:16:22: 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 
    1760 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1761 16:16:22: 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 
    1762 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1763 16:16:22: 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 
    1764 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1765 16:16:22: 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 
    1766 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1767 16:16:22: 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 
    1768 16:16:22: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
    1769 16:16:22: 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. 
    1770 16:16:22: Win32Input8: DirectInput Activation Starts 
    1771 16:16:22: Win32Input8: Establishing keyboard input. 
    1772 16:16:22: Win32Input8: Keyboard input established. 
    1773 16:16:22: Win32Input8: Initializing mouse input in immediate mode. 
    1774 16:16:22: Win32Input8: Mouse input in immediate mode initialized. 
    1775 16:16:22: Win32Input8: DirectInput OK. 
    1776 16:16:22: 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 
    1777 16:16:22: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1778 16:16:22: 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 
    1779 16:16:22: Viewport for camera 'MainBlueLightDEPTH_SHADOW_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 512 H: 512 
    1780 16:16:22: 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 
    1781 16:16:22: Viewport for camera 'LIGHT_FOCUSING_MAP_CAMERA', actual dimensions L: 0 T: 0 W: 32 H: 32 
    1782 16:16:22: 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 
    1783 16:16:22: Viewport for camera 'PHASE_TEXTURE_CAMERA', actual dimensions L: 0 T: 0 W: 256 H: 256 
    1784 16:16:22: 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. 
    1785 16:16:22: 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. 
    1786 16:17:00: Unregistering ResourceManager for type BspLevel 
    1787 16:17:00: Render Target 'rtt/42860096' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1788 16:17:00: Render Target 'rtt/42859744' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1789 16:17:00: Render Target 'rtt/42859392' Average FPS: 6.47594 Best FPS: 7.54006 Worst FPS: 4.02901 
    1790 16:17:00: Render Target 'rtt/42793440' Average FPS: 6.47594 Best FPS: 7.54006 Worst FPS: 4.02901 
    1791 16:17:00: Render Target 'rtt/3266144' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1792 16:17:00: Render Target 'rtt/3266208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1793 16:17:00: Render Target 'rtt/3266272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1794 16:17:00: Render Target 'rtt/3266336' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1795 16:17:00: Render Target 'rtt/3266400' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1796 16:17:00: Render Target 'rtt/3266464' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1797 16:17:00: Render Target 'rtt/3264768' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1798 16:17:00: Render Target 'rtt/3264832' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1799 16:17:00: Render Target 'rtt/3264896' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1800 16:17:00: Render Target 'rtt/3264960' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1801 16:17:00: Render Target 'rtt/3265024' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1802 16:17:00: Render Target 'rtt/3265088' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1803 16:17:00: Render Target 'rtt/3263424' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1804 16:17:00: Render Target 'rtt/3263488' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1805 16:17:00: Render Target 'rtt/3263552' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1806 16:17:00: Render Target 'rtt/3263616' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1807 16:17:00: Render Target 'rtt/3263680' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1808 16:17:00: Render Target 'rtt/3263744' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1809 16:17:00: Render Target 'rtt/3262144' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1810 16:17:00: Render Target 'rtt/3262208' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1811 16:17:00: Render Target 'rtt/3262272' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1812 16:17:00: Render Target 'rtt/3262336' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1813 16:17:00: Render Target 'rtt/3262400' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1814 16:17:00: Render Target 'rtt/3262464' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
    1815 16:17:00: *-*-* OGRE Shutdown 
    1816 16:17:00: Unregistering ResourceManager for type Compositor 
    1817 16:17:00: Unregistering ResourceManager for type Font 
    1818 16:17:00: Unregistering ResourceManager for type Skeleton 
    1819 16:17:00: Unregistering ResourceManager for type Mesh 
    1820 16:17:00: Unregistering ResourceManager for type HighLevelGpuProgram 
    1821 16:17:00: Unloading library .\Plugin_CgProgramManager 
    1822 16:17:00: Unloading library .\Plugin_OctreeSceneManager 
    1823 16:17:00: Unloading library .\Plugin_BSPSceneManager 
    1824 16:17:00: Unloading library .\Plugin_ParticleFX 
    1825 16:17:00: Render Target 'OGRE Render Window' Average FPS: 6.47496 Best FPS: 7.36648 Worst FPS: 4.02901 
    1826 16:17:00: D3D9 : Shutting down cleanly. 
    1827 16:17:00: Unregistering ResourceManager for type Texture 
    1828 16:17:00: Unregistering ResourceManager for type GpuProgram 
    1829 16:17:00: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
    1830 16:17:00: Unloading library .\RenderSystem_Direct3D9 
    1831 16:17:00: Unregistering ResourceManager for type Material 
    1832 16:17:00: Unloading library OgrePlatform.dll 
     172720:25:46: Error in material uvegfolyoso_talaj at line 118 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     172820:25:46: Error in material uvegfolyoso_talaj at line 119 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.36774 
     172920:25:46: Error in material uvegfolyoso_talaj at line 120 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     173020:25:46: Error in material uvegfolyoso_teto at line 138 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     173120:25:46: Error in material uvegfolyoso_teto at line 139 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.237 
     173220:25:46: Error in material uvegfolyoso_teto at line 140 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.51282 
     173320:25:46: Error in material oszlop at line 158 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     173420:25:46: Error in material oszlop at line 159 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.94018 
     173520:25:46: Error in material oszlop at line 160 of uvegfolyoso2.material: Invalid param_named attribute - unrecognised parameter type 0.0 
     173620:25:46: Parsing script X3D.material 
     173720:25:46: Parsing script GameTools_Glow.compositor 
     173820:25:46: Parsing script GameTools_ToneMap.compositor 
     173920:25:46: Parsing script sample.fontdef 
     174020:25:46: Bad attribute line: glyph             0.152344        0.125   0.160156        0.1875 in font Ogre 
     174120:25:46: Parsing script GameTools.particle 
     174220:25:46: Bad particle system attribute line: 'billboard_type  point' in GameTools/DemoParticle1 (tried renderer) 
     174320:25:46: Bad particle system attribute line: 'billboard_type  point' in GameTools/Big (tried renderer) 
     174420:25:46: Bad particle system attribute line: 'billboard_type  point' in GameTools/Little (tried renderer) 
     174520:25:46: Parsing script Compositor.overlay 
     174620:25:46: Parsing script DP3.overlay 
     174720:25:46: Parsing script Example-CubeMapping.overlay 
     174820:25:46: Parsing script Example-DynTex.overlay 
     174920:25:46: Parsing script Example-Water.overlay 
     175020:25:46: Parsing script FullScreen.overlay 
     175120:25:46: Texture: flare.png: Loading 1 faces(PF_B8G8R8,256x256x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,256x256x1. 
     175220:25:46: Parsing script Shadows.overlay 
     175320:25:46: Finished parsing scripts for resource group General 
     175420:25:46: Parsing scripts for resource group Internal 
     175520:25:46: Finished parsing scripts for resource group Internal 
     175620:25:46: Mesh: Loading teapot.mesh. 
     175720:25:46: 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? 
     175820:25:46: Mesh: Loading colorcube.mesh. 
     175920:25:46: Texture: roomc.PNG: Loading 1 faces(PF_B8G8R8,512x512x1) with  hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1. 
     176020:25:46: Creating viewport on target 'rtt/3171264', 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 
     176120:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176220:25:46: Creating viewport on target 'rtt/3201280', 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 
     176320:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176420:25:46: Creating viewport on target 'rtt/3185376', 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 
     176520:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176620:25:46: Creating viewport on target 'rtt/3185440', 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 
     176720:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     176820:25:46: Creating viewport on target 'rtt/3185504', 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 
     176920:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     177020:25:46: Creating viewport on target 'rtt/3185568', 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 
     177120:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     177220:25:46: 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. 
     177320:25:46: Creating viewport on target 'rtt/3186432', 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 
     177420:25:46: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     177520:25:46: Creating viewport on target 'rtt/3186496', 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 
     177620:25:46: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     177720:25:46: Creating viewport on target 'rtt/3186560', 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 
     177820:25:46: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     177920:25:46: Creating viewport on target 'rtt/3186624', 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 
     178020:25:46: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     178120:25:46: Creating viewport on target 'rtt/3186688', 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 
     178220:25:46: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     178320:25:46: Creating viewport on target 'rtt/3186752', 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 
     178420:25:46: Viewport for camera 'object_SE_0_DISTANCECUBEMAPCUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     178520:25:46: 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. 
     178620:25:46: Creating viewport on target 'rtt/3187776', 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 
     178720:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     178820:25:46: Creating viewport on target 'rtt/3187840', 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 
     178920:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     179020:25:46: Creating viewport on target 'rtt/3187904', 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 
     179120:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     179220:25:46: Creating viewport on target 'rtt/3187968', 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 
     179320:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     179420:25:46: Creating viewport on target 'rtt/3188032', 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 
     179520:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     179620:25:46: Creating viewport on target 'rtt/3188096', 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 
     179720:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L1CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     179820:25:46: 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. 
     179920:25:46: Creating viewport on target 'rtt/3242592', 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 
     180020:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_0_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     180120:25:46: Creating viewport on target 'rtt/3242656', 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 
     180220:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_1_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     180320:25:46: Creating viewport on target 'rtt/3242720', 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 
     180420:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_2_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     180520:25:46: Creating viewport on target 'rtt/3242784', 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 
     180620:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_3_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     180720:25:46: Creating viewport on target 'rtt/3242848', 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 
     180820:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_4_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     180920:25:46: Creating viewport on target 'rtt/3242912', 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 
     181020:25:46: Viewport for camera 'object_SE_0_COLORCUBEMAP_L2CUBEMAPFACE_5_CAMERA', actual dimensions L: 0 T: 0 W: 1024 H: 1024 
     181120:25:46: 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. 
     181220:25:46: Win32Input8: DirectInput Activation Starts 
     181320:25:46: Win32Input8: Establishing keyboard input. 
     181420:25:46: Win32Input8: Keyboard input established. 
     181520:25:46: Win32Input8: Initializing mouse input in immediate mode. 
     181620:25:46: Win32Input8: Mouse input in immediate mode initialized. 
     181720:25:46: Win32Input8: DirectInput OK. 
     181820:26:00: Unregistering ResourceManager for type BspLevel 
     181920:26:00: Render Target 'rtt/3242592' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182020:26:00: Render Target 'rtt/3242656' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182120:26:00: Render Target 'rtt/3242720' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182220:26:00: Render Target 'rtt/3242784' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182320:26:00: Render Target 'rtt/3242848' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182420:26:00: Render Target 'rtt/3242912' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182520:26:00: Render Target 'rtt/3187776' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182620:26:00: Render Target 'rtt/3187840' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182720:26:00: Render Target 'rtt/3187904' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182820:26:00: Render Target 'rtt/3187968' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     182920:26:00: Render Target 'rtt/3188032' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183020:26:00: Render Target 'rtt/3188096' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183120:26:00: Render Target 'rtt/3186432' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183220:26:00: Render Target 'rtt/3186496' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183320:26:00: Render Target 'rtt/3186560' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183420:26:00: Render Target 'rtt/3186624' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183520:26:00: Render Target 'rtt/3186688' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183620:26:00: Render Target 'rtt/3186752' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183720:26:00: Render Target 'rtt/3171264' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183820:26:00: Render Target 'rtt/3201280' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     183920:26:00: Render Target 'rtt/3185376' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     184020:26:00: Render Target 'rtt/3185440' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     184120:26:00: Render Target 'rtt/3185504' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     184220:26:00: Render Target 'rtt/3185568' Average FPS: 0 Best FPS: 0 Worst FPS: 999 
     184320:26:00: *-*-* OGRE Shutdown 
     184420:26:00: Unregistering ResourceManager for type Compositor 
     184520:26:00: Unregistering ResourceManager for type Font 
     184620:26:00: Unregistering ResourceManager for type Skeleton 
     184720:26:00: Unregistering ResourceManager for type Mesh 
     184820:26:00: Unregistering ResourceManager for type HighLevelGpuProgram 
     184920:26:00: Unloading library .\Plugin_CgProgramManager 
     185020:26:00: Unloading library .\Plugin_OctreeSceneManager 
     185120:26:00: Unloading library .\Plugin_BSPSceneManager 
     185220:26:00: Unloading library .\Plugin_ParticleFX 
     185320:26:00: Render Target 'OGRE Render Window' Average FPS: 1.28861 Best FPS: 2.00803 Worst FPS: 0.886918 
     185420:26:00: D3D9 : Shutting down cleanly. 
     185520:26:00: Unregistering ResourceManager for type Texture 
     185620:26:00: Unregistering ResourceManager for type GpuProgram 
     185720:26:00: D3D9 : Direct3D9 Rendering Subsystem destroyed. 
     185820:26:00: Unloading library .\RenderSystem_Direct3D9 
     185920:26:00: Unregistering ResourceManager for type Material 
     186020:26:00: Unloading library OgrePlatform.dll 
  • GTP/trunk/App/Demos/Illum/Ogre/bin/Release/ogre.cfg

    r1862 r1863  
    55Anti aliasing=Level 4 
    66Floating-point mode=Fastest 
    7 Full Screen=Yes 
    8 Rendering Device=NVIDIA GeForce 6800 GT 
     7Full Screen=No 
     8Rendering Device=NVIDIA GeForce 7950 GX2 
    99VSync=No 
    1010Video Mode=800 x 600 @ 32-bit colour 
  • GTP/trunk/App/Demos/Illum/Ogre/src/ReflectionTest/include/ReflectionTest.h

    r1862 r1863  
    404404        SceneNode* rootNode = mSceneMgr->getRootSceneNode(); 
    405405                 
    406                 mCamera->setPosition(6.564,4.328,0.059); 
    407                 mCamera->lookAt(Vector3(0.4,0.16,0.25)); 
    408                  
    409                 Entity* object = mSceneMgr->createEntity("object", "teapot.mesh"); 
     406                bool teapot = true; 
     407                //mCamera->getParentSceneNode()->translate(Vector3(6.564,4.328,0.059)); 
     408                //mCamera->setPosition(4.0,4.2,-3.5); 
     409                mCamera->setPosition(7.0,2.6,-0.5); 
     410                mCamera->lookAt(Vector3(1.0, 0.0,0.6)); 
     411                Entity* object; 
     412 
     413                if(teapot) 
     414                 object = mSceneMgr->createEntity("object", "teapot.mesh"); 
     415                else 
     416                 object = mSceneMgr->createEntity("object", "sphere.mesh"); 
    410417                object->setMaterialName("MetalTeapotMultipleBounce"); 
    411418                objectNode = rootNode->createChildSceneNode(); 
    412419                objectNode->attachObject(object); 
    413                 //objectNode->scale(0.5,0.5,0.5); 
    414                 objectNode->scale(2.7,2.7,2.7); 
    415                 objectNode->setPosition(0,0.7,0.0); 
     420 
     421                if(teapot) 
     422                { 
     423                  objectNode->scale(2.7,2.7,2.7); 
     424                  objectNode->setPosition(0,0.7,0.0); 
     425                } 
     426                else 
     427                { 
     428                  objectNode->scale(0.027,0.027,0.027);          
     429                  objectNode->setPosition(1,0.0,1.0); 
     430                } 
     431 
    416432                objectNode->_updateBounds(); 
    417433 
Note: See TracChangeset for help on using the changeset viewer.