There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

linux_gaming

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

electricprism , in DXVK Release Version 2.4

Awesome, I think Final Fantasy 9 is DX8.

Fingers crossed for improvements to DX6 and DX7 as IIUC that will benefit OG FF7 and FF8.

Major props to DXVK and all the devs, running software and games in 2024 vs 2014 is day and night apart.

victorz , in Direct3D 8 Support "D8VK" Merged Into DXVK

More than one year after the merge request was opened for adding a Direct3D 8 front-end to DXVK via the D8VK code, the merge request landed today by Valve’s Joshua Ashton.

front-end

I don’t think that’s the proper terminology to use? I’m actually a front-end developer… I think they mean adapter layer? Compatibility layer? Something like that.

lambdabeta ,

Sadly front end, like “High Level” is a very relative term. For example, in compiler design, the bit that parses code is called the “front end” since the “back end” is what emits machine code. I think that’s what they mean here, the “front end” that understands D3D8 code has been added, presumably there is also a “back end” that converts the parsed/analyzed D3D8 code into valid opcodes for consumption by GPU/CPUs.

In the other direction, a UI/UX is sometimes called a “back end” when it is part of a more complex embedded project where physical controls are the “front end”.

victorz ,

Cool, thanks. TIL. 🙂👍

fartsparkles ,

You’re right. They’re terms far older than web development. In general the front is the abstraction while the back is the logic/processing. It started as a term for old, large (room-sized) systems where there were front-end machines such as plugboards or terminals, with back-end machines being the CPUs, memory, etc.

BorgDrone ,

No, the terminology sounds right to me. The term front-end and back-end are used in other contexts than building websites.

For example, the term is used in compilers, where the front-end takes code in a programming language and translates it to an intermediate representation (IR), and the back-end takes the IR and translates that into machine code for a specific architecture. A compiler like LLVM has many front-ends and back-ends to support different languages and architectures.

The term applies to many things where there is a multi-layered architecture.

kugmo , in Nvidia driver 555.58 released
@kugmo@sh.itjust.works avatar

Wait for 560 stable. YOTLD. Trust the plan.

theshatterstone54 ,

You only … try Linux Distros?

Oh.

Year Of The Linux Desktop.

MonkderDritte , in The Steam Summer Sale is live now!

Do they sell the air conditioners in the background?

Cirk2 , in What proton games are: completely ownable with no nonsense and a solid community?
@Cirk2@programming.dev avatar

Most of the stuff on GoG should fit the bill. You still can use it as a website to shop for a game and get a installer exe for it. Without any additional launcher.

As far as documented network go, I’ve never seen more than games listing a couple of ports for servers, never anything like ips or actual network protocol descriptions. I guess anything with user hostable dedicated servers should be fine.

Problem is that those old games have very low online population, so I’m not entirely sure how much “casual comraderie” you’ll find.

Presi300 , in Wine 9.11 has landed! 🍷
@Presi300@lemmy.world avatar

I really don’t think “has landed” was the best choice of words here…

DannyMac , in Wine 9.11 has landed! 🍷

While were at it, is there a way we can also make a joke about dead Palestinian children and Wine? /s

cyborganism ,

How about one with the concentration camps in Nazi Germany? That’s always funny. A real classic. /s

Presi300 , in Vulkan or DirectX on Linux?
@Presi300@lemmy.world avatar

Try them both and use the one that works better

DannyBoy , (edited ) in Bugfix time! Looking at the Steam game bugs...

They’re running games on the M1 GPU? The last time I heard about it the developers had to restart the GPU driver every frame and they said there was a huge way to come still.

Rustmilian OP ,
@Rustmilian@lemmy.world avatar

Yes. They’re live, so feel free to ask them about it. They can explain it much better than I ever could.

CarlosCheddar , in Headset recommendation

You could get any headset and attach a modmic to it, it opens up a lot more options.

lal309 OP ,

I’ve never heard of modmic. Will look into this. Thanks!

Telorand , in Any way to reset Lutris + Wine to "factory settings"?

Wine “prefixes” are just directories. Have you tried deleting it and using a fresh prefix?

EveryMuffinIsNowEncrypted ,
@EveryMuffinIsNowEncrypted@lemmy.blahaj.zone avatar

Speaking as a Linux newb here…what exactly is a “prefix” in this context? :/

Dreyns ,

It’s an environment in wich it makes the game run sort of

EveryMuffinIsNowEncrypted ,
@EveryMuffinIsNowEncrypted@lemmy.blahaj.zone avatar

So it’s the components of Wine that produces its fabled compatibility layer?

Dreyns ,

