Giter Club home page Giter Club logo

Comments (3)

space928 avatar space928 commented on September 28, 2024 1

Hi, thanks for the help, I've ended up using a dedicated render process which works quite nicely. I'll close this issue as resolved.

from moderngl.

space928 avatar space928 commented on September 28, 2024

Upon further testing a similar issue seems to occur when calling ctx.simple_vertex_array(self.prog, self.vert_buff, 'in_vert', 'in_color') in a thread (resulting in the following error: _moderngl.Error: cannot create vertex array). This is after having successfully called ctx.program from the main thread.

from moderngl.

szabolcsdombi avatar szabolcsdombi commented on September 28, 2024

if you are using threads you must handle opengl context switching,
the opengl context can be current only in one thread.
there are some methods (begin, end) in glcontext, but not sure if you need those.
with raw api call it looks like the following:

wglMakeCurrent(...)
# can call moderngl code here
wglMakeCurrent(NULL, NULL)

check the docs what happens when another thread calls wglMakeCurrent while the context is active in some other thread. you may have to add some mutexes.

also please do keep in mind that due to the Python GIL you have no real benefits of using threads unless those are idling on IO without the GIL being held.

the OpenGL driver is not multithreaded so whatever you do with it on multiple threads it will land in sync calls one after the other.

PS:

If you want to put rendering on a dedicated thread, that may be totally reasonable and you should make the opengl context current there and leave it like that.

from moderngl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.