Replies: 1 comment 1 reply
-
I think the question is essentially whether there is an existing integration that works on embedded linux. But I don't know the answer, since I haven't worked with that platform and don't know its constraints. It should be noted that egui doesn't support no-std. Issue #2755 asked for it, but it was closed because no one at the time had a concrete use case. That makes it impossible to use egui in bare metal applications (except maybe ESP32), but I don't know if it's a problem for embedded linux. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have a native
eframe
app based that runs quite well on Linux and Windows, and we'd like to add the capability for it to run on an embedded linux tablet PC with no windowing system as a full screen app that uses the GPU directly (i.e. without X11). This allows us to demo and develop normally, but run on a stripped down OS. It's a medical device, so the less software on the tablet the better, where "better" means more reliability and security, with a nice dash of faster boot time for flavor.How would we approach adding support for a non-windowing, bare GPU full screen mode on Linux if X11 isn't present at runtime? Or, failing that, a separate build configuration?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions