-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PrusaSlicer no longer compatible with Pi4B or Pi5 OpenGL supported version #2560
Comments
Hello there 👋 Please respond as soon as possible if a Pi-Apps maintainer requests more information from you. Stale issues will be closed after a lengthy period of time with no response. |
according to an upstream commit, Prusaslicer switch to a minimum requirement of OpenGL 3.2 prusa3d/PrusaSlicer@1832c83 if there is an issue with the software renderer please report that upstream https://github.com/prusa3d/PrusaSlicer/issues |
@GTR2Fan, in addition to reporting the issue with the software rendering to prusaslicer, if you would like to help our development a little, try tricking PrusaSlicer into thinking that the OpenGL version actually is >= 3.2.
I could do this myself, but if you are a heavy user of the app, then you would be more likely than I am to find an edge case. |
ok update: that override works fine during a brief test. It fixes the blank white area issue. For now I want to add this workaround to all pi-apps users but first I would like @GTR2Fan to try the workaround and report back that it is stable and does not crash during normal use. |
I'm unable to get that fix to work. How are you implementing it? |
Just close any running windows of prusaslicer, then run this command in a terminal:
|
It works! I'll be using PrusaSlicer extensively over the next few days so will report back if I notice any problems. Thank you. |
Now I'm curious to know where you were trying to put that command earlier when you said it did not work. |
I've spent too long living in Windowsland so was attempting to add it to the Desktop Entry launch settings via right-click Properties.
|
Ah I see. Here is why that did not work: Only in a bash (or any) shell does There is a way around this.
Using Hopefully this info was interesting. :) |
Very interesting and informative. Thank you.
PS I've been using PrusaSlicer 2.7.2 all day on the Pi5 without a hitch.
…On Fri, 8 Mar 2024 at 17:20, Botspot ***@***.***> wrote:
I've spent too long living in Windowsland so was attempting to add it to
the Desktop Entry launch settings via right-click Properties.
Ah I see. Here is why that did not work: Only in a bash (or any) shell
does MESA_GL_VERSION_OVERRIDE=3.3 mean anything useful.
Outside of a bash shell, if you tried to run MESA_GL_VERSION_OVERRIDE=3.3,
it would literally try to find and execute a program with that full name.
Which obviously does not exist.
There is a way around this.
If you want to run PrusaSlicer and set this variable first, you cannot
directly specify the variable. Instead you have to run another program
first to set the variable, that then runs PrusaSlicer.
Here are 2 examples of ways to do that:
bash -c "MESA_GL_VERSION_OVERRIDE=3.3 /opt/PrusaSlicer.AppImage"
env MESA_GL_VERSION_OVERRIDE=3.3 /opt/PrusaSlicer.AppImage
Using env is simpler, more readible, and usually more preferable unless
you need to do something more complicated directly in the desktop file.
Hopefully this info was interesting. :)
—
Reply to this email directly, view it on GitHub
<#2560 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEFUCTOOBFBK6JZ2K6HFSXDYXHXNJAVCNFSM6AAAAABEL4434OVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSOBWGA4TSMZQGI>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Okay, I have added this fix to pi-apps. Closing this issue |
Confirmations
What happened?
App opens but with a warning of needing OpenGL 3.2 support.
Description
Accepting the warning allows PrusaSlicer to proceed with all elements visible except for the contents of the view window which remains white.
Is this a recent update to version 2.7.2? Whatever version Pi-Apps offered a few weeks ago worked flawlessly on a Pi5 running Raspberry Pi OS (Bookworm).
Can we please have a rollback to the previously available version? Apologies for not knowing what version that was, but I take no notice of version numbers when things are working as expected.
What are your system specs (run the following command in your terminal)?
(Recommended) Error log? Terminal output? Debug messages?
No response
The text was updated successfully, but these errors were encountered: