【问题标题】:Using GLUT library in Visual Studio, no error, but output console doesn't work在 Visual Studio 中使用 GLUT 库,没有错误,但输出控制台不起作用
【发布时间】:2014-09-20 02:06:31
【问题描述】:

我正在尝试将 GLUT 用于特定的 openGL 项目。我已将 glut32.dll/glut.h/glut32.lib 放在他们所需的目录中。在 Visual Studio 中将源文件添加到项目后,当我点击调试/运行时,它不会显示任何错误。我使用的源代码是一个旋转的彩色立方体。现在点击调试后,输出控制台确实显示了彩色立方体,但只是一瞬间,这是不应该发生的。

我正在使用的代码:

#include <GL/glut.h>
#define window_width  640
#define window_height 480
// Main loop
void main_loop_function() {
    // Z angle
    static float angle;
    // Clear color (screen)
    // And depth (used internally to block obstructed objects)
    glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    // Load identity matrix
    glLoadIdentity();
    // Multiply in translation matrix
    glTranslatef(0, 0, -10);
    // Multiply in rotation matrix
    glRotatef(angle, 0, 0, 1);
    // Render colored quad
    glBegin(GL_QUADS);
    glColor3ub(255, 000, 000);
    glVertex2f(-1, 1);
    glColor3ub(000, 255, 000);
    glVertex2f(1, 1);
    glColor3ub(000, 000, 255);
    glVertex2f(1, -1);
    glColor3ub(255, 255, 000);
    glVertex2f(-1, -1);
    glEnd();
    // Swap buffers (color buffers, makes previous render visible)
    glutSwapBuffers();
    // Increase angle to rotate
    angle += 0.25;
}
// Initialze OpenGL perspective matrix
void GL_Setup(int width, int height) {
    glViewport(0, 0, width, height);
    glMatrixMode(GL_PROJECTION);
    glEnable(GL_DEPTH_TEST);
    gluPerspective(45, (float) width / height, .1, 100);
    glMatrixMode(GL_MODELVIEW);
}
// Initialize GLUT and start main loop
int main(int argc, char** argv) {
    glutInit(&argc, argv);
    glutInitWindowSize(window_width, window_height);
    glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE);
    glutCreateWindow("GLUT Example!!!");
    glutIdleFunc(main_loop_function);
    GL_Setup(window_width, window_height);
    glutMainLoop();
}

谁能告诉我这可能是什么原因造成的?代码没有任何错误。而且由于输出确实只显示了半秒,我假设 GLUT 文件已正确放置。那么是什么原因导致控制台在一秒钟内消失呢?

【问题讨论】:

    标签: c++ opengl glut


    【解决方案1】:

    对于 glut,您不应该从附加到 glutIdleFunc 的函数中提取内容,而是从 glutDisplayFunc 中提取内容。

    使用glutDisplayFunc(main_loop_function); 并创建一个新的计时器函数来执行angle += 0.25; 并将回调与glutTimerFunc(...) 连接起来以定时方式旋转,而不是在每次重绘时旋转,这可能不会定期发生。

    【讨论】:

      猜你喜欢
      • 2016-08-17
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-04-05
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多