ogre problem when building

Questions, problems and discussion about compiling FreeOrion.

Moderator: Oberlus

Message
Author
tzlaine
Programming Lead Emeritus
Posts: 1092
Joined: Thu Jun 26, 2003 1:33 pm

Re: ogre problem when building

#16 Post by tzlaine »

Ok, that's what I expected, and the Ogre cflags to be cached in your config.cache. I have no idea why they're not making it onto your command line when you build FO. As a workaround, try adding

Code: Select all

env.AppendUnique(CCFLAGS=['-DOGRE_GUI_GLX', '-DOGRE_CONFIG_LITTLE_ENDIAN', '-I/usr/local/include', '-I/usr/local/include/OGRE'])
to your FO SConstruct file.

User avatar
OndrejR
Space Dragon
Posts: 339
Joined: Thu Oct 02, 2008 11:00 pm
Location: Slovakia

Re: ogre problem when building

#17 Post by OndrejR »

Problem with twice -lOgreMain is also in GG.

Code: Select all

g++ -o libGiGiOgre.so -pthread -shared src/Ogre/OgreGUI.os -L/usr/local/lib -lboost_signals-mt -lboost_system-mt -lboost_filesystem-mt -lboost_thread-mt -lGL -lGLU -lz -lfreetype -ljpeg -lpng -ltiff -lOgreMain -lOgreMain
It may be caused by GiGiOgre.pc calling OGRE
tzlaine wrote:Ok, that's what I expected, and the Ogre cflags to be cached in your config.cache. I have no idea why they're not making it onto your command line when you build FO. As a workaround, try adding

Code: Select all

env.AppendUnique(CCFLAGS=['-DOGRE_GUI_GLX', '-DOGRE_CONFIG_LITTLE_ENDIAN', '-I/usr/local/include', '-I/usr/local/include/OGRE'])
to your FO SConstruct file.
This solved problem with serializable error and I now have functional FreeOrion(I also updated linux wiki compile howto), but kroddn and I aren't probably alone. But it may be some cow library.

I also have to change plugin folder in file ogre_plugins.cfg to:

Code: Select all

PluginFolder=/usr/local/lib/OGRE

User avatar
kroddn
Static Linker
Posts: 347
Joined: Thu Jun 28, 2007 10:28 am

Re: ogre problem when building

#18 Post by kroddn »

Update...

I made a OGRE distclean and configured it again, using the following:

Code: Select all

export CC=gcc-4.3
export CXX=g++-4.3

./configure CC=$CC CXX=$CXX \
    --enable-static \
    --enable-shared \
    --disable-ogre-demos \
    --disable-cg

make
make install
Now scons configure runs fine in GG subdirectory, compiling works.

BUT. FreeOrion still does not configure correctly, strange errors again:

Code: Select all

scons: Reading SConscript files ...
Configuring for POSIX system...
Checking for Py_Initialize() in C library python2.5... yes
Checking for pkg-config... yes
Checking for GiGiOgre >= 0.6.0... no
config.log lists:

Code: Select all

scons: Configure: Checking for pkg-config...
pkg-config --atleast-pkgconfig-version 0.15.0
scons: Configure: yes

scons: Configure: Checking for GiGiOgre >= 0.6.0...
pkg-config GiGiOgre --atleast-version 0.6.0
scons: Configure: no
If I run "pkg-config GiGiOgre --atleast-version 0.6.0" manually, it resolves to true:

Code: Select all

