Earlier quoted context omitted.
Isn't rendering text inside a graphics framework and then saying that rendering text is surprisingly resource-intensive a bit like implementing an O(n log n) algorithm with nested for-loops and saying that the problem domain is surprisingly resource-intensive? Surely the thing that was causing text rendering to be resource-intensive was doing it inside a graphics framework?
Rendering text, is resource intensive. If you don't rotate or zoom, then most of the work can be cached (at least when using latin fonts with few ligatures) which make things appear to be fast, but if you tried to render text in real time without caching (because you're allowing rotation and zoom, and you can't cache everything) then you'd see how expensive it is.
Rio: Terminal app built over WebGPU, WebAssembly and Rust
61–70 of 134 posts
Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#62Earlier quoted context omitted.
Apple didn’t get the memo it seems. Terminal.app has been unchanged in many, many years. I still stubbornly use it as my daily driver for some probably terrible reason.
With iTerm.app, getting a message that "your system ran out of application memory" is a reason for me to stick to the Terminal.app. It's a 96 GiB of RAM machine, for chrissake! That ought to be enough for everybody!
Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#63Earlier quoted context omitted.
VSCode's terminal is rendered with WebGL (a cousin of WebGPU), since VSCode is an Electron app
WebGL is not really related to WebGPU in any way. WebGL is almost a strict subset of Gles3, WebGPU is a completely different API, sharing on a few concepts. They're about as related as Java and JavaScript
Also- VSCode is literally an example of a use-case where you might do this in WebGPU, they just didn't
Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#64I'd love some sixel support to embedded graphics in the terminal
Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#65Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#66Sometimes "now with added GPU" is not the issue at all. There's a demo program that comes with libcaca, called cacademo. It can either output text to standard output with ECMA-48 control sequences, or crank up a built-in X client that displays a very simple text window. I SSHed into a remote machine with it from a local machine that had an X server. Tunnelled over the SSH connection, the X version of the demo was a l…
Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#67Earlier quoted context omitted.
How on earth have you had iTerm use up so much memory it's given you an error? I've been using iTerm for years on some absolute crap machines, abusing iTerm with tmux and numerous customizations, and have never received that error.
Unlimited scroll buffer + compiling something large with verbose logs non-stop?
Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#68My question is what's their selling point, I used the past few years few terminals that have pretty good features: - Alacritty minimal and blazingly fast - Wezterm with batteries included - Warp even batteries included
Meanwhile I have to wonder what's the selling point of these over good old urxvt? It has an ecosystem of perl plugins, which has all the batteries I need and more. In its daemon/client mode I can have 20+ terminal windows open and they consume sum total of like 30MB memory, with embedded perl interpreter and everything. I feel like one or two instances of these modern incarnations is enough to completely dwarf that n…
Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#69But.. why? Couldn't you just use Rust + OpenGL/SDL2/.. or even AppKit if macOS is the only supported OS?
Re: Rio: Terminal app built over WebGPU, WebAssembly and Rust
#70I have news for whoever did that screen shot: 256 colours is not "all colours" nowadays. (-: There was a real push, which must be approaching a decade ago at this point, to get all terminal emulators able to understand the ITU-T T.416 control sequences for direct 24-bit RGB colour. Even if they implement it really badly , and some do, almost everyone tries to support this colour system now. See the screenshot of the…
Apple didn’t get the memo it seems. Terminal.app has been unchanged in many, many years. I still stubbornly use it as my daily driver for some probably terrible reason.