multithreading - 使用 OpenGL 加载 GLFW 3.0 资源

标签 multithreading opengl glfw

我已经开始进入在一个单独的线程上加载 OpenGL 资源的有点压倒性的场景,所以主线程可以继续渲染一个对象。介入时,我注意到 GLFW 一个月前发布了一个更新版本,更容易进行上下文管理。

但是,使用 glfwMakeContextCurrent() 我一直无法做到这一点。在加载线程中,我使用这个函数,并在它完成后再次添加它,以便主线程接收上下文以供进一步使用。这不允许我创建和编译着色器或任何其他与 OpenGL 相关的创建。

更新:

需要做什么才能在这种情况下使用 GLFW?由于 GLFW 是可移植的,我很乐意使用包含它的代码。我不知道准备一个记住 GLFW API 的线程的必要步骤。

this博客文章指出,我需要使用 OpenGL 上下文(不是相同的上下文;D)创建两个线程,然后共享信息。但是,显示的说明是特定于平台的。那么我如何使用 GLFW 使示例中的步骤尽可能独立于平台?

最佳答案

使用 share glfwCreateWindow() 上的参数:

// g++ main.cpp -pthread `pkg-config --cflags --libs glfw3 glew`
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <chrono>
#include <thread>
#include <atomic>

// reload shared VBO with random data every second
void MyThread( GLFWwindow* win, GLuint vbo, std::atomic< bool >& running )
{
    glfwMakeContextCurrent( win );
    glewInit();
    while( running )
    {
        float temp[ 512 ];
        for( size_t i = 0; i < 512; i+=2 )
        {
            temp[ i+0 ] = static_cast< float >( rand() % 600 );
            temp[ i+1 ] = static_cast< float >( rand() % 600 );
        }

        glBindBuffer( GL_ARRAY_BUFFER, vbo );
        glBufferData( GL_ARRAY_BUFFER, sizeof( temp ), temp, GL_DYNAMIC_DRAW );
        glBindBuffer( GL_ARRAY_BUFFER, 0 );

        // See GL 3.3 spec, section D.3.1
        glFinish();

        std::this_thread::sleep_for( std::chrono::milliseconds( 1000 ) );
    }
}

int main( int argc, char** argv )
{
    if( !glfwInit() )
        return -1;

    glfwWindowHint( GLFW_VISIBLE, GL_FALSE );
    GLFWwindow* threadWin = glfwCreateWindow( 1, 1, "Thread Window", NULL, NULL );

    glfwWindowHint( GLFW_VISIBLE, GL_TRUE );
    GLFWwindow* window = glfwCreateWindow( 600, 600, "Hello World", NULL, threadWin );
    glfwMakeContextCurrent( window );
    glewInit();

    // load shared VBO with dummy data
    float temp[ 512 ] = { 0 };
    GLuint vbo;
    glGenBuffers( 1, &vbo );
    glBindBuffer( GL_ARRAY_BUFFER, vbo );
    glBufferData( GL_ARRAY_BUFFER, sizeof( float ) * 512, temp, GL_DYNAMIC_DRAW );
    glBindBuffer( GL_ARRAY_BUFFER, 0 );
    std::atomic< bool > running( true );
    std::thread aThread( MyThread, threadWin, vbo, std::ref( running ) );

    while( !glfwWindowShouldClose( window ) )
    {
        glfwPollEvents();

        glClear( GL_COLOR_BUFFER_BIT );

        int w, h;
        glfwGetFramebufferSize( window, &w, &h );
        glViewport( 0, 0, w, h );
        
        glMatrixMode( GL_PROJECTION );
        glLoadIdentity();
        glOrtho( 0, 600, 0, 600, -1, 1 );

        glMatrixMode( GL_MODELVIEW );
        glLoadIdentity();
        
        // re-bind shared VBO to pick up potential content changes
        // See GL 3.3 spec, section D.3.3, Rule 4
        glBindBuffer( GL_ARRAY_BUFFER, vbo );

        glEnableClientState( GL_VERTEX_ARRAY );   
        glVertexPointer( 2, GL_FLOAT, 0, 0 );
        glColor3ub( 255, 0, 0 );
        glDrawArrays( GL_LINES, 0, 256 );

        std::this_thread::sleep_for( std::chrono::milliseconds( 10 ) );
        glfwSwapBuffers( window );
    }

    running = false;
    aThread.join();

    glfwTerminate();
    return 0;
}

关于multithreading - 使用 OpenGL 加载 GLFW 3.0 资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17779340/

相关文章:

multithreading - 在 IIS 下增加 .NET Remoting 应用程序的并发请求

c++ - OpenGL Vertex Array Sphere C 的问题

c++ - 清除具有重叠内容的像素

multithreading - 多线程访问数据

c# - 如何管理等待工作要做的工作线程?

c++ - 如何使用GL_TRIANGLE_FAN在OpenGL中画一个圆?

c++ - 失去焦点时全屏 GLFW 窗口消失

java - GLFW 的线程设置

python - 为什么我无法在 python 中加入这个线程?

java - 获取延迟渲染光 channel 的世界位置