$ if pkg-config GiGiOgre --atleast-version 0.6.0 ; then echo 1; fi
1
I do not understand all that :-(

User avatar
OndrejR
Space Dragon
Posts: 339
Joined: Thu Oct 02, 2008 11:00 pm
Location: Slovakia

Re: ogre problem when building

#19 Post by OndrejR »

kroddn:
I compiled Ogre with enabled cg(I installed nvidia-cg-toolkit because I read that without that Ogre3D isn't fully functional). Did you add /usr/local/lib to ld.conf path and did ldconfig after installing GG and Ogre3D? I also have SDL enabled although it maybe is not necessary. What says:

Code: Select all

pkg-config --cflags --libs GiGiOgre
?

User avatar
.Id
Space Squid
Posts: 76
Joined: Fri Feb 06, 2009 6:54 pm

Re: ogre problem when building

#20 Post by .Id »

kroddn wrote:Update...

I made a OGRE distclean and configured it again, using the following:

Code: Select all

export CC=gcc-4.3
export CXX=g++-4.3

./configure CC=$CC CXX=$CXX \
    --enable-static \
    --enable-shared \
    --disable-ogre-demos \
    --disable-cg

make
make install
Now scons configure runs fine in GG subdirectory, compiling works.

BUT. FreeOrion still does not configure correctly, strange errors again:

Code: Select all

scons: Reading SConscript files ...
Configuring for POSIX system...
Checking for Py_Initialize() in C library python2.5... yes
Checking for pkg-config... yes
Checking for GiGiOgre >= 0.6.0... no
config.log lists:

Code: Select all

scons: Configure: Checking for pkg-config...
pkg-config --atleast-pkgconfig-version 0.15.0
scons: Configure: yes

scons: Configure: Checking for GiGiOgre >= 0.6.0...
pkg-config GiGiOgre --atleast-version 0.6.0
scons: Configure: no
If I run "pkg-config GiGiOgre --atleast-version 0.6.0" manually, it resolves to true:

Code: Select all

$ if pkg-config GiGiOgre --atleast-version 0.6.0 ; then echo 1; fi
1
I do not understand all that :-(
These lines from an earlier FreeOrion/SConstruct are missing in current version:

Code: Select all

# We maybe need this env var for pkg-config later
if os.environ.has_key('PKG_CONFIG_PATH'):
    env['ENV']['PKG_CONFIG_PATH'] = os.environ['PKG_CONFIG_PATH']
I'm guessing that's the problem. Since it would explain the discrepancy in build-environment pkg-config result and user-environment result.

Try adding that section back in, maybe just after

Code: Select all

        pkg_config = conf.CheckPkgConfig('0.15.0')
If still no, you could go for explicitly setting PKG_CONFIG_PATH to include where GiGiOgre.pc is installed before running the configure.

User avatar
francys
Space Squid
Posts: 54
Joined: Sat Oct 25, 2008 8:53 pm
Location: Victoria, BC

Re: ogre problem when building

#21 Post by francys »

I'm having the same problem after successfully compiling ogre 1.6.1 from source.

Code: Select all

env.AppendUnique(CCFLAGS=['-DOGRE_GUI_GLX', '-DOGRE_CONFIG_LITTLE_ENDIAN', '-I/usr/local/include', '-I/usr/local/include/OGRE'])
to FO's SConstruct did not help.

User avatar
OndrejR
Space Dragon
Posts: 339
Joined: Thu Oct 02, 2008 11:00 pm
Location: Slovakia

Re: ogre problem when building

#22 Post by OndrejR »

francys: Post your FO config.cache and what says:

Code: Select all

pkg-config --cflags GiGiOgre
and

Code: Select all

pkg-config --cflags OGRE
and

Code: Select all

whereis libGiGiOgre.so

User avatar
francys
Space Squid
Posts: 54
Joined: Sat Oct 25, 2008 8:53 pm
Location: Victoria, BC

Re: ogre problem when building

#23 Post by francys »

Code: Select all

$ pkg-config --cflags GiGiOgre
-DOGRE_GUI_GLX -DOGRE_CONFIG_LITTLE_ENDIAN -I/usr/local/include -I/usr/local/include/OGRE -I/usr/local/include/boost-1_37
$ pkg-config --cflags OGRE
-DOGRE_GUI_GLX -DOGRE_CONFIG_LITTLE_ENDIAN -I/usr/local/include -I/usr/local/include/OGRE
$ whereis libGiGiOgre.so
libGiGiOgre: /usr/local/lib/libGiGiOgre.so

Code: Select all

$ cat config.cache
(dp0
S'CPPFLAGS'
p1
(lp2
sS'CC'
p3
S'gcc'
p4
sS'CPPDEFINES'
p5
(lp6
(lp7
S'_GNU_SOURCE'
p8
aS'1'
p9
aaS'_REENTRANT'
p10
aS'OGRE_GUI_GLX'
p11
aS'OGRE_CONFIG_LITTLE_ENDIAN'
p12
asS'CXXFLAGS'
p13
(lp14
sS'CXX'
p15
S'g++'
p16
sS'CCFLAGS'
p17
(lp18
S'-pthread'
p19
asS'LIBS'
p20
(lp21
S'python2.5'
p22
aS'GiGiOgre'
p23
aS'GiGi'
p24
aS'boost_signals-mt'
p25
aS'boost_system-mt'
p26
aS'boost_filesystem-mt'
p27
aS'boost_thread-mt'
p28
aS'GL'
p29
aS'GLU'
p30
aS'freetype'
p31
aS'z'
p32
aS'jpeg'
p33
aS'png'
p34
aS'tiff'
p35
aS'OgreMain'
p36
aS'boost_serialization-mt'
p37
aS'boost_iostreams-mt'
p38
aS'boost_python-mt'
p39
aS'bulletcollision'
p40
aS'bulletmath'
p41
aS'alut'
p42
aS'openal'
p43
aS'vorbisfile'
p44
aS'vorbis'
p45
aS'm'
p46
aS'ogg'
p47
aS'gvc'
p48
aS'graph'
p49
aS'cdt'
p50
asS'CPPPATH'
p51
(lp52
S'/usr/include/python2.5'
p53
aS'/usr/local/include'
p54
aS'/usr/local/include/OGRE'
p55
aS'/usr/local/include/boost-1_37'
p56
aS'/usr/local/include/LinearMath'
p57
aS'/usr/include/graphviz'
p58
asS'LIBPATH'
p59
(lp60
S'/usr/lib'
p61
aS'/usr/local/lib'
p62
aS'/usr/local/include/boost-1_37/lib'
p63
asS'LINKFLAGS'
p64
(lp65
S'$__RPATH'
p66
ag19
as.

User avatar
OndrejR
Space Dragon
Posts: 339
Joined: Thu Oct 02, 2008 11:00 pm
Location: Slovakia

Re: ogre problem when building

#24 Post by OndrejR »

francys: It is OK. I added it to line 565 in SConstruct. Could you also post your config.log?
Did you run ldconfig after installing GG and OGRE?
What is in file /etc/ld.so.conf?

User avatar
loonycyborg
Compilation Expert
Posts: 219
Joined: Thu Jul 06, 2006 10:30 pm
Location: Russia/Moscow

Re: ogre problem when building

#25 Post by loonycyborg »

Failures in the pkg-config checks are possibly due to recent versions of scons not propagating the environment when running commands in TryAction, ParseConfig, etc. PKG_CONFIG_PATH must be propagated for some of them to work:

Code: Select all

Index: SConstruct
===================================================================
--- SConstruct  (revision 2807)
+++ SConstruct  (working copy)
@@ -161,6 +161,8 @@
         if os.environ.has_key(i) and not env.has_key(i):
             env['ENV'][i] = os.environ[i]

+env["ENV"]["PKG_CONFIG_PATH"] = os.environ.get("PKG_CONFIG_PATH")
+
 if env['release']:
     env['debug'] = 0
In Soviet Russia, forum posts YOU!!

User avatar
francys
Space Squid
Posts: 54
Joined: Sat Oct 25, 2008 8:53 pm
Location: Victoria, BC

Re: ogre problem when building

#26 Post by francys »

Code: Select all

g++ -o util/Serialize.o -c -pthread -Wall -Wno-parentheses -Wno-deprecated -O2 -D_GNU_SOURCE=1 -D_REENTRANT -DFREEORION_LINUX -DENABLE_BINRELOC -I/usr/include/python2.5 -I/usr/local/include -I/usr/local/include/OGRE -I/usr/local/include/boost-1_37 -I/usr/local/include/LinearMath -I/usr/include/graphviz -Ilog4cpp util/Serialize.cpp
util/Serialize.cpp:50:4: error: #error "Incompatible endianness for binary serialization."
scons: *** [util/Serialize.o] Error 1
scons: building terminated because of errors.
After the change in SConstruct (at the proper place ;) ):

Code: Select all

g++ -o util/Serialize.o -c -pthread -Wall -Wno-parentheses -Wno-deprecated -O2 -DOGRE_GUI_GLX -DOGRE_CONFIG_LITTLE_ENDIAN -I/usr/local/include -I/usr/local/include/OGRE -D_GNU_SOURCE=1 -D_REENTRANT -DFREEORION_LINUX -DENABLE_BINRELOC -I/usr/include/python2.5 -I/usr/local/include -I/usr/local/include/OGRE -I/usr/local/include/boost-1_37 -I/usr/local/include/LinearMath -I/usr/include/graphviz -Ilog4cpp util/Serialize.cpp
And it compiled.

However, when I try to run freeorion nothing happens.

User avatar
Geoff the Medio
Programming, Design, Admin
Posts: 13587
Joined: Wed Oct 08, 2003 1:33 am
Location: Munich

Re: ogre problem when building

#27 Post by Geoff the Medio »

francys wrote:However, when I try to run freeorion nothing happens.
Is there anything in freeorion.log? Does an ogre_log.txt get made somewhere?

User avatar
francys
Space Squid
Posts: 54
Joined: Sat Oct 25, 2008 8:53 pm
Location: Victoria, BC

Re: ogre problem when building

#28 Post by francys »

Geoff the Medio wrote:Does an ogre_log.txt get made somewhere?
There we go:

Code: Select all

11:12:34: Loading library ./RenderSystem_GL.so
11:12:34: OGRE EXCEPTION(7:InternalErrorException): Could not load dynamic library ./RenderSystem_GL.so.  System Error: ./RenderSystem_GL.so: cannot open shared object file: No such file or directory in DynLib::load at OgreDynLib.cpp (line 80)

User avatar
OndrejR
Space Dragon
Posts: 339
Joined: Thu Oct 02, 2008 11:00 pm
Location: Slovakia

Re: ogre problem when building

#29 Post by OndrejR »


User avatar
francys
Space Squid
Posts: 54
Joined: Sat Oct 25, 2008 8:53 pm
Location: Victoria, BC

Re: ogre problem when building

#30 Post by francys »

Ok, I fixed that, but now I'm getting a Seg fault!
The outline of the window pops up and then disappears.

dmesg

Code: Select all

freeorion[3410]: segfault at 21a1 ip 00000000000021a1 sp 00007fff73c3bd78 error 14 in freeorion[400000+632000]
freeorion.log

Code: Select all

2009-02-12 12:02:43,763 DEBUG Client : OpenAL initialized. Version 1.1Renderer OpenAL SoftVendor OpenAL Community
Extensions: AL_EXT_EXPONENT_DISTANCE AL_EXT_FLOAT32 AL_EXT_IMA4 AL_EXT_LINEAR_DISTANCE AL_EXT_MCFORMATS AL_EXT_OFFSET AL_LOKI_quadriphonic

2009-02-12 12:02:44,135 DEBUG Client : Limited FPS to 60
ogre_log.txt

Code: Select all

12:02:42: Creating resource group General
12:02:42: Creating resource group Internal
12:02:42: Creating resource group Autodetect
12:02:42: SceneManagerFactory for type 'DefaultSceneManager' registered.
12:02:42: Registering ResourceManager for type Material
12:02:42: Registering ResourceManager for type Mesh
12:02:42: Registering ResourceManager for type Skeleton
12:02:42: MovableObjectFactory for type 'ParticleSystem' registered.
12:02:42: OverlayElementFactory for type Panel registered.
12:02:42: OverlayElementFactory for type BorderPanel registered.
12:02:42: OverlayElementFactory for type TextArea registered.
12:02:42: Registering ResourceManager for type Font
12:02:42: ArchiveFactory for archive type FileSystem registered.
12:02:42: ArchiveFactory for archive type Zip registered.
12:02:42: FreeImage version: 3.10.0
12:02:42: This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
12:02:42: 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,exr,j2k,j2c,jp2
12:02:42: DDS codec registering
12:02:42: Registering ResourceManager for type HighLevelGpuProgram
12:02:42: Registering ResourceManager for type Compositor
12:02:42: MovableObjectFactory for type 'Entity' registered.
12:02:42: MovableObjectFactory for type 'Light' registered.
12:02:42: MovableObjectFactory for type 'BillboardSet' registered.
12:02:42: MovableObjectFactory for type 'ManualObject' registered.
12:02:42: MovableObjectFactory for type 'BillboardChain' registered.
12:02:42: MovableObjectFactory for type 'RibbonTrail' registered.
12:02:42: Loading library /usr/local/lib/OGRE/RenderSystem_GL.so
12:02:42: Installing plugin: GL RenderSystem
12:02:42: OpenGL Rendering Subsystem created.
12:02:42: Plugin successfully installed
12:02:42: Loading library /usr/local/lib/OGRE/Plugin_ParticleFX.so
12:02:42: Installing plugin: ParticleFX
12:02:42: Particle Emitter Type 'Point' registered
12:02:42: Particle Emitter Type 'Box' registered
12:02:42: Particle Emitter Type 'Ellipsoid' registered
12:02:42: Particle Emitter Type 'Cylinder' registered
12:02:42: Particle Emitter Type 'Ring' registered
12:02:42: Particle Emitter Type 'HollowEllipsoid' registered
12:02:42: Particle Affector Type 'LinearForce' registered
12:02:42: Particle Affector Type 'ColourFader' registered
12:02:42: Particle Affector Type 'ColourFader2' registered
12:02:42: Particle Affector Type 'ColourImage' registered
12:02:42: Particle Affector Type 'ColourInterpolator' registered
12:02:42: Particle Affector Type 'Scaler' registered
12:02:42: Particle Affector Type 'Rotator' registered
12:02:42: Particle Affector Type 'DirectionRandomiser' registered
12:02:42: Particle Affector Type 'DeflectorPlane' registered
12:02:42: Plugin successfully installed
12:02:42: Loading library /usr/local/lib/OGRE/Plugin_OctreeSceneManager.so
12:02:42: Installing plugin: Octree & Terrain Scene Manager
12:02:42: Plugin successfully installed
12:02:42: *-*-* OGRE Initialising
12:02:42: *-*-* Version 1.6.1 (Shoggoth)
12:02:43: CPU Identifier & Features
12:02:43: -------------------------
12:02:43:  *   CPU ID: AuthenticAMD: AMD Turion(tm) 64 X2 Mobile Technology TL-60
12:02:43:  *      SSE: yes
12:02:43:  *     SSE2: yes
12:02:43:  *     SSE3: yes
12:02:43:  *      MMX: yes
12:02:43:  *   MMXEXT: yes
12:02:43:  *    3DNOW: yes
12:02:43:  * 3DNOWEXT: yes
12:02:43:  *     CMOV: yes
12:02:43:  *      TSC: yes
12:02:43:  *      FPU: yes
12:02:43:  *      PRO: yes
12:02:43:  *       HT: no
12:02:43: -------------------------
12:02:43: ******************************
*** Starting GLX Subsystem ***
******************************
12:02:43: GLRenderSystem::_createRenderWindow "FreeOrion v0.3.12 [Rev 2807]", 1024x768 windowed  miscParams: FSAA=0 displayFrequency=60 MHz gamma= vsync=No
12:02:43: OGRE EXCEPTION(6:FileNotFoundException): Cannot locate resource GLX_icon.png in resource group General or any other group. in ResourceGroupManager::openResource at OgreResourceGroupManager.cpp (line 753)
12:02:43: GLXWindow::create used FBConfigID = 39
12:02:43: GL_VERSION = 2.1.8304 Release
12:02:43: GL_VENDOR = ATI Technologies Inc.
12:02:43: GL_RENDERER = ATI Radeon Xpress Series
12:02:43: GL_EXTENSIONS = GL_AMD_performance_monitor GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_shadow GL_ARB_shadow_ambient 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_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_non_power_of_two GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_envmap_bumpmap GL_ATI_fragment_shader GL_ATI_meminfo GL_ATI_separate_stencil GL_ATI_texture_env_combine3 GL_ATI_texture_float 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_compiled_vertex_array GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_framebuffer_object GL_EXT_gpu_program_parameters GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_pixels GL_EXT_point_parameters 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_texgen_reflection GL_EXT_texture3D GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map 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_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_vertex_array GL_KTX_buffer_region GL_NV_blend_square GL_NV_texgen_reflection GL_SGIS_generate_mipmap GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_WIN_swap_hint WGL_EXT_swap_control
12:02:43: 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_swap_control GLX_OML_swap_method GLX_OML_sync_control GLX_SGI_video_sync GLX_SGIS_multisample GLX_SGIX_fbconfig GLX_SGIX_visual_select_group
12:02:43: ***************************
12:02:43: *** GL Renderer Started ***
12:02:43: ***************************
12:02:43: Registering ResourceManager for type GpuProgram
12:02:43: GLSL support detected
12:02:43: GL: Using GL_EXT_framebuffer_object for rendering to textures (best)
12:02:43: FBO PF_UNKNOWN depth/stencil support: D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_L8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_L16 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_A8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_A4L4 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_BYTE_LA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_R5G6B5 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_B5G6R5 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_A4R4G4B4 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_A1R5G5B5 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_B8G8R8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_A8R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_B8G8R8A8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_A2R10G10B10 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_A2B10G10R10 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_FLOAT16_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_FLOAT16_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_FLOAT32_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_FLOAT32_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_X8R8G8B8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_X8B8G8R8 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_SHORT_RGBA depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_R3G3B2 depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_FLOAT16_R depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_FLOAT32_R depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_SHORT_GR depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_FLOAT16_GR depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_FLOAT32_GR depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: FBO PF_SHORT_RGB depth/stencil support: D0S0 D0S1 D0S4 D0S8 D0S16 D16S0 D24S0 D32S0 Packed-D24S8
12:02:43: [GL] : Valid FBO targets PF_UNKNOWN PF_L8 PF_L16 PF_A8 PF_A4L4 PF_BYTE_LA PF_R5G6B5 PF_B5G6R5 PF_A4R4G4B4 PF_A1R5G5B5 PF_R8G8B8 PF_B8G8R8 PF_A8R8G8B8 PF_B8G8R8A8 PF_A2R10G10B10 PF_A2B10G10R10 PF_FLOAT16_RGB PF_FLOAT16_RGBA PF_FLOAT32_RGB PF_FLOAT32_RGBA PF_X8R8G8B8 PF_X8B8G8R8 PF_SHORT_RGBA PF_R3G3B2 PF_FLOAT16_R PF_FLOAT32_R PF_SHORT_GR PF_FLOAT16_GR PF_FLOAT32_GR PF_SHORT_RGB
12:02:43: RenderSystem capabilities
12:02:43: -------------------------
12:02:43: RenderSystem Name: OpenGL Rendering Subsystem
12:02:43: GPU Vendor: ati
12:02:43: Device Name: ATI Radeon Xpress Series
12:02:43: Driver Version: 2.1.8304.0
12:02:43:  * Fixed function pipeline: yes
12:02:43:  * Hardware generation of mipmaps: yes
12:02:43:  * Texture blending: yes
12:02:43:  * Anisotropic texture filtering: yes
12:02:43:  * Dot product texture operation: yes
12:02:43:  * Cube mapping: yes
12:02:43:  * Hardware stencil buffer: yes
12:02:43:    - Stencil depth: 8
12:02:43:    - Two sided stencil support: yes
12:02:43:    - Wrap stencil values: yes
12:02:43:  * Hardware vertex / index buffers: yes
12:02:43:  * Vertex programs: yes
12:02:43:  * Fragment programs: yes
12:02:43:  * Geometry programs: no
12:02:43:  * Supported Shader Profiles: arbfp1 arbvp1 glsl ps_1_1 ps_1_2 ps_1_3 ps_1_4
12:02:43:  * Texture Compression: yes
12:02:43:    - DXT: yes
12:02:43:    - VTC: no
12:02:43:  * Scissor Rectangle: yes
12:02:43:  * Hardware Occlusion Query: yes
12:02:43:  * User clip planes: yes
12:02:43:  * VET_UBYTE4 vertex element type: yes
12:02:43:  * Infinite far plane projection: yes
12:02:43:  * Hardware render-to-texture: yes
12:02:43:  * Floating point textures: yes
12:02:43:  * Non-power-of-two textures: yes
12:02:43:  * Volume textures: yes
12:02:43:  * Multiple Render Targets: 4
12:02:43:    - With different bit depths: yes
12:02:43:  * Point Sprites: yes
12:02:43:  * Extended point parameters: yes
12:02:43:  * Max Point Size: 8192
12:02:43:  * Vertex texture fetch: no
12:02:43:  * Render to Vertex Buffer : no
12:02:43:  * GL 1.5 without VBO workaround: no
12:02:43:  * Frame Buffer objects: yes
12:02:43:  * Frame Buffer objects (ARB extension): no
12:02:43:  * Frame Buffer objects (ATI extension): no
12:02:43:  * PBuffer suppport: no
12:02:43:  * GL 1.5 without HW-occlusion workaround: no
12:02:43: Registering ResourceManager for type Texture
12:02:43: ResourceBackgroundQueue - threading disabled
12:02:43: Particle Renderer Type 'billboard' registered
12:02:43: SceneManagerFactory for type 'OctreeSceneManager' registered.
12:02:43: SceneManagerFactory for type 'TerrainSceneManager' registered.
12:02:44: Loading library libGiGiOgrePlugin_OIS.so
12:02:44: Installing plugin: OIS Input Plugin
12:02:44: Plugin successfully installed

Post Reply