These instructions will walk you through testing a basic OpenGL project in the Linux Lab.

  1. In the terminal window, create a new directory, then navigate to it.

    mkdir gltest
    cd gltest
  2. Next, copy all of the files from /home/cs165new/uiTest into the directory you created.

    cp /home/cs165new/uiTest/* .
  3. Run the make command, then run a.out.

    make
    a.out

If all goes well, you should see a window appear with a rotating shape, which can be controlled using your arrow keys.