Si está utilizando OSX, le recomiendo usar XCode y usar NSOpenGLView. This libro tiene un montón de material con respecto a las diversas API que puede utilizar. GLUT es definitivamente el más rápido de manejar y configurar.
Si desea utilizar GLUT y compilar en el terminal podría intentar esto:
#include <GLUT/glut.h>
void display(void) {
//clear white, draw with black
glClearColor(255, 255, 255, 0);
glColor3d(0, 0, 0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
//this draws a square using vertices
glBegin(GL_QUADS);
glVertex2i(0, 0);
glVertex2i(0, 128);
glVertex2i(128, 128);
glVertex2i(128, 0);
glEnd();
//a more useful helper
glRecti(200, 200, 250, 250);
glutSwapBuffers();
}
void reshape(int width, int height) {
glViewport(0, 0, width, height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
//set the coordinate system, with the origin in the top left
gluOrtho2D(0, width, height, 0);
glMatrixMode(GL_MODELVIEW);
}
void idle(void) {
glutPostRedisplay();
}
int main(int argc, char *argv) {
//a basic set up...
glutInit(&argc, &argv);
glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH);
glutInitWindowSize(640, 480);
//create the window, the argument is the title
glutCreateWindow("GLUT program");
//pass the callbacks
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutIdleFunc(idle);
glutMainLoop();
//we never get here because glutMainLoop() is an infinite loop
return 0;
}
y luego compilar con:
gcc /System/Library/Frameworks/GLUT.framework/GLUT /System/Library/Frameworks/OpenGL.framework/OpenGL main.c -o myGlutApp
Que debe hacer el truco. Yo diría que aunque no intentes luchar contra el trabajo de XCode con él, te ahorrará tiempo y frustración.
Probé tu método en la terminal pero obtengo: hello.c: 47: 21: error: GL/glut.h: No existe tal archivo o directorio – clwen
hmmm, estoy ejecutando 10.6 (leopardo de las nieves) y funciona. ¿Puedes verificar que tienes GLUT en tu sistema? ¿Has instalado XCode y las herramientas de desarrollador de Apple? – whg
Funciona después de cambiar la ruta de inclusión de "GL/glut.h" a "GLUT/glut.h". ¡Muchas gracias! – clwen