OpenGL Linux Tutorial Sites

Started by
2 comments, last by pakloong82 20 years, 7 months ago
hi there, I wonder where can i find some good site that teach about programming OpenGL in Linux? thank you in advance
:)
Advertisement
If you use GLUT or SDL you needn''t worry about actually programming any OS-specific details. Any tutorial teaching these libraries would be sufficient. (File access, etc, is a different monster altogether, SDL I think is a better bet than GLUT).

For actual compiling on Linux I would suggest learning how to create a Makefile (a list of instructions on how to build your project), and compiling is usually as simple as:
gcc program.cpp -lglut -o program
I use Kate since it has an integrated console in the editor window, and is an MDI.

Setting up GLUT or SDL is a different story; what distribution do you use? Usually you can install a -devel-.rpm, though if you use RedHat 9, there''s some info I came across for GLUT which you might want to check out.

Drop me a line if you need help



MatrixCubed
http://MatrixCubed.cjb.net

I always found the tutorials at http://www.gametutorials.com to be good. Grab the SDL version of the examples.

[edited by - deepdene on September 3, 2003 2:47:32 PM]
This was asked a few days ago..
[size="2"]I like the Walrus best.

This topic is closed to new replies.

Advertisement