我是初学者,我按照在线教程下载GLUT并安装MinGW等。
本教程为我提供了一些示例代码,但是当我运行它时根本没有任何显示。我已经构建了项目(Ctrl-B)并确保导入了所有库。
#include <windows.h>
#include <GL/glut.h>
const int WIDTH = 600;
const int HEIGHT = 480;
/* Prototypes */
void init();
void display();
/* Definitions */
/* Initializes the OpenGL state */
void init() {
glClearColor(1.0, 0.0, 0.0, 1.0 ); /* Set the clear color */
}
/* Displays a black clear screen */
void display() {
glClear( GL_COLOR_BUFFER_BIT ); /* Clear the screen with the clear color */
glutSwapBuffers(); /* Double buffering */
}
/* The main function */
int main( int argc, char *argv[] ) {
/* Glut setup function calls */
glutInit( &argc, argv );
glutInitDisplayMode( GLUT_DOUBLE | GLUT_RGB ); /* Use double buffering and RGB
colors */
glutInitWindowPosition( 100, 100 );
glutInitWindowSize( WIDTH, HEIGHT );
glutCreateWindow(argv[0]);
init();
glutDisplayFunc( display ); /* Call back display function */
glutMainLoop(); /* Continue drawing the scene */
return 0;
}
我按下run并显示“启动GLUTDemo.exe”然后没有任何反应。