Example problem on new Ubuntu 9.10

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
happilylazy
Posts: 53
Joined: Sun Aug 31, 2008 3:16 pm
Location: Split, Croatia

Example problem on new Ubuntu 9.10

Post by happilylazy »

So I installed new Ubuntu 9.10 and Irrlicht 1.6, compiled the examples and there is an error. When I look around only textures that are in close proximity to myself (sphere around me) are rendered, those further outside are black.

Example on 02.QuakeMap example (Sry for whole screen but Gimp is not working, damn this new Ubuntu)

Image

Does anybody have the same problem and what is the solution???
Halp brother here please.
What now??? =_=''
CuteAlien
Admin
Posts: 9716
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

Most common problem after a new install is that the hardware drivers are not installed. And it might look somewhat like that if it's using something like Mesa instead.

Do type into the console:
glxinfo | grep direct

It should return something like:
direct rendering: Yes

If it says no instead then you should install hardware drivers for your graphic card.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
andres
Competition winner
Posts: 78
Joined: Tue Jul 08, 2008 5:18 pm
Location: Guarapuava/Brazil
Contact:

Post by andres »

Is working fine here. must be your graphics card driver.
Prof. Andres Jessé Porfirio
Federal Technological University of Parana (UTFPR)
www.andresjesse.com
http://irrrpgbuilder.sourceforge.net

Image
happilylazy
Posts: 53
Joined: Sun Aug 31, 2008 3:16 pm
Location: Split, Croatia

Post by happilylazy »

CuteAlien wrote:Most common problem after a new install is that the hardware drivers are not installed. And it might look somewhat like that if it's using something like Mesa instead.

Do type into the console:
glxinfo | grep direct

It should return something like:
direct rendering: Yes

If it says no instead then you should install hardware drivers for your graphic card.
Simon says

direct rendering: Yes
What now??? =_=''
randomMesh
Posts: 1186
Joined: Fri Dec 29, 2006 12:04 am

Post by randomMesh »

I had some serious issues with Ubuntu 9.10 too.

Ext4 ate my files, video driver not working properly, etc.

Solution: I installed Debian Lenny. :o
"Whoops..."
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

OpenGL 1.4 hints for either an outdated driver, or a very weak onboard gfx card, though. Could be that you're out of luck getting better results with your actual HW. Could you please post the output of one of the other examples (5 or 6 would be good).
happilylazy
Posts: 53
Joined: Sun Aug 31, 2008 3:16 pm
Location: Split, Croatia

Post by happilylazy »

hybrid wrote:OpenGL 1.4 hints for either an outdated driver, or a very weak onboard gfx card, though. Could be that you're out of luck getting better results with your actual HW. Could you please post the output of one of the other examples (5 or 6 would be good).
Yea, those examples 5. and 6. are good.
But look at this.

Code: Select all

Please select the driver you want for this example:
 (a) Direct3D 9.0c
 (b) Direct3D 8.1
 (c) OpenGL 1.5
 (d) Software Renderer
 (e) Burning's Software Renderer
 (f) NullDevice
 (otherKey) exit

c
Irrlicht Engine version 1.6
Linux 2.6.31-15-generic #50-Ubuntu SMP Tue Nov 10 14:54:29 UTC 2009 i686
Creating X window...
Visual chosen: : 193
Using renderer: OpenGL 1.4
Mesa DRI Intel(R) G33 GEM 20090712 2009Q2 RC3 x86/MMX/SSE2: Tungsten Graphics, Inc
OpenGL driver version is 1.2 or better.
GLSL not available.
hmm... Note that i chose OpenGL 1.5 and OpenGL 1.4 is used, could that be the problem?
What now??? =_=''
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

No, the string in the chooser is simply statically created. Should read probably just read OpenGL
Post Reply