Re: normals shown flipped sometimes

Ian Mallett <[email protected]>
Newsgroups gmane.comp.python.opengl.user
Message-ID <CAG4NV=sSQxeqtdEJWZRG1iT5S7yNSVnmui4CpiygOpibaoTXwA@mail.gmail.com>
On Fri, Dec 9, 2011 at 4:43 PM, Alfonso de la Osa <[email protected]> wrote:

> Hi,
>
> I'm having troubles rendering with pyopengl (or glut)
> running on Ubuntu 11.04, Intel GM965/GL960
> when trying to render a glut solid box or glut solid sphere
>
> I tried the pyode test and the boxes were wrong.
> The faces seem to be invisible sometimes and the render don't show
> objects ordered properly in depth, the normals sometimes flipped.
> Then I added spheres and they were erroneously represented too.
>
> I've taken 2 screenshots:
>
> http://imgur.com/a/JBm8u
>
> this is the code:
>
> # draw_body
> def draw_body(body):
>     """Draw an ODE body.
>     """
>
>     x,y,z = body.getPosition()
>     R = body.getRotation()
>     rot = [R[0], R[3], R[6], 0.,
>            R[1], R[4], R[7], 0.,
>            R[2], R[5], R[8], 0.,
>            x, y, z, 1.0]
>     glPushMatrix()
>     glMultMatrixd(rot)
>     if body.shape=="box":
>
>         glShadeModel(GL_FLAT)
>         sx,sy,sz = body.boxsize
>         glScalef(sx, sy, sz)
>         glutSolidCube(1)
>     elif body.shape=="sphere":
>
>         glShadeModel(GL_FLAT)
>         glutSolidSphere(body.radius, 10, 10)
>     glPopMatrix()
>
> What can I do to solve this?
>
> Thank you in advance,
>
> Alf.
>
The problem is not in the code presented.  If it's just the straight test,
I can vouch for its correctness, so the problem lies outside the code.  Has
the code been modified from the sample?

It looks like depth testing is disabled--or maybe there's no depth buffer
in the first place.  Make sure there's NOT a "glDisable(GL_DEPTH_TEST)"
anywhere.  As I recall, the sample is based on PyGame.  You might have to
explicitly request a depth buffer (i.e.,
"pygame.display.gl_set_attribute(GL_DEPTH_SIZE,8)" xor 16, 24, xor 32).

If the code is just the sample code, the problem is almost certainly your
GPU.  Intel (graphics) chipsets just plain suck.  Everyone in the graphics
industry knows this.  Including Intel.  They have dodgy hardware support at
best.  In my tests, some chips don't even support OpenGL core specification
that's been in place for more than a decade.

That said, the internet has some suggestions.  For instance, perhaps
updating Mesa.

Ian

------------------------------------------------------------------------------
Learn Windows Azure Live!  Tuesday, Dec 13, 2011
Microsoft is holding a special Learn Windows Azure training event for 
developers. It will provide a great way to learn Windows Azure and what it 
provides. You can attend the event by watching it streamed LIVE online.  
Learn more at http://p.sf.net/sfu/ms-windowsazure

_______________________________________________
PyOpenGL Homepage
http://pyopengl.sourceforge.net
_______________________________________________
PyOpenGL-Users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pyopengl-users
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.