[solved] Execption when trying to create EventHandler

ZacharyH

22-06-2006 15:49:32

The cause of the problem below was that I was tring to create the event handler while inside a C# dialog box form while it was being displayed. To fix this problem, I created the event handler outside of that form.


I'm getting an exception "External component has thrown an exception" when trying to create the event handler. I can still render to the screen, I just can't setup the event handler.

In addition to what the solution to this problem is, is there a way to set things up so that I can single step through the C++ OGRE code when I call it from C#?

The code that causes the exception is:

eventHandler = new OgreDotNet.EventHandler (root, renderWindow);

The log at the time of the exception is:

09:23:07: Creating resource group General
09:23:07: Creating resource group Internal
09:23:07: Creating resource group Autodetect
09:23:07: Registering ResourceManager for type Material
09:23:07: Registering ResourceManager for type Mesh
09:23:07: Registering ResourceManager for type Skeleton
09:23:07: MovableObjectFactory for type 'ParticleSystem' registered.
09:23:07: Loading library OgrePlatform_d.dll
09:23:07: OverlayElementFactory for type Panel registered.
09:23:07: OverlayElementFactory for type BorderPanel registered.
09:23:07: OverlayElementFactory for type TextArea registered.
09:23:07: Registering ResourceManager for type Font
09:23:07: ArchiveFactory for archive type FileSystem registered.
09:23:07: ArchiveFactory for archive type Zip registered.
09:23:07: DevIL version: Developer's Image Library (DevIL) 1.6.7 Nov 9 2005
09:23:07: 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
09:23:07: Registering ResourceManager for type HighLevelGpuProgram
09:23:07: Registering ResourceManager for type Compositor
09:23:07: MovableObjectFactory for type 'Entity' registered.
09:23:07: MovableObjectFactory for type 'Light' registered.
09:23:07: MovableObjectFactory for type 'BillboardSet' registered.
09:23:07: MovableObjectFactory for type 'ManualObject' registered.
09:23:07: MovableObjectFactory for type 'BillboardChain' registered.
09:23:07: MovableObjectFactory for type 'RibbonTrail' registered.
09:23:07: Loading library .\RenderSystem_Direct3D9
09:23:07: D3D9 : Direct3D9 Rendering Subsystem created.
09:23:07: D3D9: Driver Detection Starts
09:23:07: D3D9: Driver Detection Ends
09:23:07: Loading library .\RenderSystem_GL
09:23:07: OpenGL Rendering Subsystem created.
09:23:07: Loading library .\Plugin_ParticleFX
09:23:07: Particle Emitter Type 'Point' registered
09:23:07: Particle Emitter Type 'Box' registered
09:23:07: Particle Emitter Type 'Ellipsoid' registered
09:23:07: Particle Emitter Type 'Cylinder' registered
09:23:07: Particle Emitter Type 'Ring' registered
09:23:07: Particle Emitter Type 'HollowEllipsoid' registered
09:23:07: Particle Affector Type 'LinearForce' registered
09:23:07: Particle Affector Type 'ColourFader' registered
09:23:07: Particle Affector Type 'ColourFader2' registered
09:23:07: Particle Affector Type 'ColourImage' registered
09:23:07: Particle Affector Type 'ColourInterpolator' registered
09:23:07: Particle Affector Type 'Scaler' registered
09:23:07: Particle Affector Type 'Rotator' registered
09:23:07: Particle Affector Type 'DirectionRandomiser' registered
09:23:07: Particle Affector Type 'DeflectorPlane' registered
09:23:07: Loading library .\Plugin_BSPSceneManager
09:23:07: Registering ResourceManager for type BspLevel
09:23:07: *-*-* OGRE Initialising
09:23:07: *-*-* Version 1.2.0 (Dagon)
09:23:07: Creating resource group Bootstrap
09:23:07: Added resource location 'media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'
09:23:07: Added resource location 'media' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/fonts' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/materials/programs' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/materials/scripts' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/materials/textures' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/models' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/overlays' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/particle' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/gui' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/DeferredShadingMedia' of type 'FileSystem' to resource group 'General'
09:23:07: Added resource location 'media/packs/cubemap.zip' of type 'Zip' to resource group 'General'
09:23:07: Added resource location 'media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'
09:23:07: Added resource location 'media/packs/dragon.zip' of type 'Zip' to resource group 'General'
09:23:07: Added resource location 'media/packs/fresneldemo.zip' of type 'Zip' to resource group 'General'
09:23:07: Added resource location 'media/packs/ogretestmap.zip' of type 'Zip' to resource group 'General'
09:23:07: Added resource location 'media/packs/skybox.zip' of type 'Zip' to resource group 'General'
09:23:07: D3D9 : RenderSystem Option: Allow NVPerfHUD = No
09:23:07: D3D9 : RenderSystem Option: Anti aliasing = None
09:23:07: D3D9 : RenderSystem Option: Floating-point mode = Fastest
09:23:07: D3D9 : RenderSystem Option: Full Screen = No
09:23:07: D3D9 : RenderSystem Option: Rendering Device = ALL-IN-WONDER RADEON 8500DV
09:23:07: D3D9 : RenderSystem Option: VSync = No
09:23:07: D3D9 : RenderSystem Option: Video Mode = 800 x 600 @ 32-bit colour
09:23:10: D3D9 : Subsystem Initialising
09:23:10: ***************************************
09:23:10: *** D3D9 : Subsystem Initialised OK ***
09:23:10: ***************************************
09:23:10: ResourceBackgroundQueue - threading disabled
09:23:10: D3D9RenderSystem::createRenderWindow "", 784x496 windowed miscParams: externalWindowHandle=13179204
09:23:10: D3D9 : Created D3D9 Rendering Window '' : 784x496, 32bpp
09:23:10: D3D9 : WARNING - disabling VSync in windowed mode can cause timing issues at lower frame rates, turn VSync on if you observe this problem.
09:23:10: Registering ResourceManager for type Texture
09:23:10: Registering ResourceManager for type GpuProgram
09:23:10: RenderSystem capabilities
09:23:10: -------------------------
09:23:10: * Hardware generation of mipmaps: yes
09:23:10: * Texture blending: yes
09:23:10: * Anisotropic texture filtering: yes
09:23:10: * Dot product texture operation: yes
09:23:10: * Cube mapping: yes
09:23:10: * Hardware stencil buffer: yes
09:23:10: - Stencil depth: 8
09:23:10: - Two sided stencil support: no
09:23:10: - Wrap stencil values: yes
09:23:10: * Hardware vertex / index buffers: yes
09:23:10: * Vertex programs: yes
09:23:10: - Max vertex program version: vs_1_1
09:23:10: * Fragment programs: yes
09:23:10: - Max fragment program version: ps_1_4
09:23:10: * Texture Compression: yes
09:23:10: - DXT: yes
09:23:10: - VTC: no
09:23:10: * Scissor Rectangle: yes
09:23:10: * Hardware Occlusion Query: yes
09:23:10: * User clip planes: yes
09:23:10: * VET_UBYTE4 vertex element type: yes
09:23:10: * Infinite far plane projection: yes
09:23:10: * Hardware render-to-texture: yes
09:23:10: * Floating point textures: no
09:23:10: * Non-power-of-two textures: yes
09:23:10: * Volume textures: yes
09:23:10: * Multiple Render Targets: 1
09:23:10: * Point Sprites: yes
09:23:10: * Extended point parameters: yes
09:23:10: * Max Point Size: 256
09:23:10: Particle Renderer Type 'billboard' registered
09:23:10: Creating viewport on target '', rendering from camera 'Camera0', relative dimensions L: 0.00 T: 0.00 W: 1.00 H: 1.00 ZOrder: 0
09:23:10: Viewport for camera 'Camera0', actual dimensions L: 0 T: 0 W: 784 H: 496
09:23:10: Parsing scripts for resource group Autodetect
09:23:10: Finished parsing scripts for resource group Autodetect
09:23:10: Parsing scripts for resource group Bootstrap
09:23:10: Parsing script OgreCore.material
09:23:10: Parsing script OgreProfiler.material
09:23:10: Parsing script Ogre.fontdef
09:23:10: Parsing script OgreDebugPanel.overlay
09:23:10: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,256x128x1.
09:23:10: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8B8G8R8,256x256x1) with hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,256x256x1.
09:23:10: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8B8G8R8,32x32x1) with hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,32x32x1.
09:23:10: Font BlueHighwayusing texture size 512x512
09:23:10: Info: Freetype returned null for character 127 in font BlueHighway
09:23:10: Info: Freetype returned null for character 128 in font BlueHighway
09:23:10: Info: Freetype returned null for character 129 in font BlueHighway
09:23:10: Info: Freetype returned null for character 130 in font BlueHighway
09:23:10: Info: Freetype returned null for character 131 in font BlueHighway
09:23:10: Info: Freetype returned null for character 132 in font BlueHighway
09:23:10: Info: Freetype returned null for character 133 in font BlueHighway
09:23:10: Info: Freetype returned null for character 134 in font BlueHighway
09:23:10: Info: Freetype returned null for character 135 in font BlueHighway
09:23:10: Info: Freetype returned null for character 136 in font BlueHighway
09:23:10: Info: Freetype returned null for character 137 in font BlueHighway
09:23:10: Info: Freetype returned null for character 138 in font BlueHighway
09:23:10: Info: Freetype returned null for character 139 in font BlueHighway
09:23:10: Info: Freetype returned null for character 140 in font BlueHighway
09:23:10: Info: Freetype returned null for character 141 in font BlueHighway
09:23:10: Info: Freetype returned null for character 142 in font BlueHighway
09:23:10: Info: Freetype returned null for character 143 in font BlueHighway
09:23:10: Info: Freetype returned null for character 144 in font BlueHighway
09:23:10: Info: Freetype returned null for character 145 in font BlueHighway
09:23:10: Info: Freetype returned null for character 146 in font BlueHighway
09:23:10: Info: Freetype returned null for character 147 in font BlueHighway
09:23:10: Info: Freetype returned null for character 148 in font BlueHighway
09:23:10: Info: Freetype returned null for character 149 in font BlueHighway
09:23:10: Info: Freetype returned null for character 150 in font BlueHighway
09:23:10: Info: Freetype returned null for character 151 in font BlueHighway
09:23:10: Info: Freetype returned null for character 152 in font BlueHighway
09:23:10: Info: Freetype returned null for character 153 in font BlueHighway
09:23:10: Info: Freetype returned null for character 154 in font BlueHighway
09:23:10: Info: Freetype returned null for character 155 in font BlueHighway
09:23:10: Info: Freetype returned null for character 156 in font BlueHighway
09:23:10: Info: Freetype returned null for character 157 in font BlueHighway
09:23:10: Info: Freetype returned null for character 158 in font BlueHighway
09:23:10: Info: Freetype returned null for character 159 in font BlueHighway
09:23:10: Info: Freetype returned null for character 160 in font BlueHighway
09:23:10: Texture: BlueHighwayTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with 0 generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.
09:23:10: Texture: ogretext.png: Loading 1 faces(PF_A8B8G8R8,256x128x1) with hardware generated mipmaps from Image. Internal format is PF_A8B8G8R8,256x128x1.
09:23:10: Parsing script OgreLoadingPanel.overlay
09:23:10: Finished parsing scripts for resource group Bootstrap
09:23:10: Parsing scripts for resource group General
09:23:10: Parsing script Examples.program
09:23:10: Error at line 13 of Examples.program: Error in program Ogre/BasicVertexPrograms/AmbientOneTexture parameter entry_point is not valid.
09:23:10: Error at line 13 of Examples.program: Error in program Ogre/BasicVertexPrograms/AmbientOneTexture parameter profiles is not valid.
09:23:10: Error at line 22 of Examples.program: Error in program Ogre/HardwareSkinningOneWeightShadowCaster parameter entry_point is not valid.
09:23:10: Error at line 22 of Examples.program: Error in program Ogre/HardwareSkinningOneWeightShadowCaster parameter profiles is not valid.
09:23:10: Error at line 30 of Examples.program: Error in program Ogre/HardwareSkinningOneWeight parameter entry_point is not valid.
09:23:10: Error at line 30 of Examples.program: Error in program Ogre/HardwareSkinningOneWeight parameter profiles is not valid.
09:23:10: Error at line 38 of Examples.program: Error in program Ogre/HardwareSkinningTwoWeightsShadowCaster parameter entry_point is not valid.
09:23:10: Error at line 38 of Examples.program: Error in program Ogre/HardwareSkinningTwoWeightsShadowCaster parameter profiles is not valid.
09:23:10: Error at line 46 of Examples.program: Error in program Ogre/HardwareSkinningTwoWeights parameter entry_point is not valid.
09:23:10: Error at line 46 of Examples.program: Error in program Ogre/HardwareSkinningTwoWeights parameter profiles is not valid.
09:23:10: Error at line 54 of Examples.program: Error in program Ogre/HardwareSkinningFourWeights parameter entry_point is not valid.
09:23:10: Error at line 54 of Examples.program: Error in program Ogre/HardwareSkinningFourWeights parameter profiles is not valid.
09:23:10: Error at line 68 of Examples.program: Error in program Ogre/HardwareMorphAnimation parameter entry_point is not valid.
09:23:10: Error at line 68 of Examples.program: Error in program Ogre/HardwareMorphAnimation parameter profiles is not valid.
09:23:10: Error at line 82 of Examples.program: Error in program Ogre/HardwarePoseAnimation parameter entry_point is not valid.
09:23:10: Error at line 82 of Examples.program: Error in program Ogre/HardwarePoseAnimation parameter profiles is not valid.
09:23:10: Parsing script StdQuad_vp.program
09:23:10: Error at line 11 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_vp parameter entry_point is not valid.
09:23:10: Error at line 11 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_vp parameter profiles is not valid.
09:23:10: Error at line 23 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_Tex2_vp parameter entry_point is not valid.
09:23:10: Error at line 23 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_Tex2_vp parameter profiles is not valid.
09:23:10: Error at line 35 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_Tex2a_vp parameter entry_point is not valid.
09:23:10: Error at line 35 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_Tex2a_vp parameter profiles is not valid.
09:23:10: Error at line 47 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_Tex3_vp parameter entry_point is not valid.
09:23:10: Error at line 47 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_Tex3_vp parameter profiles is not valid.
09:23:10: Error at line 59 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_Tex4_vp parameter entry_point is not valid.
09:23:10: Error at line 59 of StdQuad_vp.program: Error in program Ogre/Compositor/StdQuad_Tex4_vp parameter profiles is not valid.
09:23:10: Parsing script deferred.glsl.program
09:23:10: Parsing script deferred.hlsl.program
09:23:10: Parsing script deferred_post_debug.glsl.program
09:23:10: Parsing script deferred_post_debug.hlsl.program
09:23:10: Parsing script deferred_post_minilight.glsl.program
09:23:10: Parsing script deferred_post_minilight.hlsl.program
09:23:10: Parsing script deferred_post_multipass.glsl.program
09:23:10: Parsing script deferred_post_multipass.hlsl.program
09:23:10: Parsing script deferred_post_onepass.glsl.program
09:23:10: Parsing script deferred_post_onepass.hlsl.program
09:23:10: Parsing script BlackAndWhite.material
09:23:10: Error at line 6 of BlackAndWhite.material: Error in program Ogre/Compositor/B&W_FP parameter entry_point is not valid.
09:23:10: Error at line 6 of BlackAndWhite.material: Error in program Ogre/Compositor/B&W_FP parameter profiles is not valid.
09:23:10: Parsing script Bloom.material
09:23:10: Parsing script DOF.material
09:23:10: Error at line 6 of DOF.material: Error in program DOF_Blur_ps parameter entry_point is not valid.
09:23:10: Error at line 6 of DOF.material: Error in program DOF_Blur_ps parameter profiles is not valid.
09:23:10: Error at line 13 of DOF.material: Error in program DOF_Blend_ps parameter entry_point is not valid.
09:23:10: Error at line 13 of DOF.material: Error in program DOF_Blend_ps parameter profiles is not valid.
09:23:10: Parsing script Embossed.material
09:23:10: Error at line 6 of Embossed.material: Error in program Ogre/Compositor/Embossed_FP parameter entry_point is not valid.
09:23:10: Error at line 6 of Embossed.material: Error in program Ogre/Compositor/Embossed_FP parameter profiles is not valid.
09:23:10: Parsing script Example-DynTex.material
09:23:10: Parsing script Example-Water.material
09:23:11: Parsing script Example.material
09:23:11: Error at line 183 of Example.material: Error in program Examples/MorningSkyBoxHDRfp parameter entry_point is not valid.
09:23:11: Error at line 183 of Example.material: Error in program Examples/MorningSkyBoxHDRfp parameter profiles is not valid.
09:23:11: Error at line 234 of Example.material: Error in program Examples/MorningCubeMapHDRfp parameter entry_point is not valid.
09:23:11: Error at line 234 of Example.material: Error in program Examples/MorningCubeMapHDRfp parameter profiles is not valid.
09:23:11: Error at line 757 of Example.material: Error in program Examples/GrassWaverVp parameter entry_point is not valid.
09:23:11: Error at line 757 of Example.material: Error in program Examples/GrassWaverVp parameter profiles is not valid.
09:23:11: Parsing script Examples-Advanced.material
09:23:11: Error at line 17 of Examples-Advanced.material: Error in program Ogre/CelShadingVP parameter entry_point is not valid.
09:23:11: Error at line 17 of Examples-Advanced.material: Error in program Ogre/CelShadingVP parameter profiles is not valid.
09:23:11: Error at line 24 of Examples-Advanced.material: Error in program Ogre/CelShadingFP parameter entry_point is not valid.
09:23:11: Error at line 24 of Examples-Advanced.material: Error in program Ogre/CelShadingFP parameter profiles is not valid.
09:23:11: Error at line 82 of Examples-Advanced.material: Error in program Examples/BumpMapVP parameter entry_point is not valid.
09:23:11: Error at line 82 of Examples-Advanced.material: Error in program Examples/BumpMapVP parameter profiles is not valid.
09:23:11: Error at line 90 of Examples-Advanced.material: Error in program Examples/BumpMapFP parameter entry_point is not valid.
09:23:11: Error at line 90 of Examples-Advanced.material: Error in program Examples/BumpMapFP parameter profiles is not valid.
09:23:11: Error at line 98 of Examples-Advanced.material: Error in program Examples/BumpMapVPShadowRcv parameter entry_point is not valid.
09:23:11: Error at line 98 of Examples-Advanced.material: Error in program Examples/BumpMapVPShadowRcv parameter profiles is not valid.
09:23:11: Error at line 105 of Examples-Advanced.material: Error in program Examples/BumpMapFPShadowRcv parameter entry_point is not valid.
09:23:11: Error at line 105 of Examples-Advanced.material: Error in program Examples/BumpMapFPShadowRcv parameter profiles is not valid.
09:23:11: Error at line 114 of Examples-Advanced.material: Error in program Examples/BumpMapVPSpecular parameter entry_point is not valid.
09:23:11: Error at line 114 of Examples-Advanced.material: Error in program Examples/BumpMapVPSpecular parameter profiles is not valid.
09:23:11: Error at line 122 of Examples-Advanced.material: Error in program Examples/BumpMapFPSpecular parameter entry_point is not valid.
09:23:11: Error at line 122 of Examples-Advanced.material: Error in program Examples/BumpMapFPSpecular parameter profiles is not valid.
09:23:11: Error at line 581 of Examples-Advanced.material: Error in program Examples/TexProjectionVP parameter entry_point is not valid.
09:23:11: Error at line 581 of Examples-Advanced.material: Error in program Examples/TexProjectionVP parameter profiles is not valid.
09:23:11: Error at line 589 of Examples-Advanced.material: Error in program Examples/TexProjectionFP parameter entry_point is not valid.
09:23:11: Error at line 589 of Examples-Advanced.material: Error in program Examples/TexProjectionFP parameter profiles is not valid.
09:23:11: Error at line 632 of Examples-Advanced.material: Error in program Examples/FresnelRefractReflectVP parameter entry_point is not valid.
09:23:11: Error at line 632 of Examples-Advanced.material: Error in program Examples/FresnelRefractReflectVP parameter profiles is not valid.
09:23:11: Error at line 640 of Examples-Advanced.material: Error in program Examples/FresnelRefractReflectFP parameter entry_point is not valid.
09:23:11: Error at line 640 of Examples-Advanced.material: Error in program Examples/FresnelRefractReflectFP parameter profiles is not valid.
09:23:11: Parsing script facial.material
09:23:11: Parsing script Glass.material
09:23:11: Error at line 6 of Glass.material: Error in program Ogre/Compositor/GlassFP parameter entry_point is not valid.
09:23:11: Error at line 6 of Glass.material: Error in program Ogre/Compositor/GlassFP parameter profiles is not valid.
09:23:11: Parsing script hdr.material
09:23:11: Parsing script HeatVision.material
09:23:11: Error at line 11 of HeatVision.material: Error in program Fury/HeatVision/HeatCaster_vp parameter entry_point is not valid.
09:23:11: Error at line 11 of HeatVision.material: Error in program Fury/HeatVision/HeatCaster_vp parameter profiles is not valid.
09:23:11: Error at line 18 of HeatVision.material: Error in program Fury/HeatVision/HeatCaster_fp parameter entry_point is not valid.
09:23:11: Error at line 18 of HeatVision.material: Error in program Fury/HeatVision/HeatCaster_fp parameter profiles is not valid.
09:23:11: Error at line 49 of HeatVision.material: Error in program Fury/HeatVision/ColdCaster_vp parameter entry_point is not valid.
09:23:11: Error at line 49 of HeatVision.material: Error in program Fury/HeatVision/ColdCaster_vp parameter profiles is not valid.
09:23:11: Error at line 56 of HeatVision.material: Error in program Fury/HeatVision/ColdCaster_fp parameter entry_point is not valid.
09:23:11: Error at line 56 of HeatVision.material: Error in program Fury/HeatVision/ColdCaster_fp parameter profiles is not valid.
09:23:11: Error at line 92 of HeatVision.material: Error in program Fury/HeatVision/LightToHeat_vp parameter entry_point is not valid.
09:23:11: Error at line 92 of HeatVision.material: Error in program Fury/HeatVision/LightToHeat_vp parameter profiles is not valid.
09:23:11: Error at line 99 of HeatVision.material: Error in program Fury/HeatVision/LightToHeat_fp parameter entry_point is not valid.
09:23:11: Error at line 99 of HeatVision.material: Error in program Fury/HeatVision/LightToHeat_fp parameter profiles is not valid.
09:23:11: Error at line 170 of HeatVision.material: Error in program Fury/HeatVision/Blur_vp parameter entry_point is not valid.
09:23:11: Error at line 170 of HeatVision.material: Error in program Fury/HeatVision/Blur_vp parameter profiles is not valid.
09:23:11: Error at line 177 of HeatVision.material: Error in program Fury/HeatVision/Blur_fp parameter entry_point is not valid.
09:23:11: Error at line 177 of HeatVision.material: Error in program Fury/HeatVision/Blur_fp parameter profiles is not valid.
09:23:11: Parsing script Hurt.material
09:23:11: Parsing script Invert.material
09:23:11: Error at line 6 of Invert.material: Error in program Ogre/Compositor/InvertFP parameter entry_point is not valid.
09:23:11: Error at line 6 of Invert.material: Error in program Ogre/Compositor/InvertFP parameter profiles is not valid.
09:23:11: Parsing script Laplace.material
09:23:11: Error at line 6 of Laplace.material: Error in program Ogre/Compositor/LaplaceFP parameter entry_point is not valid.
09:23:11: Error at line 6 of Laplace.material: Error in program Ogre/Compositor/LaplaceFP parameter profiles is not valid.
09:23:11: Parsing script MotionBlur.material
09:23:11: Error at line 11 of MotionBlur.material: Error in program Ogre/Compositor/Combine_fp parameter entry_point is not valid.
09:23:11: Error at line 11 of MotionBlur.material: Error in program Ogre/Compositor/Combine_fp parameter profiles is not valid.
09:23:11: Parsing script Ocean.material
09:23:11: Error at line 138 of Ocean.material: Error in program Cg/OceanVS parameter entry_point is not valid.
09:23:11: Error at line 138 of Ocean.material: Error in program Cg/OceanVS parameter profiles is not valid.
09:23:11: Error at line 146 of Ocean.material: Error in program Cg/OceanFS parameter entry_point is not valid.
09:23:11: Error at line 146 of Ocean.material: Error in program Cg/OceanFS parameter profiles is not valid.
09:23:11: Error at line 199 of Ocean.material: Error in program Cg/Ocean2VS parameter entry_point is not valid.
09:23:11: Error at line 199 of Ocean.material: Error in program Cg/Ocean2VS parameter profiles is not valid.
09:23:11: Error at line 207 of Ocean.material: Error in program Cg/Ocean2FS parameter entry_point is not valid.
09:23:11: Error at line 207 of Ocean.material: Error in program Cg/Ocean2FS parameter profiles is not valid.
09:23:11: Parsing script OffsetMapping.material
09:23:11: Error at line 7 of OffsetMapping.material: Error in program Examples/OffsetMappingVP parameter entry_point is not valid.
09:23:11: Error at line 7 of OffsetMapping.material: Error in program Examples/OffsetMappingVP parameter profiles is not valid.
09:23:11: Error at line 15 of OffsetMapping.material: Error in program Examples/OffsetMappingFP parameter entry_point is not valid.
09:23:11: Error at line 15 of OffsetMapping.material: Error in program Examples/OffsetMappingFP parameter profiles is not valid.
09:23:11: Parsing script Ogre.material
09:23:11: Parsing script OldMovie.material
09:23:11: Error at line 6 of OldMovie.material: Error in program Ogre/Compositor/OldMovieFP parameter entry_point is not valid.
09:23:11: Error at line 6 of OldMovie.material: Error in program Ogre/Compositor/OldMovieFP parameter profiles is not valid.
09:23:11: Parsing script OldTV.material
09:23:11: Error at line 6 of OldTV.material: Error in program Ogre/Compositor/OldTV_FP parameter entry_point is not valid.
09:23:11: Error at line 6 of OldTV.material: Error in program Ogre/Compositor/OldTV_FP parameter profiles is not valid.
09:23:11: Parsing script Posterize.material
09:23:11: Error at line 6 of Posterize.material: Error in program Ogre/Compositor/PosterizeFP parameter entry_point is not valid.
09:23:11: Error at line 6 of Posterize.material: Error in program Ogre/Compositor/PosterizeFP parameter profiles is not valid.
09:23:11: Parsing script RZR-002.material
09:23:11: Parsing script SharpenEdges.material
09:23:11: Error at line 6 of SharpenEdges.material: Error in program Ogre/Compositor/SharpenEdgesFP parameter entry_point is not valid.
09:23:11: Error at line 6 of SharpenEdges.material: Error in program Ogre/Compositor/SharpenEdgesFP parameter profiles is not valid.
09:23:11: Parsing script smoke.material
09:23:11: Parsing script Tiling.material
09:23:11: Error at line 6 of Tiling.material: Error in program Ogre/Compositor/TilingFP parameter entry_point is not valid.
09:23:11: Error at line 6 of Tiling.material: Error in program Ogre/Compositor/TilingFP parameter profiles is not valid.
09:23:11: Parsing script deferred.material
09:23:11: Parsing script deferreddemo.material
09:23:11: Parsing script deferred_post_debug.material
09:23:11: Parsing script deferred_post_minilight.material
09:23:11: Parsing script deferred_post_multipass.material
09:23:11: Parsing script deferred_post_onepass.material
09:23:11: Parsing script fresnelenviron.material
09:23:11: Parsing script Examples.compositor
09:23:12: Parsing script sample.fontdef
09:23:12: Parsing script Example-Water.particle
09:23:12: Parsing script Example.particle
09:23:12: Parsing script smoke.particle
09:23:12: Parsing script Compositor.overlay
09:23:12: Parsing script DP3.overlay
09:23:12: Parsing script Example-CubeMapping.overlay
09:23:12: Parsing script Example-DynTex.overlay
09:23:12: Parsing script Example-Water.overlay
09:23:12: Parsing script Shadows.overlay
09:23:12: Finished parsing scripts for resource group General
09:23:12: Parsing scripts for resource group Internal
09:23:12: Finished parsing scripts for resource group Internal
09:23:43: Win32Input8: DirectInput Activation Starts
09:23:43: Win32Input8: Establishing keyboard input.