WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
1–10 of 128 posts
Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#2Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#3Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#4This is great. I’ve been looking for a GPU-accelerated terminal written in Rust and haven’t been able to find one. Glad to see someone finally wrote one.
Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#5> WezTerm is a GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust This is great. I’ve been looking for a GPU-accelerated terminal written in Rust and haven’t been able to find one. Glad to see someone finally wrote one.
Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#6Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#7I don’t do much low level graphics stuff, but a terminal seems fairly simple graphically, you are just drawing glyphs at xy cords. Would love it if someone had a good explanation.
Obviously there are some terminal applications that could be redrawing very quickly, but that seems like a solved problem.
Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#8This is an honest question. What is the advantage of GPU acceleration for a terminal emulator? I don’t do much low level graphics stuff, but a terminal seems fairly simple graphically, you are just drawing glyphs at xy cords. Would love it if someone had a good explanation. Obviously there are some terminal applications that could be redrawing very quickly, but that seems like a solved problem.
You might not notice the difference until you accidentally unleash a lot of output at once - then you'll see the difference. Some terminals start to update infrequently to save themselves, some hang completely while burning the CPU.
Psychologically I feel more in control of my computer, more confident to try things out if I can see my typing updating instantly than 10s or 100s of milliseconds later.
Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#9> WezTerm is a GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust This is great. I’ve been looking for a GPU-accelerated terminal written in Rust and haven’t been able to find one. Glad to see someone finally wrote one.
Alacritty?
Re: WezTerm – A GPU-accelerated cross-platform terminal emulator and multiplexer
#10This is an honest question. What is the advantage of GPU acceleration for a terminal emulator? I don’t do much low level graphics stuff, but a terminal seems fairly simple graphically, you are just drawing glyphs at xy cords. Would love it if someone had a good explanation. Obviously there are some terminal applications that could be redrawing very quickly, but that seems like a solved problem.