this post was submitted on 10 Oct 2024
71 points (97.3% liked)

Linux Gaming

15136 readers
28 users here now

Discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck). Potentially a $HOME away from home for disgruntled /r/linux_gaming denizens of the redditarian demesne.

This page can be subscribed to via RSS.

Original /r/linux_gaming pengwing by uoou.

Resources

WWW:

Discord:

IRC:

Matrix:

Telegram:

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 20 points 1 week ago (2 children)

So arm 16k emulates arm 4k which emulates x86, and somehow the performance is great. I am without words.

[–] [email protected] 8 points 1 week ago

I wonder how Apple's wine fork handles this since presumably games are still expecting a 4K page on MacOS.

[–] [email protected] 3 points 1 week ago (1 children)

Most games rely more on GPU than CPU, nowadays. So, it's not really all that surprising.

[–] [email protected] 4 points 1 week ago

That’s not what is surprising.

Gaming under emulation is not exactly easy stuff even under optimal conditions, when your drivers and userland are not experimental/hacks and you are running on the same architecture - try doing AAA gaming on Linux using a windows VM and you will see.

Setting aside gaming for a moment, cross-architectural emulation is stupidly slow because it cannot use any hardware features, it’s all software work on the cpu. Do you have a Linux machine? Try downloading a Firefox binary for another architecture (aarch64 for example) and run it, try watching a youtube video, if you haven’t died of old age in the meantime. Now Apple has this rosetta magic thing to emulate x86, but it was never meant to run (and it was never used before) on bare metal Linux.

Now what happens here is that there is a vm that runs a vm of a different architecture (arm 64k vs arm 4k) that runs another vm of different architecture (x86), and somehow you can game on it with competitive performance. All of it with a dnf install.

Simply put, this is unheard of.