What popular crates are available to build GUIs with widgets WITHOUT GPU?

For some reason, it seems popular for GUI crates to use the GPU. I just want to make simple widgets, for like a calculator.

No fancy graphics. I want it quite lightweight.

For some reason, popular GUI crates love to do everything through a GPU, which bumps up the memory / cpu use significantly.

15 points · 10 comments · view on lemmy.world

10 Comments

RunAwayFrog@sh.itjust.works · 13 pts · 3y (4 replies)

Funny you should mention that. I think iced as of four days ago can do this!

If I'm reading the release notes and Cargo.toml right, cargo add iced --no-default-features and you should be good to go, as tiny-skia will be used as a rendering backend instead of wgpu.

van2z@programming.dev · 13 pts · 3y (3 replies)

OMG, thank you! I have been using Iced. My simple application's RAM just went down from 80 MB to only 4 MB.

The executable size went down from about 8 MB to 2.5 MB

hch12907@programming.dev · 3 pts · 3y (2 replies)

8MB to 2.5MB is a huge drop. I wonder what caused the bloat - a crate?

Lmaydev@programming.dev · 6 pts · 3y (1 reply)

Most likely the GPU one

hch12907@programming.dev · 2 pts · 3y

Obviously.

I mean the specific crate that caused the bloat.

hunger@programming.dev · 11 pts · 3y (2 replies)

Slint fits the bill: We have a demo running on a line-buffer in a microcontroller with <300KiB of RAM. Framebuffers are of course supported as well, as is GPU-accelerated rendering.

BB_C@lemm.ee · 4 pts · 3y (1 reply)

Did you tick "Bot Account" by accident?

hunger@programming.dev · 4 pts · 3y

I did tick that, since I saw text boxes and went "give me everything" without reading:-)

Fixed. Thank you for pointing this out.

BlueToo@lemmy.world · -2 pts · 3y (1 reply)

How about Tauri? https://tauri.app/

spikespaz@programming.dev · 2 pts · 3y

You have much to learn Young Padawan. If you're wanting to make a desktop app in Rust it behooves one to avoid embedded web environments. For performance reasons of course.