Omnimaga

General Discussion => Technology and Development => Computer Programming => Topic started by: Snake X on March 11, 2013, 09:39:56 pm

Title: Good openGL tutorials?
Post by: Snake X on March 11, 2013, 09:39:56 pm
Tutorials are just one of those things that never set you up for the *REAL* work environment... Unless the writer knows this, of course.

Your not going to be using "OpenGL-tutorial-library-1.4.3.zip" in a professional work field. (I made the file name up but you get the idea.)

With that in mind... Looking for a good OpenGL tutorial that does NOT use any proprietary tools/library's for coding and goes into decent detail about the code's.

Note: I will be working in g++ with gedit on arch linux. Seems like everyone is using visual studio c++ these days..

Thanks.
Title: Re: Good openGL tutorials?
Post by: shmibs on March 11, 2013, 11:10:34 pm
i haven't done anything with opengl thus far either, but this (http://www.opengl-tutorial.org/) site looks decent. it looks like gtkmm has a plugin (http://projects.gnome.org/gtkglext/download.html#gtkglextmm) for including opengl windows as well, if you want to work with gtk+/gnome interfaces.

also, if you haven't already, you should check out geany (http://geany.org/). it's basically gedit with a few nice additional features, like a side pane for keeping track of variables/functions/constants/etc; a built in VTE, so you don't have to keep switching between windows; and useful keybindings, like selecting whole lines or paragraphs at once, commenting/uncommenting and indenting/unindenting sections of code, and compiling/building/running code.
Title: Re: Good openGL tutorials?
Post by: Sorunome on March 11, 2013, 11:12:20 pm
IIRC on youtube are pretty nice tutorials also, try looking around there
Title: Re: Good openGL tutorials?
Post by: Juju on March 11, 2013, 11:23:01 pm
i haven't done anything with opengl thus far either, but this (http://www.opengl-tutorial.org/) site looks decent. it looks like gtkmm has a plugin (http://projects.gnome.org/gtkglext/download.html#gtkglextmm) for including opengl windows as well, if you want to work with gtk+/gnome interfaces.

also, if you haven't already, you should check out geany (http://geany.org/). it's basically gedit with a few nice additional features, like a side pane for keeping track of variables/functions/constants/etc; a built in VTE, so you don't have to keep switching between windows; and useful keybindings, like selecting whole lines or paragraphs at once, commenting/uncommenting and indenting/unindenting sections of code, and compiling/building/running code.
I should try OpenGL as well, thanks for the tutorial ^_^

I usually use command line to program though.
Title: Re: Good openGL tutorials?
Post by: Snake X on March 12, 2013, 08:20:27 pm
Can't seem to find a clear winner for this on google... GLFW or SDL?

edit: seems as though GLFW is more oriented towards games from what the OpenGL wiki says...