|
|
haha.obj : error LNK2001: unresolved external symbol ___glutInitWithExit@12
haha.obj : error LNK2001: unresolved external symbol ___glutCreateWindowWithExit@8
是什么错啊?
[em24] [em24]
我可是完全抄书上的大米吗代码啊:
#include <windows.h>
#include <GL\gl.h>
#include <GL\glaux.h>
#include <GL\glu.h>
#include <GL\glut.h>
void display()
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(1.0,1.0,1.0);
glBegin(GL_POLYGON);
glVertex3f(0.25,0.25,0.0);
glVertex3f(0.75,0.25,0.0);
glVertex3f(0.75,0.75,0.0);
glVertex3f(0.25,0.75,0.0);
glEnd();
glFlush();
}
void init()
{
glClearColor(0.0,0.0,0.0,0.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(0.0,1.0,0.0,1.0,-1.0,1.0);
}
int main(int argc, char **argv)
{
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB);
glutInitWindowSize(250,250);
glutInitWindowPosition(100,100);
glutCreateWindow("Hello");
init();
glutDisplayFunc(display);
glutMainLoop();
return 0;
}
|
|