226 questions
0 votes
0 answers
63 views
How to run Mesa ABM SolaraViz visualization locally outside Jupyter notebooks?
I'm trying to run Mesa's SolaraViz interactive visualization in a local Python script (not Jupyter notebook), following the official Mesa documentation, but cannot get it to launch a web server ...
0 votes
0 answers
96 views
MESA Solara missing required model parameter
I'm using Solara to visualize a MESA simulation but I always get this message: ValueError: Missing required model parameter: initial_fire_positions Can someone help me figure out why it is happening?...
1 vote
0 answers
94 views
Detect OpenGL during runtime Golang
This question is a follow-up to my SO Answer about using Mesa opengl32.dll when a Golang app does not have a graphics driver to launch Fyne Windows. I'm trying to centralize my code so that it works ...
1 vote
2 answers
193 views
Using Mesa DLL for Golang Fyne
I have Go code that opens a Fyne window. I run this on my MacBook and it works. I am trying to get it to run on a KVM Windows server. This issue isn't related to this specific KVM server as I've tried ...
0 votes
0 answers
110 views
Abort message: 'Failed to create context, error = EGL_NOT_INITIALIZED'
During monkey run, some random application is failing to create context. Reason for this is, particular file is giving "Operation not permitted" errno from egl side. How to fix EPERM errno, ...
0 votes
0 answers
72 views
glxinfo gives odd error on ubuntu noble container
I'm trying to create a ubuntu noble container (it has to be ubuntu noble due to another software's compatibility constraints) with a gui capable of running Gazebo, a robot simulation. For Gazebo, I ...
1 vote
1 answer
279 views
Buildroot x86_64 WPE kiosk not running in QEMU
Building small and basic Linux system with Buildroot, the goal is to run it as kiosk. My approach is to use wpe, cog and cage My defconfig is as follows: BR2_x86_64=y BR2_TOOLCHAIN_BUILDROOT_MUSL=y ...
3 votes
1 answer
2k views
How to use pkg-config with vcpkg and cmake?
I'm working on a cmake project with vcpkg. After running vcpkg install mesa[*], I got an output: mesa provides pkg-config modules: # Mesa EGL Library egl # Mesa OpenGL ES 1.1 CM library ...
0 votes
2 answers
3k views
Meson ERROR: ['/usr/local/bin/python3']> is not a valid python or it is missing distutils
Here's the full log of the meson log: Link to Google Drive My copy of python3 Python 3.12.0 (main, Oct 16 2023, 16:36:20) [GCC 11.4.0] on linux was compiled by myself (i followed the instructions), ...
0 votes
1 answer
2k views
How to install OpenGL in Yocto to resolve "No GL implementation is available" error
I'm encountering an issue when running an application on my Yocto-based system, and I'm getting the error message: Failed to start Flutter renderer: No GL implementation is available. Additionally, ...
0 votes
0 answers
160 views
Why does make return errors when compiling mesa?
I am trying to compile mesa (as part of the compilation process for xcrysden) and I have an error in the make process that I don't understand how to fix. I am quite unfamiliar with using make so any ...
0 votes
1 answer
1k views
Ways to reduce memory transfer overhead in OpenGL ES 2.0 / OpenGL 2.1 with EGL 1.4 for rendering offscreen
I'm fairly early into trying to do some image manipulation tasks on a headless embedded device running linux with a MALI 400 GPU. This supports OpenGL ES 2.0 through an official driver, and possibly a ...
-2 votes
1 answer
2k views
OpenGL will not work on Docker container,Mesa installation is not solving the issue
I installed the mesa utilities with the following command in the docker file: RUN apt-get install -y libgl1-mesa-dev freeglut3-dev mesa-common-dev but I am getting the error: from OpenGL.raw.GL ...
0 votes
1 answer
2k views
How to solve import error from mesa.visualization.UserParam?
Import error: cannot import name 'UserSettableParameter' from 'mesa.visualization.UserParam' pip list error error I Checked Conda list and pip list, both of them have mesa installed and tried several ...
0 votes
0 answers
582 views
Obtain dmabuf fd for EGLImage
I have testing code of logic [producer code] EGLImage image = eglCreateImage(egl->dpy, egl->ctx, EGL_GL_TEXTURE_2D, (EGLClientBuffer)(uint64_t)gl->texture, NULL); ...