Initializing OIS = crash

Problems building or running the engine, queries about how to use features etc.
Post Reply
belteshazzar
Gnoblar
Posts: 6
Joined: Mon May 28, 2007 3:50 am

Initializing OIS = crash

Post by belteshazzar »

i downloaded the SDK on windows and built a sample application (a blank screen from tutorial 1) under eclipse ... it's all built but when i go to run it, as debug or release it crashes with the last message in the log being:

** Initializing OIS ***

anyone got any ideas? is there a problem with the OIS version or something?
User avatar
SaiCo
Halfling
Posts: 43
Joined: Sat Jun 09, 2007 2:19 pm
Location: Malbork, Poland

Same problem

Post by SaiCo »

Same problem.
Using Codeblocs.
EDIT: might me something with XP SP2 or Core duos.
Anyway I've compiled OIS dll's, and now all works fine
Grizzly1
Gnoblar
Posts: 3
Joined: Sun Aug 31, 2008 12:13 am

Post by Grizzly1 »

Im trying to use the Newton physics pack for OGRE and my program log crashes at **Initializing OIS**

The Newton physics examples work on my computer, but when I try to write my own app it crashes with the above error.

Im new and everything seems too ambiguous to me, can anyone give me more specific details about my problem and solution. For example it is suggested to compile the OIS dll...why I thought it was already compiled, and Im using the same OIS library that I've used for my other small apps.

Also another suggested to do exception handling...what exceptions should be handled?

Final note...I also get this warning during the build Im not sure if it has anything to do with my problem.
LINK : "C:\OgreSDK\ogrenew\OgreNewtApplication\Debug\OgreNewtApplication.exe not found or not built by the last incremental link; performing full link
LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library"

Any help would be greatly appreciated.
paintere
Gnoblar
Posts: 1
Joined: Sat Oct 11, 2008 3:10 pm
x 1

Post by paintere »

in ExampleFrameListener.h Line #106

Code: Select all

win->getCustomAttribute("WINDOW", &windowHnd);
windowHndStr << windowHnd;
pl.insert(std::make_pair(std::string("WINDOW"), windowHndStr.str()));

mInputManager = OIS::InputManager::createInputSystem( pl );
Take a look at the variable windowHnd, it's a size_t.
Suppose that the value of the windowHnd is 0x400, (1024 in decimal)
the string literal of the windowHndStr.str() will be "1024".

However, if your development environment is VC2005/2008(win32 platform), and declared the windowHnd with type HWND, the windowHndStr.str() will be "00000400".

in Win32InputManager.cpp

Code: Select all