It creates an arborescence that contains the necessary library for you application to work with a thick layer of magic on top of that to make it all work. This is were my understanding is at at least

EveryMuffinIsNowEncrypted ,
@EveryMuffinIsNowEncrypted@lemmy.blahaj.zone avatar

Sorry for my ignorance, but could you ELI5 that for me?

I don’t know what an arborescence is.

Dreyns ,

There’s another comment that explains it in more details than me but it’s a hierarchy of files your C://user/you/appdata...etc and since it branches into multiple choices you can call it an arborescence if you will.

tal ,
@tal@lemmy.today avatar

WINE lets you create isolated (well, semi-isolated…it’s not a sandbox, but separate Windows registries and most drive letters and such) directories. That directory is called a “WINE prefix”. Contains symlinks to Windows drive letter locations, a copy of that WINE environment’s registries, the WINE settings being used. I believe that the “Z:” drive defaults to being shared and mapping to “/” on your Linux box.

I believe that the default WINE prefix is ~/.wine.

But you can create others. Like, maybe you want a 32-bit and a 64-bit Windows environment.

You can run a given executable in a given WINE environment by just setting the WINEPREFIX environment variable, like:


<span style="color:#323232;">$ WINEPREFIX=$HOME/.mywineprefix wine Foobar.exe
</span>

It’s become somewhat common to create a separate WINE prefix for each application, especially games, which don’t need to interact with each other. That way, installing software in one prefix or whatever doesn’t dick up the others.

I don’t use Lutris, but if it works anything like PlayOnLinux, it might create a per-game WINE prefix. I don’t know where it’s located, though. Can probably search online.

Steam creates a per-game WINE prefix for Steam games that use Proton, their version of WINE; it uses ~/.steam/steam/steamapps/compatdata/<steam-application-id> for each.

sorrybookbroke ,

Careful deleting the prefix, as it will delete game save data. I’d suggest backing up the data, and the prefix, before creating a new one. Just rename the prefix by adding --old to the end and move the save game out of the prefix

tal ,
@tal@lemmy.today avatar

Careful deleting the prefix, as it will delete game save data.

From OP’s original question, I think that he’s okay with not retaining those:

Can I do something like a fresh install? I don’t care about losing data/ games.

JTskulk , in I want to switch to Linux for gaming, but I need an accessible desktop environment

KDE has a good zoom feature built in, however it keeps the mouse centered which is good for doing precise graphical thing, but maybe not the best for gaming. It’s good for reading if you hold your mouse still. You can absolutely find or make a green cursor. Some guy here said gaming on Linux is janky but honestly I’ve been super impressed for the past year I’ve used it. I only had one game that wouldn’t run out of the box so far and got it running by installing some Microsoft VC runtime or something. Everything else just starts runs without issue. Edit: runs without issue in steam.

kibiz0r , in Motherboard upgrade

That looks like a pretty good deal. At least on paper. ASUS is having a bit of a consumer care meltdown at the moment, so you may wanna check that situation out before you decide. (Search “gamers nexus asus”)

RiQuY , in Open Source League of Legends remake in the works!

It sounds cool but LoL wasn’t the only MOBA working on Linux.

Fiivemacs , in Is anyone playing Ark Survival Ascended?

Other then graphics, is the game actually different from the original version of the game?

I liked ark, but refuse to pay again for the same game.

Switorik ,

There are wild dino babies that you can take, the graphics are much nicer, the way they do mods is in game and controlled now. Some cost money.

It’s not worth buying again, with the mtx in the mod shop, it should have been free or heavily discounted to owners of ark 1.

Fiivemacs ,

Yeah I don’t give a rats ass about the graphics tbh. My 1080ti does just fine and can’t justify spending 1k+ for lights.

The paid mods just confirmed to not bother. Appreciate it.

moody OP ,

There are quality of life changes, mainly in the building, but overall it’s still the same game. Graphically though, it’s far superior, especially in terms of lighting.

I got the original really cheap so I didn’t feel too bad paying for a new version. What does piss me off though is that while they promised “all existing DLC maps” from the original will be free, they’re already releasing new paid DLC including dinos that are only available if you pay, in a still-early-access game before all the existing maps are released.

So while I enjoy the game, I can’t recommend it out of principle, especially to anyone who already owns Survival Evolved.

A_Random_Idiot ,

they’re already releasing new paid DLC including dinos that are only available if you pay, in a still-early-access game before all the existing maps are released.

History repeats…

VerseAndVermin ,

Remember, they thought it was okay to release the Switch version.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • [email protected]
  • lifeLocal
  • goranko
  • All magazines