How are Linux gamers suddenly flexing higher FPS than native Windows users? It turns out the kernel wizards are baking Windows APIs directly into Linux.

Remember the dark ages when gaming on Linux was basically a form of digital masochism? You’d launch a game, pray to the open-source gods, and still get potato FPS. Fast forward to today, and Linux gamers are flexing hard—sometimes even hitting better performance than native Windows setups. What kind of black magic is this?
Back in the day, if you wanted to play a Windows game on a Linux machine, you had to rely on Wine or Proton. These tools basically acted as translators, converting Windows APIs (like DirectX) into something Linux could understand (like Vulkan). It sounds awesome on paper, but running this translation layer in user-space ate RAM and CPU for breakfast. Overhead was just unavoidable.
But recently, the kernel wizards pulled a massive wildcard: They are literally baking core Windows behaviors directly into the Linux kernel.
Specifically, we’re talking about Windows NT synchronization primitives (aka ntsync). Instead of forcing Proton to act as a middleman juggling emulation in user-space, the Linux kernel is being taught to natively understand these Windows sync calls. The result? Buttery smooth gameplay and near-zero overhead. They took Microsoft’s own magic and weaponized it against them. Absolutely based.
This thread hit almost 700 points on HN, proving that devs absolutely love OS drama. Scanning through the comment war zone, here are the main vibes:
There’s a huge lesson here for us code monkeys. Linux purists used to treat Windows code like radioactive waste—they'd rather build from scratch than touch it.
But then Valve stepped in with actual financial incentives: "Just make the games run well on the Steam Deck, we don't care how dirty the code gets." Suddenly, all those high-horse philosophies vanished. As long as it solves the performance bottleneck, jamming the "enemy's" API into your core becomes a killer feature.
It’s the same for everyday development. Users don’t care if your architecture is pure. They just want the app to run smoothly, the game not to lag, and the VPS not to crash. Don't get overly obsessed with technical purity. A "hacky" solution that generates revenue and solves a real user pain-point is infinitely better than a perfectly architected microservice system that nobody uses. End of story!
Source: XDA-Developers / Hacker News