void Win32InputManager::_initialize( ParamList &paramList )
{
...
hWnd  = (HWND)strtoul(i->second.c_str(), 0, 10);
The win32inputmanager will receive a hWnd = 0x190, (400 in decimal)
and it throws an exception.
User avatar
Gandalf
Gnoblar
Posts: 13
Joined: Sat May 20, 2006 11:13 pm
Location: Ciudad de la Habana Cuba
Contact:

ogre 1.6 rc1 in ubuntu

Post by Gandalf »

Im working in ubuntu 8.04, recompile smoothly ogre 1.6 rc1 but when i compile and run teh codeblocks ogre sample this end unexpectedly

Here my ogre.log

09:33:52: Creating resource group General
09:33:52: Creating resource group Internal
09:33:52: Creating resource group Autodetect
09:33:52: SceneManagerFactory for type 'DefaultSceneManager' registered.
09:33:52: Registering ResourceManager for type Material
09:33:52: Registering ResourceManager for type Mesh
09:33:52: Registering ResourceManager for type Skeleton
09:33:52: MovableObjectFactory for type 'ParticleSystem' registered.
09:33:52: OverlayElementFactory for type Panel registered.
09:33:52: OverlayElementFactory for type BorderPanel registered.
09:33:52: OverlayElementFactory for type TextArea registered.
09:33:52: Registering ResourceManager for type Font
09:33:52: ArchiveFactory for archive type FileSystem registered.
09:33:52: ArchiveFactory for archive type Zip registered.
09:33:52: FreeImage version: 3.9.3
09:33:52: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
09:33:52: Supported formats: bmp,ico,jpg,jif,jpeg,jpe,jng,koa,iff,lbm,mng,pbm,pbm,pcd,pcx,pgm,pgm,png,ppm,ppm,ras,tga,targa,tif,tiff,wap,wbmp,wbm,psd,cut,xbm,xpm,gif,hdr,g3,sgi
09:33:52: DDS codec registering
09:33:52: Registering ResourceManager for type HighLevelGpuProgram
09:33:52: Registering ResourceManager for type Compositor
09:33:52: MovableObjectFactory for type 'Entity' registered.
09:33:52: MovableObjectFactory for type 'Light' registered.
09:33:52: MovableObjectFactory for type 'BillboardSet' registered.
09:33:52: MovableObjectFactory for type 'ManualObject' registered.
09:33:52: MovableObjectFactory for type 'BillboardChain' registered.
09:33:52: MovableObjectFactory for type 'RibbonTrail' registered.
09:33:52: Loading library /usr/lib/OGRE/RenderSystem_GL
09:33:52: Installing plugin: GL RenderSystem
09:33:52: OpenGL Rendering Subsystem created.
09:33:53: Plugin successfully installed
09:33:53: Loading library /usr/lib/OGRE/Plugin_ParticleFX
09:33:53: Installing plugin: ParticleFX
09:33:53: Particle Emitter Type 'Point' registered
09:33:53: Particle Emitter Type 'Box' registered
09:33:53: Particle Emitter Type 'Ellipsoid' registered
09:33:53: Particle Emitter Type 'Cylinder' registered
09:33:53: Particle Emitter Type 'Ring' registered
09:33:53: Particle Emitter Type 'HollowEllipsoid' registered
09:33:53: Particle Affector Type 'LinearForce' registered
09:33:53: Particle Affector Type 'ColourFader' registered
09:33:53: Particle Affector Type 'ColourFader2' registered
09:33:53: Particle Affector Type 'ColourImage' registered
09:33:53: Particle Affector Type 'ColourInterpolator' registered
09:33:53: Particle Affector Type 'Scaler' registered
09:33:53: Particle Affector Type 'Rotator' registered
09:33:53: Particle Affector Type 'DirectionRandomiser' registered
09:33:53: Particle Affector Type 'DeflectorPlane' registered
09:33:53: Plugin successfully installed
09:33:53: Loading library /usr/lib/OGRE/Plugin_BSPSceneManager
09:33:53: Installing plugin: BSP Scene Manager
09:33:53: Plugin successfully installed
09:33:53: Loading library /usr/lib/OGRE/Plugin_OctreeSceneManager
09:33:53: Installing plugin: Octree & Terrain Scene Manager
09:33:53: Plugin successfully installed
09:33:53: *-*-* OGRE Initialising
09:33:53: *-*-* Version 1.6.0RC1 (Shoggoth)
09:33:53: Creating resource group Bootstrap
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/packs/OgreCore.zip' of type 'Zip' to resource group 'Bootstrap'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/fonts' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/materials/programs' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/materials/scripts' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/materials/textures' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/models' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/overlays' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/particle' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/gui' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/DeferredShadingMedia' of type 'FileSystem' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/packs/cubemap.zip' of type 'Zip' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/packs/cubemapsJS.zip' of type 'Zip' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/packs/dragon.zip' of type 'Zip' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/packs/fresneldemo.zip' of type 'Zip' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/packs/ogretestmap.zip' of type 'Zip' to resource group 'General'
09:33:53: Added resource location '/home/ichigo/Install/ogre/Samples/Media/packs/skybox.zip' of type 'Zip' to resource group 'General'
09:33:54: CPU Identifier & Features
09:33:54: -------------------------
09:33:54: * CPU ID: GenuineIntel: Intel(R) Pentium(R) 4 CPU 3.00GHz
09:33:54: * SSE: yes
09:33:54: * SSE2: yes
09:33:54: * SSE3: yes
09:33:54: * MMX: yes
09:33:54: * MMXEXT: yes
09:33:54: * 3DNOW: no
09:33:54: * 3DNOWEXT: no
09:33:54: * CMOV: yes
09:33:54: * TSC: yes
09:33:54: * FPU: yes
09:33:54: * PRO: yes
09:33:54: * HT: yes
09:33:54: -------------------------
09:33:54: ******************************
*** Starting GLX Subsystem ***
******************************
09:33:54: GLRenderSystem::_createRenderWindow "OGRE Render Window", 800x600 windowed miscParams: FSAA=0 displayFrequency=85 MHz gamma= vsync=Yes
09:33:54: GLXWindow::create used FBConfigID = 37
09:33:54: GL_VERSION = 1.3 Mesa 7.0.3-rc2
09:33:54: GL_VENDOR = Tungsten Graphics, Inc
09:33:54: GL_RENDERER = Mesa DRI Intel(R) 945G 20061017 x86/MMX/SSE2
09:33:54: GL_EXTENSIONS = GL_ARB_depth_texture GL_ARB_fragment_program GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_shadow GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_cull_vertex GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_3DFX_texture_compression_FXT1 GL_APPLE_client_storage GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_NV_vertex_program GL_NV_vertex_program1_1 GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SUN_multi_draw_arrays
09:33:54: Supported GLX extensions: GLX_ARB_get_proc_address GLX_ARB_multisample GLX_EXT_import_context GLX_EXT_visual_info GLX_EXT_visual_rating GLX_MESA_allocate_memory GLX_MESA_copy_sub_buffer GLX_MESA_swap_control GLX_MESA_swap_frame_usage GLX_OML_swap_method GLX_SGI_make_current_read GLX_SGI_swap_control GLX_SGI_video_sync GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_visual_select_group
09:33:54: ***************************
09:33:54: *** GL Renderer Started ***
09:33:54: ***************************
09:33:54: Registering ResourceManager for type GpuProgram
09:33:54: GL: Using framebuffer copy for rendering to textures (worst)
09:33:54: GL: Warning: RenderTexture size is restricted to size of framebuffer. If you are on Linux, consider using GLX instead of SDL.
09:33:54: RenderSystem capabilities
09:33:54: -------------------------
09:33:54: RenderSystem Name: OpenGL Rendering Subsystem
09:33:54: GPU Vendor: unknown
09:33:54: Device Name: Mesa DRI Intel(R) 945G 20061017 x86/MMX/SSE2
09:33:54: Driver Version: 1.3.0.0
09:33:54: * Fixed function pipeline: yes
09:33:54: * Hardware generation of mipmaps: yes
09:33:54: * Texture blending: yes
09:33:54: * Anisotropic texture filtering: yes
09:33:54: * Dot product texture operation: yes
09:33:54: * Cube mapping: yes
09:33:54: * Hardware stencil buffer: yes
09:33:54: - Stencil depth: 8
09:33:54: - Two sided stencil support: no
09:33:54: - Wrap stencil values: yes
09:33:54: * Hardware vertex / index buffers: yes
09:33:54: * Vertex programs: yes
09:33:54: * Fragment programs: yes
09:33:54: * Geometry programs: no
09:33:54: * Supported Shader Profiles: arbfp1 arbvp1
09:33:54: * Texture Compression: yes
09:33:54: - DXT: no
09:33:54: - VTC: no
09:33:54: * Scissor Rectangle: yes
09:33:54: * Hardware Occlusion Query: no
09:33:54: * User clip planes: yes
09:33:54: * VET_UBYTE4 vertex element type: yes
09:33:54: * Infinite far plane projection: yes
09:33:54: * Hardware render-to-texture: no
09:33:54: * Floating point textures: no
09:33:54: * Non-power-of-two textures: no
09:33:54: * Volume textures: yes
09:33:54: * Multiple Render Targets: 1
09:33:54: - With different bit depths: no
09:33:54: * Point Sprites: no
09:33:54: * Extended point parameters: yes
09:33:54: * Max Point Size: 255
09:33:54: * Vertex texture fetch: no
09:33:54: * Render to Vertex Buffer : no
09:33:54: * GL 1.5 without VBO workaround: no
09:33:54: * Frame Buffer objects: no
09:33:54: * Frame Buffer objects (ARB extension): no
09:33:54: * Frame Buffer objects (ATI extension): no
09:33:54: * PBuffer suppport: no
09:33:54: * GL 1.5 without HW-occlusion workaround: no
09:33:54: Registering ResourceManager for type Texture
09:33:54: ResourceBackgroundQueue - threading disabled
09:33:54: Particle Renderer Type 'billboard' registered
09:33:54: SceneManagerFactory for type 'BspSceneManager' registered.
09:33:54: Registering ResourceManager for type BspLevel
09:33:54: SceneManagerFactory for type 'OctreeSceneManager' registered.
09:33:54: SceneManagerFactory for type 'TerrainSceneManager' registered.
09:33:54: Parsing scripts for resource group Autodetect
09:33:54: Finished parsing scripts for resource group Autodetect
09:33:54: Parsing scripts for resource group Bootstrap
09:33:54: Parsing script OgreCore.material
09:33:54: Parsing script OgreProfiler.material
09:33:54: Parsing script Ogre.fontdef
09:33:54: Parsing script OgreDebugPanel.overlay
09:33:54: Texture: New_Ogre_Border_Center.png: Loading 1 faces(PF_A8R8G8B8,256x128x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.
09:33:54: Texture: New_Ogre_Border.png: Loading 1 faces(PF_A8R8G8B8,256x256x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x256x1.
09:33:54: Texture: New_Ogre_Border_Break.png: Loading 1 faces(PF_A8R8G8B8,32x32x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,32x32x1.
09:33:54: Font BlueHighwayusing texture size 512x512
09:33:54: Info: Freetype returned null for character 127 in font BlueHighway
09:33:54: Info: Freetype returned null for character 128 in font BlueHighway
09:33:54: Info: Freetype returned null for character 129 in font BlueHighway
09:33:54: Info: Freetype returned null for character 130 in font BlueHighway
09:33:54: Info: Freetype returned null for character 131 in font BlueHighway
09:33:54: Info: Freetype returned null for character 132 in font BlueHighway
09:33:54: Info: Freetype returned null for character 133 in font BlueHighway
09:33:54: Info: Freetype returned null for character 134 in font BlueHighway
09:33:54: Info: Freetype returned null for character 135 in font BlueHighway
09:33:54: Info: Freetype returned null for character 136 in font BlueHighway
09:33:54: Info: Freetype returned null for character 137 in font BlueHighway
09:33:54: Info: Freetype returned null for character 138 in font BlueHighway
09:33:54: Info: Freetype returned null for character 139 in font BlueHighway
09:33:54: Info: Freetype returned null for character 140 in font BlueHighway
09:33:54: Info: Freetype returned null for character 141 in font BlueHighway
09:33:54: Info: Freetype returned null for character 142 in font BlueHighway
09:33:54: Info: Freetype returned null for character 143 in font BlueHighway
09:33:54: Info: Freetype returned null for character 144 in font BlueHighway
09:33:54: Info: Freetype returned null for character 145 in font BlueHighway
09:33:54: Info: Freetype returned null for character 146 in font BlueHighway
09:33:54: Info: Freetype returned null for character 147 in font BlueHighway
09:33:54: Info: Freetype returned null for character 148 in font BlueHighway
09:33:54: Info: Freetype returned null for character 149 in font BlueHighway
09:33:54: Info: Freetype returned null for character 150 in font BlueHighway
09:33:54: Info: Freetype returned null for character 151 in font BlueHighway
09:33:54: Info: Freetype returned null for character 152 in font BlueHighway
09:33:54: Info: Freetype returned null for character 153 in font BlueHighway
09:33:54: Info: Freetype returned null for character 154 in font BlueHighway
09:33:54: Info: Freetype returned null for character 155 in font BlueHighway
09:33:54: Info: Freetype returned null for character 156 in font BlueHighway
09:33:54: Info: Freetype returned null for character 157 in font BlueHighway
09:33:54: Info: Freetype returned null for character 158 in font BlueHighway
09:33:54: Info: Freetype returned null for character 159 in font BlueHighway
09:33:54: Info: Freetype returned null for character 160 in font BlueHighway
09:33:54: Texture: BlueHighwayTexture: Loading 1 faces(PF_BYTE_LA,512x512x1) with hardware generated mipmaps from Image. Internal format is PF_BYTE_LA,512x512x1.
09:33:54: Texture: ogretext.png: Loading 1 faces(PF_A8R8G8B8,256x128x1) with 5 hardware generated mipmaps from Image. Internal format is PF_A8R8G8B8,256x128x1.
09:33:54: Parsing script OgreLoadingPanel.overlay
09:33:54: Finished parsing scripts for resource group Bootstrap
09:33:54: Parsing scripts for resource group General
09:33:54: Parsing script Examples.program
09:33:54: Parsing script StdQuad_vp.program
09:33:54: Parsing script deferred_post_minilight.program
09:33:54: Parsing script deferred_post_minilight.glsl.program
09:33:54: Parsing script deferred_post_debug.hlsl.program
09:33:54: Parsing script deferred_post_ambient.program
09:33:54: Parsing script deferred_post_multipass.hlsl.program
09:33:54: Parsing script deferred_post_onepass.hlsl.program
09:33:54: Parsing script deferred_post_minilight.hlsl.program
09:33:54: Parsing script deferred.program
09:33:54: Parsing script deferred.glsl.program
09:33:54: Parsing script deferred_post_debug.program
09:33:54: Parsing script deferred.hlsl.program
09:33:54: Parsing script deferred_post_vs.program
09:33:54: Parsing script deferred_post_debug.glsl.program
09:33:54: Parsing script deferred_post_multipass.glsl.program
09:33:54: Parsing script deferred_post_onepass.glsl.program
09:33:54: Parsing script Example-DynTex.material
09:33:54: Parsing script MotionBlur.material
09:33:54: Parsing script facial.material
09:33:55: Parsing script Laplace.material
09:33:55: Parsing script Bloom.material
09:33:55: Parsing script hdr.material
09:33:55: Parsing script MRTtest.material
09:33:55: Parsing script Ogre.material
09:33:55: Parsing script smoke.material
09:33:55: Parsing script Invert.material
09:33:55: Parsing script HeatVision.material
09:33:55: Parsing script instancing.material
09:33:55: Parsing script Hurt.material
09:33:55: Parsing script DepthShadowmap.material
09:33:55: Parsing script Ocean.material
09:33:55: Parsing script Example.material
09:33:55: Parsing script OldMovie.material
09:33:55: Parsing script BlackAndWhite.material
09:33:55: Parsing script CGSwizzle.material
09:33:55: Parsing script Examples-Advanced.material
09:33:55: Compiler error: object unsupported by render system in Examples-Advanced.material(383)
09:33:55: Parsing script GLSLSwizzle.material
09:33:55: Parsing script ASCII.material
09:33:55: Parsing script ParticleGS.material
09:33:55: Parsing script OffsetMapping.material
09:33:55: Compiler error: object unsupported by render system in OffsetMapping.material(18)
09:33:55: Parsing script Dither.material
09:33:55: Parsing script pssm.material
09:33:55: Parsing script Glass.material
09:33:55: Parsing script IsoSurf.material
09:33:55: Parsing script DOF.material
09:33:55: Parsing script ASMSwizzle.material
09:33:55: Compiler error: object unsupported by render system in ASMSwizzle.material(1)
09:33:55: Parsing script Bloom2.material
09:33:55: Parsing script Posterize.material
09:33:55: Parsing script RadialBlur.material
09:33:55: Parsing script Example-Water.material
09:33:55: Parsing script Embossed.material
09:33:55: Parsing script Halftone.material
09:33:55: Parsing script Tiling.material
09:33:55: Parsing script OldTV.material
09:33:55: Parsing script SharpenEdges.material
09:33:55: Parsing script VarianceShadowmap.material
09:33:55: Parsing script NightVision.material
09:33:55: Parsing script RZR-002.material
09:33:55: Parsing script deferred_post_ambient.material
09:33:55: Parsing script deferreddemo.material
09:33:55: Parsing script deferred.material
09:33:55: Parsing script deferred_post_debug.material
09:33:55: Parsing script deferred_post_onepass.material
09:33:55: Parsing script deferred_post_minilight.material
09:33:55: Parsing script deferred_post_multipass.material
09:33:55: Parsing script RomanBath.material
09:33:55: Parsing script smoke.particle
09:33:55: Parsing script Example.particle
09:33:55: Parsing script emitted_emitter.particle
09:33:55: Parsing script Example-Water.particle
09:33:55: Parsing script Examples.compositor
09:33:55: Parsing script deferred.compositor
09:33:55: Parsing script sample.fontdef
09:33:55: Parsing script Example-Water.overlay
09:33:55: Parsing script Shadows.overlay
09:33:55: Parsing script Compositor.overlay
09:33:55: Parsing script Example-DynTex.overlay
09:33:55: Parsing script DP3.overlay
09:33:55: Parsing script Example-CubeMapping.overlay
09:33:55: Finished parsing scripts for resource group General
09:33:55: Parsing scripts for resource group Internal
09:33:55: Finished parsing scripts for resource group Internal
09:33:55: Texture: cloudy_noon_fr.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: Texture: cloudy_noon_bk.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: Texture: cloudy_noon_lf.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: Texture: cloudy_noon_rt.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: Texture: cloudy_noon_up.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: Texture: cloudy_noon_dn.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: Mesh: Loading dragon.mesh.
09:33:55: WARNING: dragon.mesh is an older format ([MeshSerializer_v1.10]); you should upgrade it as soon as possible using the OgreMeshUpgrade tool.
09:33:55: Texture: BODY.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: Texture: HEAD4.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: Texture: LEGS.jpg: Loading 1 faces(PF_R8G8B8,512x512x1) with 5 hardware generated mipmaps from Image. Internal format is PF_X8R8G8B8,512x512x1.
09:33:55: *** Initializing OIS ***

thanks
Haríamos muchas mas cosas si creyéramos que son muchas menos las imposibles
Post Reply