Hacker News new | ask | show | jobs
by talldayo 670 days ago
> You don't need to rewrite the game, just recompile for MacOS.

The word "just" does a lot of heavy lifting in this sentence. First you need to get your game running on ARM64, which likely won't work out-of-the-box unless you already ported to smartphone/Nintendo Switch. Then you simply map all the functionality to MacOS syscalls, debug a second version of your game, polish it, and release it but without Metal support so you can use MoltenVK to run it. The number of video games that fall into this category of "released for 64-bit MacOS but doesn't support Metal" is minuscule. 99% of the video games released today are an x86 Windows binary, and if you can't run that you're boned. Developers will not build you a special MacOS version of their Vulkan game so you can mess around with translation layers.

You could also use Linux and get upstream Vulkan drivers that work out-of-the-box. Apple's obsession over Metal is part of the reason I left MacOS and I truly pity anyone that depends on MoltenVK to run their favorite software.

1 comments

Yeah the fact that you have to compile a separate binary is already too much work for most developers. Just not worth the effort for less then 2% market share.