The ultimate goal of the WIneHQ team is to have their own fully DX12 implementation. The reason why vkd3d-proton exists is that Valve didn’t want to wait for it to mature and AFAIK they did have differences in what should be included in vkd3d. Which is why they don’t work on the same project.
- 0 Posts
- 15 Comments
I’m pretty sure vkd3d-proton does not rebase from vkd3d.
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•Where does the computer branding in KDE settings come from?
4·1 year ago@[email protected] I’ve found this (scroll down to #5 if it won’t scroll automatically). It shows some tools that can be used to change DMI information for different Manufacturers.
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•Where does the computer branding in KDE settings come from?
11·1 year agoThis is part of the motherboard and can only be changed with specific tools from the manufacturer. Back in the days there was
AMIDEDOSas a dos tool to change it in AMI Bios. You would need to find out, what tool can be used to change it in your UEFI. However, it’s possible that those tools are not available to the public.
SFSE works fine for me, no issues at all. Make sure you download the latest version, to be compatible with the latest Starfield update.
I’ve placed the
dlland theexenext to theStarfield.exein the game folder. And changed the Steam launch parameter tobash -c 'exec "${@/Starfield.exe/sfse_loader.exe}"' -- %command%
NoXPhasma@lemmy.worldto
Linux Gaming@lemmy.world•GTAV doesn't run as good as NativeEnglish
9·2 years agoGTAV works better with AMDVLK, as one of the very few games out there. You could give that a shot, but be aware that AMDVLK often gets selected as default, so having
AMD_VULKAN_ICD=RADVin your global Env. Variables are a good idea.And then launching GTAV with
AMD_VULKAN_ICD=AMDVLK %command%.
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•I FIXED AMD's Preferred Core Linux patch to FINALLY work for HIGHER BOOST and PERFORMANCE !
1·2 years agoI don’t know if it’s random, the CPU scheduler still decides what thread to use. It will have its own semantics, but I don’t know on what those are based.
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•I FIXED AMD's Preferred Core Linux patch to FINALLY work for HIGHER BOOST and PERFORMANCE !
8·2 years agoIt’s not just random, it simply does not even work. Because they set this:
+/*Preferred Core featue is supported*/ +static bool prefcore = true;And later in the code they do the if condition wrong:
+ if (prefcore) + WRITE_ONCE(cpudata->highest_perf, AMD_PSTATE_PREFCORE_THRESHOLD); + else + WRITE_ONCE(cpudata->highest_perf, AMD_CPPC_HIGHEST_PERF(cap1));if should look like this:
+ if (prefcore) + WRITE_ONCE(cpudata->highest_perf, AMD_CPPC_HIGHEST_PERF(cap1)); + else + WRITE_ONCE(cpudata->highest_perf, AMD_PSTATE_PREFCORE_THRESHOLD);There is probably even more wrong, looking at the code quality, but this at least makes the preferred core work.
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•I FIXED AMD's Preferred Core Linux patch to FINALLY work for HIGHER BOOST and PERFORMANCE !
16·2 years agoAMD patches for preferred core (prefer those cores which can clock higher) are a mess and ended up not working because of a wrong if condition. Showing that no one at AMD even tested it before submitting. The programmer in the video complains about AMDs developers being incompetent and shows how it’s fixed.
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•How do you all go about backing up your data, on Linux?English
2·2 years agoYes, it is the same purpose, kinda. But timeshift runs as a cron and allows for an easy rollback, while I use BIT for manual backups.
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•How do you all go about backing up your data, on Linux?
9·2 years agoI use Back In Time to backup my important data on an external drive. And for snapshots I use timeshift.
I’ve never had that issue that deleted ISOs would stay on the USB, not sure how you’ve managed to achieve that. Maybe you didn’t actually delete the files but put them to the recycle bin?
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•Seeing more projects omitting installation instructions for debian/ubuntu.English
193·3 years agoWhy should they even package it at all? Just distribute the source code and let the distributors handle it themselves.
NoXPhasma@lemmy.worldto
Linux@lemmy.ml•AMD GPUs to get Ray Tracing turned on for Mesa 23.2English
2·3 years agoI use Stable Diffusion with ROCm on Linux. Works great and no need to install the big bloat ROCm from the package manager. I’ve written an installation guide for Arch, but with little changes it should work on other distributions as well: https://gist.github.com/NoXPhasma/ba42b615c0ed1cb0c2b3a4a1b359ccf7
No, 82% of the Linux users use English as UI Language. Less than 3% use Chinese.