我的马奇(左轮)的虚拟机器中一只双管7只。
我写过一些小的法典,我试图加以操作,我发现这个问题:
C:UsersAdministratorDocumentsVisualroom 10 Projects estDebug est.exe: diefall LNK1120: 1 addressedexternals
It tells me that he can t find the path in the users.
我检查了所有道路。
我现在能做些什么?
<><>Edit>: 这里正在建立样本代码:
#include<glut.h>
void display()
{
glClear(GL_COLOR_BUFFER_BIT);
glFlush();
}
void myinit()
{
glClearColor(0.,0.,0.,0.);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluOrtho2D(-5., 5., -5., 5);
glMatrixMode(GL_MODELVIEW);
}
int main(int argc, char** argv)
{
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
glutInitWindowSize(200, 200);
glutInitWindowPosition(100, 100);
glutCreateWindow("Black Window");
glutDisplayFunc(display);
myinit();
glutMainLoop();
}