我无法在OpenGL中运行黑色方块程序

时间:2016-11-09 18:02:38

标签: c++ eclipse opengl computer-science

我用C ++编写了这段代码:

#include <windows.h> 
#include <GL/glut.h>

void drawPoint() {

   glBegin(GL_POLYGON);
   glVertex3f(20, 20, 0);
   glVertex3f(80, 20, 0);
   glVertex3f(80, 80, 0);
   glVertex3f(20, 80, 0);

  glEnd();

}


int main(){

    drawPoint();

}

编译器应该通过显示带有黑色方块的窗口来运行程序。

但是当我跑步时,它并没有执行任何操作。我使用Eclipse,但我不认为后者是问题,因为我今天早上执行了一个示例程序并且运行良好。你能帮助我吗? :)

0 个答案:

没有答案