2026-02-26 8:48 AM
I'm planning to use ImGui as framework for creating a GUI application on the MP257 processor.
The ImGui is bloat-free e.g it only uses the GPU hardware (OpenGL, Vulkan, etc...) to visulize the graphics such as buttons, menu, labels etc.
Will an application like this work smoothly in MP257?
Solved! Go to Solution.
2026-02-26 10:11 AM
Yes, it should work smoothly on STM32MP257, provided GPU acceleration is properly enabled.
ImGui itself is lightweight, but performance will depend entirely on whether you’re using the hardware GPU (OpenGL ES/Vulkan) and not falling back to software rendering. If the GPU stack (EGL/Wayland/DRM) is configured correctly, it should be fine for typical UI workloads.
2026-02-26 10:11 AM
Yes, it should work smoothly on STM32MP257, provided GPU acceleration is properly enabled.
ImGui itself is lightweight, but performance will depend entirely on whether you’re using the hardware GPU (OpenGL ES/Vulkan) and not falling back to software rendering. If the GPU stack (EGL/Wayland/DRM) is configured correctly, it should be fine for typical UI workloads.
2026-02-26 11:44 AM
Thank you very much!
Yes. I will use as much as the GPU as possible. Very little CPU use will be done here!
SDL3 + Vulkan will be the backends.