Been creating several 3D sketches successfully on my Windows machine, now trying to get them to run on a new Raspberry Pi 3B+ that I bought. Whenever I try to run a script I immediately get a segmentation error. Based on my research I believe its an issue with OpenGL but I don’t know how to possibly fix it.
For example, this simple code:
void setup() {
size(640,360,P3D);
}
void draw() {
}
Gives error SIGSEGV Problematic Frame libjvm.so PhaseIdealLoop::build_loop_Late_post_work. Could not run the sketch (Target VM failed to initialize).
Running Processing 4.1.1 and on OS Raspbian GNU/Linux 11 (bullseye). Also please go easy on my with the Linux talk, this is my first experience using it, been strictly Windows before now. Thanks!