Thread: Better OpenGL tutorial?

  1. #1
    Registered User
    Join Date
    Mar 2004
    Posts
    40

    Better OpenGL tutorial?

    Does anyone know where I can find a better OpenGL tutorial? The one on this site isn't bad, it's just not enough for me. No offense to the site. I just need something better.
    Code:
    #include <iostream.h>
    int var;
    int test();
    int main() { 
     cout << "Please input your language:\n 1. C (C,C++,C#)\n 2. VB\n 3. Other\n";
     cin >> var;
     return test(); }
    int test() {  
     if(var == 1) {
      cout << "Y0u 4r3 t3h 1337\n";
      system("PAUSE");
      return main(); }
     else if(var == 2) {
      cout << "N00B3R!\n";
      system("PAUSE");
      return main(); }
     else if(var == 3) {
      cout << "You were not thought of.\n";
      system("PAUSE");
      return main(); }
     else {      
      return 0; }}

  2. #2
    C++ Developer XSquared's Avatar
    Join Date
    Jun 2002
    Location
    Ontario, Canada
    Posts
    2,718
    Try NeHe
    Naturally I didn't feel inspired enough to read all the links for you, since I already slaved away for long hours under a blistering sun pressing the search button after typing four whole words! - Quzah

    You. Fetch me my copy of the Wall Street Journal. You two, fight to the death - Stewie

  3. #3
    Registered User dalek's Avatar
    Join Date
    May 2003
    Posts
    135
    And of course opengl.org

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Error I have in OpenGL tutorial on this site.
    By Nirdop in forum C++ Programming
    Replies: 4
    Last Post: 07-25-2006, 03:03 PM
  2. Compiling issue with the OpenGL tutorial by RoD
    By Twitchmokey in forum Game Programming
    Replies: 12
    Last Post: 06-26-2006, 06:05 PM
  3. OpenGL Window
    By Morgul in forum Game Programming
    Replies: 1
    Last Post: 05-15-2005, 12:34 PM
  4. Problem with OpenGL tutorial
    By 2Biaz in forum Windows Programming
    Replies: 18
    Last Post: 09-16-2004, 11:02 AM
  5. OpenGL (or) DirectX tutorial
    By bluehead in forum C++ Programming
    Replies: 11
    Last Post: 04-16-2004, 12:33 AM