Source is this video:

Windows Was The Problem All Along - Dave2D

We could obviously compare performance between windows and steamOS before on the steam deck, or between windows and Bazzite on other handhelds. But this is the first time we have had official windows and SteamOS builds for the same hardware.

  • @[email protected]
    link
    fedilink
    English
    13025 days ago

    the gains come from the reduced overhead that linux has compared to windows

    literally the next line

    …the games here are being run through proton

    I really hate the dismissal of the heavy lifting proton does. Proton is what makes gaming on Linux so great. So many native linux games perform worse on Linux vs their windows counterparts. Then again, I’d expect nothing less from Dave2D

    • Ulrich
      link
      fedilink
      English
      624 days ago

      I really hate the dismissal of the heavy lifting proton does.

      What part of this did you interpret as a dismissal?

    • @[email protected]
      link
      fedilink
      English
      2025 days ago

      Yeah its wine/proton and linux together. Wine/Proton efficiently handles translating the Windows programmes API calls into POSIX calls while Linux seems to offer a lower OS overhead so there is more system resource available for the games.

      I do think Proton gets a little too much credit. Its wine plus faudio, dxvk and other open source projects combined. Proton is great but it is standing on the shoulders of giants.

      • @[email protected]
        link
        fedilink
        825 days ago

        Agreed. Proton is important as a bit of an “iPhone moment” where all this tech comes together in a way where non-techies “get it” in the sense where they understand why it’s useful, even if they’ll never bother to learn the details of why or how.

      • @[email protected]
        link
        fedilink
        323 days ago

        I do think Proton gets a little too much credit.

        Why? Valve has been sponsoring all these projects for a really long time. While wine existed before that, it wouldn’t be anywhere near the shape thats its currently in because gaming was not its main focus. There have been loads of gaming bugs and sharp edges that have been around wine for a long time until Valve put in the money and devs to fix them.

    • @[email protected]
      link
      fedilink
      325 days ago

      I also wonder how much of it is RADV vs AMDGPU drivers. Wonder what the result would have been if the Deck used the AMDGPU drivers instead. Saying it is just “the magic of Linux” papers over a lot.

      • ℍ𝕂-𝟞𝟝
        link
        fedilink
        English
        325 days ago

        I think it doesn’t really matter, in the end the question is, do I get a better experience as a consumer on Linux or Windows?

    • @[email protected]
      link
      fedilink
      11
      edit-2
      25 days ago

      What does proton do?

      I only vaguely understand it as “thing that makes game playable on other thing.”

      (And also I have six versions installed on my steam deck whydoIneedsixofthese?)

      • @[email protected]
        link
        fedilink
        English
        425 days ago

        Most simply put, it’s a layer that allows a computer program expecting windows to run on Linux. It isn’t emulating anything, just sorta like translating.

        Think of it like a language. Windows speaks English, so a program expects to talk in English. But let’s pretend like Linux talks Spanish. Proton translates the English commands to Spanish for Linux to understand and execute, and then Proton converts the responses back to English for the program.

        • ℍ𝕂-𝟞𝟝
          link
          fedilink
          English
          825 days ago

          The big thing though about Proton is that it’s not an additional translation/emulation layer. It doesn’t translate into Spanish for Linux, as that would be slow, it makes Linux talk English.

          So in your example, imagine you, the English speaking program, want to catch a taxi in Madrid/Linux but all taxi drivers speak only Spanish. An emulation layer would be “translating”, so you would have an additional guy in the taxi that you could talk to that talks to the Spanish driver. Proton is not that, it’s an English-speaking taxi driver.

          • @[email protected]
            link
            fedilink
            325 days ago

            Proton uses Wine, which is a Windows system call API translation layer for Linux. In other words, it translates commands for the Windows kernel into calls for the Linux kernel.

            So it’s kind of an emulator and kind of not, but regardless the metaphor of a translator is fine. As a lightweight translator, you might say it’s like using Google Translate on your phone to translate back and forth quickly and automatically, rather than having a person in the middle who needs to think about it.

            • Adam
              link
              fedilink
              English
              224 days ago

              I’d say it’s something like a babelfish. You speak English, I hear Spanish.

            • @[email protected]
              link
              fedilink
              English
              424 days ago

              In Software Design terminology, Wine and DXVK are “adaptor” layers (each convert one kind of API interface into a different kind - Wine doing Windows API to Linux API conversion and DXVK doing DirectX API to Vulkan API - and nothing more) whilst Proton is more a controller that just manages those things and adds some more functionality on top such as Steam integration for ease of use.

              Without Proton users would have to know a bunch of command lines parameters and environment setup to launch all the right components with the right configuration so that they can first install and then run their Windows game in Linux. In fact this is the situation if you use Wine directly without something like Lutris to do a similar work as Proton.

              Personally I prefer Lutris since it’s more flexible - for example I can configure it to run games sandboxed with networking disabled - and it’s not tightly bound to a single games store.

              • @[email protected]
                link
                fedilink
                424 days ago

                I used to use Lutris, but I found Heroic more consistent and convenient for filling the same purpose. It’s quite good at downloading just the diff needed for GoG game updates these days, for instance, which is key for big games like Baldur’s Gate 3.

          • @[email protected]
            link
            fedilink
            English
            125 days ago

            I think the example you’re using is closer to emulation.

            I’m not an expert by any means, most of my technology experience comes from hardware. But Proton isn’t changing the Linux ecosystem, and the programs are still expecting a windows environment when they’re run via Proton.

            From what I recall, Linux and windows can both do the same stuff, they just have different names or different ways to ask for resources. And Proton receives the request for whatever and converts it to the Linux equivalent.

            It’s not nearly as bad as it was in the past, now that the graphics APIs are system agnostic.

            • Norah (pup/it/she)
              link
              fedilink
              English
              125 days ago

              Well, technically speaking, neither would be emulation because both systems are running on x86.

      • @[email protected]
        link
        fedilink
        525 days ago

        I think it’s what Valve has branded their fork of Wine. It translates win32 calls to Linux ones, and DirectX to Vulkan. Probably some other stuff too idk

        • @[email protected]
          link
          fedilink
          625 days ago

          Proton is Wine plus DXVK and VKD3D, as well as a big pile of little tweaks and out of tree changes that Valve maintains to specifically maximize game compatibility and performance.

          • @[email protected]
            link
            fedilink
            English
            1
            edit-2
            23 days ago

            It sounds a lot like what the GPU driver providers used to do (and probably still do, despite all DX12 and Vulkan’s promises of making that unnecessary) on top of making the drivers.

            And that is basically “fixing badly written games so they perform well on the hardware”.

            As far as I can tell, Intel has been using Proton’s fixes DXVK to get their drivers working on older games on Windows

            • @[email protected]
              link
              fedilink
              223 days ago

              DXVK is not “Proton’s fixes”. It exists as a separate entity whose development Valve has helped fund and who Valve devs have directly contributed to.

              Proton’s fixes are out-of-tree tweaks to DXVK, Wine and VKD3D that, put together, make games work much more seamlessly and smoothly than they otherwise would.

      • @[email protected]
        link
        fedilink
        English
        2725 days ago

        Proton is the compatibility layer that valve makes that lets you run games on Linux. Proton uses DXVK a program that converts Direct X API calls (windows only) to Vulkan API calls (runs on anything). DXVK alone gives you huge performance benefits (especially on older DirectX 11 and older games) and you can run it on windows.

        Proton gives you a ton of other tools that can make huge performance differences.

        • @[email protected]
          link
          fedilink
          1125 days ago

          Hopefully not a dumb question: If Vulkan runs on anything, assuming their game isn’t a Windows (Xbox?) exclusive, why don’t more people program their games to use Vulkan instead?

          • @[email protected]
            link
            fedilink
            English
            1225 days ago

            Vulkan is designed to be closer to the metal than something like DirectX 11 or OpenGL, which makes the API more explicit and difficult to use. This means it requires a great deal more care to use properly. And to complicate matters more, subtle bugs that are very difficult to debug are very easy to introduce.

            But, this applies mostly to devs who build their own tech. Most of them these days are just using 3rd party engines like Unity or Unreal, so it comes down to whether or not the person making the game decides to check the box to use Vulkan and just how good those render backends are. Engine developers of 3rd party tech have to build their stuff to be as generic as possible. That’s likely gonna add a lot of bloat that might not be fully optimized for every game developer’s use case.

            TLDR: It’s tough and time consuming for someone writing it themselves. And for the ones who aren’t, they’re having to place a lot of trust in a renderer that is probably a black box and might be buggy/slow.

          • jevans ⁂
            link
            fedilink
            English
            2325 days ago

            It’s becoming more common, but it mostly comes down to available tooling. At this point all three of the big game engines have a Vulkan backend available, but that’s a fairly recent development. And if a developer isn’t using a game engine, writing their own openGL renderer is easy, and writing a Vulkan renderer is a nightmare.

            • @[email protected]
              link
              fedilink
              1325 days ago

              Also a lot of old proprietary game engines were written either specifically for DirectX or additionally for DirectX because in the olden times it was the most advanced and compatible rendering software.

              Then, those developers move forward in time to work on other engines and focus primarily on DirectX because it’s still good, compatible, and it’s what they know best. OpenGL languished and it took a while for Vulkan to come out, catch up, and standardize their API.

          • @[email protected]
            link
            fedilink
            English
            1425 days ago

            That my friend, is entering operating system politics.

            But the TLDR is: resistance to change, lack of support, bribery, a combination of all 3, features, and much much more!

        • @[email protected]
          link
          fedilink
          425 days ago

          I’ll add for completeness that vkd3d-proton handles DX12 titles, and of course OGL and Vulkan are supported natively.

    • FubarberryOPM
      link
      fedilink
      English
      225 days ago

      I’m not sure what you’re saying. Proton is incredible obviously, but by itself it doesn’t make games run better. Using vulkan instead of DirectX could improve performance, but presumably most of the performance gain is from not running windows in the background.

      • @[email protected]
        link
        fedilink
        225 days ago

        It’s a bit of both, along with the Linux AMD drivers being superior in many cases to the Windows drivers.

    • Ephera
      link
      fedilink
      English
      10325 days ago

      I mean, yeah, but if Proton is doing an absolutely flawless job, then it has 0 performance penalty compared to Windows. All the actual gains still do come from Linux having less overhead. So, both are true, that Proton is killing it and that the gains come from Linux.

      • @[email protected]
        link
        fedilink
        English
        4525 days ago

        DXVK (which also runs on windows) alone gives you a huge performance benefit. Playing world of warcraft on windows I’ll see about a 30% reduction in CPU usage and higher performance.

        Proton doesn’t just get you to almost matching Windows’ performance. Proton easily outperforms windows even on higher end hardware where windows bloat isn’t a concern.

        • FubarberryOPM
          link
          fedilink
          English
          4625 days ago

          While proton enables that, that’s still just vulkan outperforming DirectX.

          So technically proton isn’t improving performance here, it’s just allowing the game to run on better performing systems (like Linux and vulkan).

          • Cethin
            link
            fedilink
            English
            825 days ago

            It’s just Vulkan outperforming DirectX by translating DirectX to Vulcan. If you’re comparing the default experience with Windows and Linux, how can you say Proton isn’t technically improving performance? What would you call that if a performance increase is caused by running through Proton?

            • @[email protected]
              link
              fedilink
              English
              924 days ago

              As pointed out higher up this thread DXVK and Vulkan also work in Windows (without Proton) were they give performance improvements.

              Further, it’s perfectly possibly to run Windows games via DXVK and Vulkan in Linux without Proton - just use plain Wine (of which Proton is a branch) instead - and you also get the performance improvements (certainly that’s my perception in my system since I tend to get my games from GoG instead of Steam when available and thus run them via Wine instead of Proton).

              So that’s at least two situations were the performance improvements are present without Proton, hence you cannot logically claim they’re due to Proton, even indirectly.

              Logically the place most likely to yield performance improvements is the full implemention of a rendering stack directly on top of the hardward which even has its own architecture - Vulkan - since there’s a lot more room to improve usage of hardware resources at that level, though things like pre-conversion and caching of Vulkan shaders from DirectX shaders, which are done at a higher level (Proton or DXVK), can also improve performance.

              It’s possible that Proton itself is delivering some performance improvements (for example, via the trick of, pre-converting shaders from DirectX to Vulkan before game start, uploading the generated shaders to the Steam servers and then other users just download the converted shaders and do not require that step, which should speed up game start tough I have at least one game were it actually can slow down A LOT game start because the generated shaders are massive) versus solutions using DXKV + Vulkan without Proton, but that’s not really enough to sustain a claim that the performance improvements are mainly thanks to Proton in the face of also seing the performance improvements when Proton isn’t there.

              • Cethin
                link
                fedilink
                English
                3
                edit-2
                24 days ago

                So that’s at least two situations were the performance improvements are present without Proton, hence you cannot logically claim they’re due to Proton, even indirectly.

                Except these tests were almost certainly being run on SteamOS using WINE with Proton. We can’t know what the numbers would be with any other setup without doing it. Would a Protonless DXVK for WINE run just as well? We can’t know from these figure.

                Also, Proton does not require running through Steam. I play Epic, GoG, and otherwise sources games with Proton not through Steam all the time. It’s also more than just DXVK. That’s a big part of it though.

                No one is arguing that DXVK isn’t important or anything like that. They’re just saying Proton is a piece of this, which includes DXVK. I don’t know why you’re arguing.

    • @[email protected]
      link
      fedilink
      324 days ago

      For every game that you claim runs worse on Proton you can find dozens that run better or at least as well as Windows.

  • fox2263
    link
    fedilink
    English
    14
    edit-2
    24 days ago

    I’d love to know what windows figures would be like with a stripped down guts ripped out windows, such as revi.cc.

      • fox2263
        link
        fedilink
        English
        323 days ago

        Very similar. I preferred Revi in my testing last year as there was less added stuff and wasn’t as “gamers fuck yeah”

    • @[email protected]
      link
      fedilink
      1524 days ago

      pls dont suggest this blatantly obvious russian/us/chinese surveillance tool jesus chriat pls dont tell me people actually use this… if youre worried about security use a hardened linux distro this is just crazy

      • @[email protected]
        link
        fedilink
        4
        edit-2
        23 days ago

        No, this one is different. It’s not an ISO you download (those are extremely sus and you would be right to be skeptical of them), but instead an open source set of scripts you apply to an existing Windows OS.

        Edit: see my comment below, it seems to be partially closed source.

        https://programming.dev/comment/17189096

        • @[email protected]
          link
          fedilink
          124 days ago

          Not OP, but I assume it’s got something to do with entrusting an unaudited, closed-source 3rd party to significantly alter your OS.

          There are plenty of similar tools available, which are both open source and can be run by the end-user over a stock Windows installation.

          • fox2263
            link
            fedilink
            English
            224 days ago

            But it is open source …

            https://github.com/meetrevision

            The playbook is for Windows AME of which there are some other playbooks and is also open source.

            Although it seems like there’s a cloudflare issue accessing their self hosted git but I’m pretty sure I’ve seen it before 🤔

            There’s also the unattended scripts and other windows debloaters that can be ran. My original point being I’d like to see a stripped down windows 11 vs steamos

            • @[email protected]
              link
              fedilink
              223 days ago

              This is only one half of the open source. Those scripts are not poweshell or bash scripts, but instead something simimar to Ansible, run through the Windows AME wizard.

              Which I cannot find the source code for. Great!

              I think this is the command line onlu version, but the GUI versiom appears to be closed source.

  • @[email protected]
    link
    fedilink
    English
    4125 days ago

    So I’m not insane. Monster Hunter Wilds and Helldiver’s II both run better on my Ubuntu image with the same hardware than my Windows 10 image.

    Does that mean that Proton and Vulkan are far more efficient than Direct3D?

      • @[email protected]
        link
        fedilink
        English
        1124 days ago

        Probably this. Especially on low end hardware that doesn’t really have a lot of background resources to give.

        Just open task manager and see all the shit windows thinks is essential to run all the time. Scanning the drive for viruses, downloading updates for shit you’ve never even looked at…

      • @[email protected]
        link
        fedilink
        4
        edit-2
        24 days ago

        They say I/O schedulers on Windows are weird.

        Edit: or was it CPU schedulers? I’m sure i’ve read something about this forever ago.

        • @[email protected]
          link
          fedilink
          15
          edit-2
          24 days ago

          Yes/no.

          The linux scheduler is a work of art - heuristics to dynamically determine resource access priority, checks for resource locking that are some of the most elegant pieces of code written by humanity, incredibly adaptable and clever. It took me the better part of a year before I really understood the underlaying mechanics, and even now I could by no means reproduce it on my own. It’s truly an amazing bit of mathematics.

          Windows solves the same problem by randomly elevating processes to maximum priority. That’s it, that’s the whole algorithm.

          Depressingly, they’re equally effective.

    • FubarberryOPM
      link
      fedilink
      English
      2025 days ago

      My understanding is that vulkan is generally more efficient than directX.

    • @[email protected]
      link
      fedilink
      1324 days ago

      SteamOS is able to launch a desktop environment where you can do anything you want. It is just an OS like Windows, but better.

      • @[email protected]
        link
        fedilink
        123 days ago

        Cool, can you run video rendering software on it? How about some cli? Can you delete packages? Or even remove the french language?

        • 1ostA5tro6yne
          link
          fedilink
          223 days ago

          yes, it’s a desktop OS. it’s literally arch linux. i have a friend who slaps the steamos recovery image on every pc now and just uses it as their go-to daily driver.

    • @[email protected]
      link
      fedilink
      4224 days ago

      It’s impressive that’s still the case when SteamOS is running a translation layer that Windows doesn’t have to.

      Also, SteamOS is actually a pretty fully-featured OS, and it’s based off of Linux, so it’s not that specialized, besides the UI.

      • @[email protected]
        link
        fedilink
        524 days ago

        Yeah it’s basically Arch with KDE Neon/gamescope that runs Steam in Big Picture mode with an immutable file system. That’s why Bazzite is able to make a StramOS-like experience. The hardest things are the hardware-specific tweaks.

    • @[email protected]
      link
      fedilink
      424 days ago

      If I had a trillion dollars, and no desire to add telemetry bloat to my OS, and I’m incentivized to compete in the market…

    • @[email protected]
      link
      fedilink
      English
      1624 days ago

      Maybe I need Cortana, Microsoft Excel, and OneDrive while I play Doom Eternal. You don’t know me.

    • Oniononon
      link
      fedilink
      English
      5
      edit-2
      24 days ago

      Thibking bout that time a discord admin told me windows and linux use the same amount of resources and she knows cause she works in it.

      • Lv_InSaNe_vL
        link
        fedilink
        123 days ago

        Well yeah duh windows and Linux use the same resources. I don’t put more memory in my computer when I boot into Linux…

  • barnaclebutt
    link
    fedilink
    3124 days ago

    Hmm, it’s like having spyware constantly run in the background slows down the computer?

  • Lettuce eat lettuce
    link
    fedilink
    4123 days ago

    Valve doubling down on Linux as the default OS on the Steam Deck was such a great decision. It obviously has given them a massive competitive edge. Windows has become so horribly bloated, and Microsoft has almost zero interest in making it run more efficiently.

    • @[email protected]
      link
      fedilink
      15
      edit-2
      23 days ago

      Personally I feel what it gave them - primarily - was the ability to be independent of Microsoft, not beholden to them in any way whatsoever, and not having to pay them any license fees.

      The fact that after putting so much work into making Proton and that whole toolchain amazing it actually turned out faster than Windows, well, that’s juat the delicious icing on the cake, from a commercial perspective.

  • c1a5s1c
    link
    fedilink
    English
    2124 days ago

    makes a lot of sense honestly. I never knew the numbers behind it (tks for sharing). when I was ripping witcher 3 on nobara and then changed my OS back to Windows due to work related issues, I felt a SIGNIFICANT performance drop. the game became laggy, when it used to run top on Linux with the same settings. good share - the time for Linux gaming is now.

    • @[email protected]
      link
      fedilink
      English
      125 days ago

      So for real though, while it’s disappointing and I am nowhere near the 500+ hours i have put in previous titles, the hardware is not going to do it. The game eats VRAM like my brother’s ex ate cake.

      But, I get about 5 fps @2k and 9FPS@1080p better on my Ubuntu image than my Windows 10 image.

      Ryzen 9 5900x Radeon RX 7900 XTX 24GB 32GB DDR4, both images are on different 1TB nvme drives

      So while, no you can’t, it’s closer.

    • Ulrich
      link
      fedilink
      English
      124 days ago

      The processor is not terribly power, so probably not.

    • FubarberryOPM
      link
      fedilink
      English
      7
      edit-2
      25 days ago

      If you want something capable of running at an actually steady frame rate I’m not sure any computer can accomplish that without some serious tweaking.

      Also if you’re wanting to play on deck you might try this guide.

        • FubarberryOPM
          link
          fedilink
          English
          224 days ago

          I was kinda joking, but the game still stutters and has fps drops regardless of the hardware it’s run on. Digital Foundry has a pretty scathing performance review of it.

          It’s certainly playable on good hardware (assuming you aren’t super bothered by dips), but it also performs way worse than it should at any hardware level.

          I don’t consider the game a good performance benchmark for any piece of hardware because it’s performance is abnormally bad, and there’s no hardware where it can run without issues.

      • Gristle
        link
        fedilink
        English
        125 days ago

        thanks, bookmarked for when it goes on sale. none of my hardware is acceptable enough for the specs.

  • @[email protected]
    link
    fedilink
    English
    325 days ago

    Now what about windows 10 ltsc iot, the ONLY version of windows worth comparing to linux.

    • @[email protected]
      link
      fedilink
      1925 days ago

      IMHO you shouldn’t have to run a stripped down Windows to get good results. It should just work that way out of the box. LTSC is not supposed to be a consumer OS.

        • 1ostA5tro6yne
          link
          fedilink
          1
          edit-2
          23 days ago

          this is the funniest thing i’ve read all week. Arch comes with the kernel, some generic drivers, BASH, and the package manager. there’s nothing to strip down, the only way to start with less is to download the kernel and roll your own from scratch.

        • @[email protected]
          link
          fedilink
          324 days ago

          But it comes with consumer devices. Preinstalled, just like Windows does in whatever version they compares here.

          • @[email protected]
            link
            fedilink
            1
            edit-2
            24 days ago

            So? That still doesn’t change the fact that SteamOS is a stripped down version of Linux that can’t do everything a Linux computer can do.

            So the comparison is flawed.

            It is like comparing a Swiss army knife to a regular knife. The regular knife is going to be better at cutting, but it won’t do any of the other things a Swiss army knife can do

            • 1ostA5tro6yne
              link
              fedilink
              1
              edit-2
              23 days ago

              no.

              SteamOS is based on Arch, which is what I’m running right now.

              Arch comes with the kernel, a package manager, some generic drivers to get you started, and a CLI. That’s it. Zero bloat. You then add what you need/want on top of it.

              It’s not “stripped down”, it’s not hobbled for the sake of extra performance, it actually has more system components than my daily driver. You can get ahold of the recovery ISO and go install it on any box, it’s not really super specialized beyond supporting video games.

              hell i have a friend who slaps steamos on everything anymore because it works out of the box everywhere and does everything just fine. it’s absolutely not some hobbled abnormal linux, it’s a fully featured OS that does everything just fine.

              “De-bloating” and “stripping down” are things Windows users do, because Windows is bloated and fucky and awful. That’s just not a thing on Linux dude.

        • @[email protected]
          link
          fedilink
          925 days ago

          Arch is a stripped down version of Arch.

          Linux isn’t monolithic like Windows, so it can be purpose built for anything.

          Windows LTSC is designed for things like kiosks, ATMs, etc that have a long service life. It’s not made for gaming. It doesn’t even include things like DirectX by default, IIRC. You have to add it.

      • @[email protected]
        link
        fedilink
        English
        124 days ago

        Shouldn’t have to, absolutely, but its done anyway, so I think its can be relevant.

        Until that last little bit of stuff I have to use windows for becomes linux native or at least doesn’t have a tutorial to make it work that makes my eyes cross, its just easier for me to use my stripped down windows install because it just works.

      • @[email protected]
        link
        fedilink
        225 days ago

        I think it’s a valid comparison request due to some things just flat out not being compatible with Linux.

        • @[email protected]
          link
          fedilink
          2
          edit-2
          25 days ago

          Pretty much everything will run on Linux now. It’s just the companies behind the games being dumbasses and blocking it with their anti-cheat.

          • @[email protected]
            link
            fedilink
            425 days ago

            There is plenty of software that doesn’t, and plenty of games that don’t run on Linux, even beyond anticheat games. If it wasn’t true, we wouldn’t need protondb telling us what is and isn’t. You can advocate for Linux all day, but you have to admit there is still software that is 100% Windows only.

            • @[email protected]
              link
              fedilink
              124 days ago

              I was specifically referring to games as a subset of software in general. Generally, I haven’t run into a game that doesn’t “just work” on Linux unless the developer has non-working anti cheat. Are there any major games you’ve tried that that wasn’t the case?

              As for all software, we still have work to do there.

              • @[email protected]
                link
                fedilink
                224 days ago

                I was going to put an explanation on why I can’t use Linux, but it doesn’t matter. I’m someone who can’t make the leap yet with the software and game services I use. I want to be, but I just can’t yet.

                This is why the original commenter shouldn’t get downvoted for asking about 10 iot benchmarks because I, too, am looking to convert to this version when consumer 10 support ends this year. If it works on my desktop well, I’d likely try it on my Rog Ally.

  • @[email protected]
    link
    fedilink
    1523 days ago

    Valve won. Maybe it’s lucky timing, or maybe Gabe is actually a genius, but it’s only going to get worse for Windows as there is no way in hell Microsoft shifts resources from AI projects to make Windows better for PC gaming. Recently, Capcom announced that their PC gaming sales surpassed their console sales, and I don’t think it’s likely we’ll see that trend changing, and it’s also likely other publishers will make similar announcements soon (although idk if they count SteamOS as a console). The Switch 2 is coming out soon, but people already say it’s too expensive, and there are controversies surrounding some of their product decisions.

    Will this bring about the era of the Linux desktop? Idk, but the era of the Linux gaming PC is inevitable now.

  • @[email protected]
    link
    fedilink
    9125 days ago

    A performance uplift plus double or tripled battery life compared to running on Windows…hot damn that’s impressive.

    Get rekt Windows.

    • ddh
      link
      fedilink
      English
      20
      edit-2
      24 days ago

      What’s nice is that Microsoft today doesn’t have capability to improve in the short or even medium term. They could drop a billion dollars into it and it would still take them years to improve their offering, if they can at all.

      • Ulrich
        link
        fedilink
        English
        224 days ago

        I disagree. Take Windows, remove the bloat, slap a game-focused GUI on it, call it XBOX and Bob’s your uncle.

      • @[email protected]
        link
        fedilink
        English
        424 days ago

        It’s worse than that. MS could quickly turn the boat around. They have the cash. They have the manpower (well, have recently fired). The only thing they don’t have is THE ABILITY TO THINK ABOUT ANYTHING BUT AI AI AI AI GOTTA HAVE AI AIIIIIIII. The brainrot has eaten Nadella, and eaten the whole board.

      • @[email protected]
        link
        fedilink
        1324 days ago

        And why would they? They’re printing so much money, this niche probably doesn’t make a dent.

        It doesn’t matter if Windows is the best system for gaming. It just matters if people believe it is.

        You can always justify using Windows. “How do I get Game Pass to work on my handheld?” is probably something people care about.

        Granted this is an expensive way to lock customers into your platform, but they’re already doing it anyways, so no need to pour money into the OS experience when you can just sell services building on customer data.

        • @[email protected]
          link
          fedilink
          524 days ago

          It’d be great if they truly believed this, but that’s just the image they like to project, the truth is that this has them deathly afraid.

          You’ve got mainstream media covering it, folks like digital foundry openly talking about how Windows is the worst part of Windows handhelds. They can’t let this stand, so they’re actively working against it.

          Just like the faster zombies blog post in 2012 scared them into boosting d3d development and eventually led to the release of d3d12, this will make them actually invest in gaming for a change.

          All the chatter about xbox branded handhelds is an easy tell, but like the blog post we might not discover the true extent until years later.

          • A Wild Mimic appears!
            link
            fedilink
            224 days ago

            I am sure that MS is very concerned. If i take my usecase, the things that held me on windows from dos5/Win3.1 up to Windows10 were gaming and that i grew up with it. I sometimes dabbled in linux, but since there was no meaningful way to use my game library, i switched back, because even dualbooting made no sense (what for? just so i can boot back after browsing a few web pages?)

            This time after 3 days i deleted my windows partition, even while i was still fighting a bit with the Wayland/NVidia combo - that was shortly after the explicit sync drivers were available.

            The young’ins want to play their games, and now they can without ever coming into contact with microsoft at all if not for the anticheat-outliers (who knows, maybe there’s some money flowing that stops them from activating linux support? i know most anticheat in theory does work under linux). And if they start playing on Linux, there’s no reason for them to switch over to Windows at all.

        • @[email protected]
          link
          fedilink
          English
          324 days ago

          It’s not about the short term, it’s about the long term.

          Windows should consider proton and steam an existential threat.

          MS (and APR) give away their keystone software windows, office, etc in order to “get them young” and make sure that young kids grow up using their software.

          Majority of kids interactions with computers is mobile, gaming, and schoolwork.

          MS has nothing in mobile, gaming is getting more crowded and school both Apple and Google are muscling in

      • @[email protected]
        link
        fedilink
        English
        424 days ago

        I’d wager they could cut a lot of cruft from a handheld gaming device specific version of Windows.

        I bet Antimalware Service Executable is still randomly springing it’s way to the top of task manager in this build. All sorts of crap that just doesn’t need to be running. On my PC right now I can see Service Host: DNS Client at 1-4% all the fucking time. Random driver update checks that run in fucking Electron for some godforsaken reason. That kind of shit.

      • @[email protected]
        link
        fedilink
        724 days ago

        Because they aren’t just optimizing for gaming.

        Any change they make would influence their other markets as well, like general and office use.

        • @[email protected]
          link
          fedilink
          English
          424 days ago

          Realistically the design goals of a gaming OS vs a general desktop OS aren’t that different. You want to balance performance, batterlife/power consumption, and making sure it withstands insane abuse by users and software doing anything you could never imagine that nobody should have ever tried to do. About the only design goal that separates SteamOS from Windows is fleet manageability features

          • @[email protected]
            link
            fedilink
            123 days ago

            You are forgetting backwards compatibility with ancient software that Windows still supports after 30+ years.

            A lot of businesses need that in order to function.

        • Natanael
          link
          fedilink
          524 days ago

          They made an attempt. It’s called Windows RT. It’s a sandbox more locked down than iOS.

          The Win32 desktop environment isn’t built to support stuff like “timer coalescing” for all the API calls which all the software is designed to run continously in the background. Changing how it idles would change so many things which all kinds of software depends on that it would barely be the same OS anymore.

  • @[email protected]
    link
    fedilink
    3325 days ago

    They said make electric cars fast, and you’ll get car guys to buy in. It was true.

    Now they’re making linux make video games faster and prettier…

    I dont know if there will ever be a year of the linux desktop, but this is the kind of stuff you gotta do to get there.

    • Ulrich
      link
      fedilink
      English
      524 days ago

      I dont know if there will ever be a year of the linux desktop

      There won’t be. It won’t happen that quickly. If anything there will be a “decade of the Linux computer”.

      • @[email protected]
        link
        fedilink
        124 days ago

        Which I feel like were are at the beginning of, steam and proton are catalyzing the decade of linux right now.