Iterating and selecting EGL Device

Hello,

would it be possible using GLFW to specify the dedicated GPU for an EGL setup/iterate over EGL devices and use one of them?

I currently have a project with two threads, one of them runs glfw and the other wlroots, which uses GLES2/EGL for DMABUF sharing. On my two GPU system, I would need to run my progam using DRI_PRIME=1 in order to resolve the DMABUF distortions which occur when the threads don’t have the same GL_RENDERER value.

There is no API for this in GLFW.

If you want fine control over GPU selection then you might want to use consider using Vulkan, and just use GLFW to create the window.