Announcement

Collapse
No announcement yet.

OpenGL tutorial for Linux

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    OpenGL tutorial for Linux

    Hello everybody

    Can you tell me the link for learn OpenGL. I found some websites but seems like it is for M$. Is there any sites to learn OpenGL in Linux environment? Or it just is same?
    P4 3.06 HT,RAM 512 MB, 80GB HD, Geforce 6200 LE, Kubuntu 8.04

    #2
    Re: OpenGL tutorial for Linux

    Yo, I have understand. We can use all the tutorials (even it is said for M$, Solaris, Mac OS or what). We only need to change a little in include file...

    For example, in M$ they must include glaux.h , glut.h or something else. In Linux we just need to include GL/gl.h.

    And we just need to compile with this syntax:
    gcc -o myProg myProg.c I /usr/X11R6/include/ -L /usr/X11R6/lib/ -lglut -lGL -lGLU -lX11 -lXmu -lXi -lm

    P4 3.06 HT,RAM 512 MB, 80GB HD, Geforce 6200 LE, Kubuntu 8.04

    Comment

    Working...
    X