ChanServ changed the topic of #zink to: official development channel for the mesa3d zink driver || https://docs.mesa3d.org/drivers/zink.html
<fdobridge> <k​arolherbst> ohh right, because the gallium interface ain't great either
* fdobridge <k​arolherbst> anyway
<fdobridge> <k​arolherbst> should we add a `PIPE_HANDLE_USAGE_EXPLICIT_MODIFIER` or something?
<fdobridge> <k​arolherbst> though...
<fdobridge> <k​arolherbst> not sure if zink actually gives me one
<fdobridge> <g​fxstrand> And if you stomp to linear in the CL implementation, that will very much NOT match Vulkan and it'll be broken.
<fdobridge> <k​arolherbst> though maybe I also don't really understood what's the issue there
<fdobridge> <k​arolherbst> ....
<fdobridge> <k​arolherbst> maybe I avoid that ext for now
<fdobridge> <k​arolherbst> I'd rather add a VK_MESA_external_memory_metadata ext holding all the necessary information or something, though zink might also not be able to make much use of it anyway 🙃
<fdobridge> <k​arolherbst> I entirely understand why it's all implicit, because getting people to agree on how it all has to look like is a mess, because you have Intel with it's aux buffers and.... mipmaps are a disaster anyway
<fdobridge> <k​arolherbst> cl_gl_sharing allows importing mipmapped textures and like....
<fdobridge> <k​arolherbst> pain
<fdobridge> <k​arolherbst> the fun part is, you can either import one specific level, or up to a specific level starting from 0
<fdobridge> <g​fxstrand> There really are only 4 options:
<fdobridge> <g​fxstrand> 1. Share the pipe_resource (the old interop)
<fdobridge> <g​fxstrand> 2. Make assumptions about the two drivers (VK interop)
<fdobridge> <g​fxstrand> 3. Properly versioned metadata. Basically the only proven solution to this is modifiers.
<fdobridge> <g​fxstrand> 4. Everything is linear
<fdobridge> <k​arolherbst> 1. doesn't exist
<fdobridge> <k​arolherbst> what we are doing atm is a variant of 3.
<fdobridge> <g​fxstrand> Without proper versioning? 😛
<fdobridge> <k​arolherbst> with versioning
<fdobridge> <k​arolherbst> bumped it a few times, thing is, it's external API at this point 🙃
<fdobridge> <k​arolherbst> ROCm and Intel NEO use the private mesa extension for their gl_sharing impl
<fdobridge> <g​fxstrand> 🤡
<fdobridge> <k​arolherbst> but it's versioned
<fdobridge> <k​arolherbst> and we added a bunch of stuff to make it suck less
<fdobridge> <k​arolherbst> thing is
<fdobridge> <k​arolherbst> for native driver it works great, because they can just tell all the metadata, which we then can give to the driver on import and they know what to do.
<fdobridge> <O​wo> *breakembreakembreakembreakembreakembreakem*
<fdobridge> <O​wo> :wires:
<fdobridge> <O​wo> watch me submit a change that breaks them, for funsies
<fdobridge> <k​arolherbst> oh no
<fdobridge> <g​fxstrand> PSA for those testing Zink: My zink/all-the-fixes now contains the above revert so it should work with KWin
<fdobridge> <k​arolherbst> anyway.. we do 3 with modifiers and a bunch of more stuff
<fdobridge> <k​arolherbst> the old school way of doing 3 was ROCm using it, but then call gl* APIs on the CL side messing with the current bound gl context and....
<fdobridge> <k​arolherbst> so everything they didn't fetch via the private API they fetched via gl API calls
<fdobridge> <k​arolherbst> it was a disaster
<fdobridge> <k​arolherbst> and broken
<fdobridge> <k​arolherbst> maybe I should indeed bump the private ext and just have a field for "gimme the pipe_resource"
<fdobridge> <k​arolherbst> but...
<fdobridge> <k​arolherbst> well.. maybe it's fine, but I'll kill the first dev to make use of the pipe_resource stuff outside of mes,a lol
<fdobridge> <k​arolherbst> .....
<fdobridge> <k​arolherbst> @zmike. ... I have a wild idea
<fdobridge> <g​fxstrand> Okay, I think I might have a patch Mike hates less
<fdobridge> <z​mike.> Oh I just assigned
<fdobridge> <z​mike.> :fullheadache:
<fdobridge> <g​fxstrand> That's fine. I think revert for now and try again is a good plan.
<fdobridge> <k​arolherbst> there is `pipe_screen::interop_export_object`
<fdobridge> <k​arolherbst> though not sure how to use it...
<fdobridge> <k​arolherbst> clon12 uses it to simply share the `ID3D12Resource` object through it
<fdobridge> <k​arolherbst> could use it to simply share the pipe_resource
<fdobridge> <k​arolherbst> or something more stable
<fdobridge> <k​arolherbst> like some vulkan handle
<fdobridge> <k​arolherbst> and then instead of dma-buf you'd use the vulkan API object
<fdobridge> <k​arolherbst> dunno
<fdobridge> <g​fxstrand> That requires both to be running on the same VkDevice
<fdobridge> <g​fxstrand> But if they share a zink_screen, they already are, I think.
<fdobridge> <k​arolherbst> they don't share a zink_screen
<fdobridge> <g​fxstrand> Bummer
<fdobridge> <k​arolherbst> yeah...
<fdobridge> <z​mike.> Doesn't matter as long as they're both zink using the same physical device
<fdobridge> <g​fxstrand> Yeah.
<fdobridge> <z​mike.> In the same process
<fdobridge> <g​fxstrand> You can do OPAQUE_FD import/export
<fdobridge> <g​fxstrand> (which doesn't change anything, really)
<fdobridge> <z​mike.> Whatever I don't think this is the biggest perf bottleneck anyway
<fdobridge> <k​arolherbst> yeah...
<fdobridge> <g​fxstrand> But if it's Vulkan on both sides, OPAQUE_FD is safe
<fdobridge> <k​arolherbst> I'm not checking if the driver_uuid matches yet, but I'm planning to check for it
<fdobridge> <k​arolherbst> because if it's different drivers, it's kinda broken in weirdo ways
<fdobridge> <g​fxstrand> Yeah
<fdobridge> <k​arolherbst> but yeah, in theory we have a mechanism to share driver private data, just the thing is, that even zink doesn't know of the driver private data 🙃
<fdobridge> <g​fxstrand> Yeah
<fdobridge> <g​fxstrand> But if it's Zink on both sides, you can just trust Vulkan sharing
<fdobridge> <k​arolherbst> anyway, I created a great meme after it all worked, and nobody will be able to take away that from me, lol
<fdobridge> <g​fxstrand> The driver private data becomes whatever Zink puts in the `VkImageCreateInfo`.
<fdobridge> <g​fxstrand> Anyway... I need to go cook supper
<fdobridge> <k​arolherbst> have fun
<fdobridge> <k​arolherbst> but yeah.. could add the driver_uuid and if that one matches, I could make use of the `interop_export_object` hook to share secret data... I kinda like the plan even though I also hate it
<fdobridge> <z​mike.> @gfxstrand sure would be great if we had a piglit test to check this gbm behavior and ensure it doesn't regress
<fdobridge> <g​fxstrand> `create_bo(); get_modifier() == INVALID`. There you go!
<fdobridge> <z​mike.> Dang CI bounced you again
<fdobridge> <g​fxstrand> 😡
<fdobridge> <O​wo> What's that, the fourth time?
<fdobridge> <O​wo> :frog_gears:
karolherbst has quit [Read error: Connection reset by peer]
karolherbst has joined #zink
<fdobridge> <S​id> :BlobhajShock:
<fdobridge> <S​id> you guys have been productive while I was asleep for all of 5 hours lol
<fdobridge> <S​id> but rad
<fdobridge> <S​id> that the issue was figured out
<fdobridge> <O​wo> yeah, and now I'm writing a gallium frontend :p
<fdobridge> <S​id> :doomthink:
<fdobridge> <S​id> confirmed, using `nouveau.atomic=1` actually fixes kwin wayland on the same commit I tried yesterday
<fdobridge> <!​DodoNVK (she) 🇱🇹> Actually the layer calls `wl_display_dispatch()` (which I guess is translated to the queue function in `wayland-client`)
<fdobridge> <!​DodoNVK (she) 🇱🇹> And that Wayland call calls the `poll()` function (which I guess freezes somehow)
<fdobridge> <f​ooishbar> it's a pretty well-known issue: in order to pick the 'best' device, the device-select layer goes to ask the compositor which one it's using as its primary device. so you end up stuck in vkEnumeratePhysicalDevices(), because the device-select layer is waiting for your compositor to answer it, but your compositor is waiting for vkEnumeratePhysicalDevices to complete
<fdobridge> <z​mike.> almost everything landed overnight 🎉
<fdobridge> <g​fxstrand> Yay! Damage landed!
<fdobridge> <g​fxstrand> Now we wait for the iris bug reports to roll in...
<fdobridge> <g​fxstrand> What else should I be looking into RE Zink+NVK?
<fdobridge> <m​henning> @gfxstrand https://gitlab.freedesktop.org/mesa/mesa/-/issues/11901 maybe? I kinda gave up because I couldn't figure out why it renders a black screen now.
<fdobridge> <m​henning> Although I should probably re-test with all the recent fixes.
<fdobridge> <g​fxstrand> Ugh...
<fdobridge> <g​fxstrand> Okay, sure.
<fdobridge> <!​DodoNVK (she) 🇱🇹> I didn't know GTK made a GPU /s
<fdobridge> <g​fxstrand> Ugh... I'm gonna have to build a 32-bit Mesa, aren't i?
<fdobridge> <m​henning> Yeah, I've been testing with both a 32 and 64 bit build active
<fdobridge> <S​id> uh
<fdobridge> <S​id> hm
<fdobridge> <S​id> @gfxstrand your zink/all-the-fixes branch seems to break games running via proton?
<fdobridge> <S​id> Alan Wake's American Nightmare didn't put up its window at least
<fdobridge> <S​id> current main did
<fdobridge> <S​id> it did on current main (edited)
<fdobridge> <S​id> d3d9 title
daniels has left #zink [#zink]
<fdobridge> <g​fxstrand> Ugh... dnf build-dep doesn't work for i686 anymore. 🤬
<fdobridge> <g​fxstrand> Okay, hacking around it
<fdobridge> <m​henning> Steam isn't popping up a window for me any more either
<fdobridge> <m​henning> ~~Steam isn't popping up a window for me any more either~~ (edited)
<fdobridge> <m​henning> scratch that, I had an issue with my environment
<fdobridge> <m​henning> Yeah, on gfxstrand/zink/all-the-fixes I get the same black rectangle of a steam window that I always do
<fdobridge> <g​fxstrand> Okay. I've about got 32-bit built
<fdobridge> <g​fxstrand> I wonder why KWin isn't using a HW cursor... 🤔
<fdobridge> <g​fxstrand> steam doesn't even start for me. 😭
<fdobridge> <g​fxstrand> Doesn't start in GNOME or KDE.
<fdobridge> <g​fxstrand> No error message. Just dies.
<fdobridge> <g​fxstrand> Built my 32-bit mesa in debug, still no messages. 😢
<fdobridge> <g​fxstrand> I've gotta bail to an appointment. I'll continue looking when I get back.
<fdobridge> <g​fxstrand> It's probably something dumb again.
<fdobridge> <m​henning> I'm using GNOME, fwiw
<fdobridge> <g​fxstrand> I've been playing with KDE on my dev desktop since testing it yesterday so I tested there first
<fdobridge> <r​edsheep> FWIW while I didn't test yesterday I did test steam the day before on all the fixes and it opened fine
<fdobridge> <r​edsheep> Plasma x11 session
<fdobridge> <m​henning> Oh, it's never worked for me (gnome wayland, compositior on radeon integrated, steam on zink+nvk)
<fdobridge> <r​edsheep> Hmm. Perhaps the difference is your compositor running on the igpu?
<fdobridge> <r​edsheep> My setup is dgpu only
<fdobridge> <r​edsheep> It's also possible it's a Wayland or gnome thing since was testing plasma x11 at the time
<fdobridge> <m​henning> Yeah, not sure
<fdobridge> <r​edsheep> Sometimes I feel like it's a miracle the Linux desktop works at all given how wildly varying two different setups can be
<fdobridge> <S​id> steam 🅱️lasma wayland has always worked fine for me on zink+nvk
<fdobridge> <m​henning> anarsoul reported issues with both plasma wayland and plasma x11 on the ticket, although that was before the fix in https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33204
<fdobridge> <g​fxstrand> I can't open it and I'm dgpu-only
<fdobridge> <g​fxstrand> IDK if that's the problem. :shrug_anim:
<fdobridge> <r​edsheep> You're experiencing two different issues though, right? You aren't have it open at all, but @mhenning gets a black window last I saw
<fdobridge> <r​edsheep> You're experiencing two different issues though, right? You aren't having it open at all, but @mhenning gets a black window last I saw (edited)
<fdobridge> <g​fxstrand> :shrug_anim:
<fdobridge> <g​fxstrand> Won't know until we figure out both issues.
<fdobridge> <g​fxstrand> But yeah they look different.
<fdobridge> <g​fxstrand> What I do know about my issue is that steam isn't even loading Zink.
<fdobridge> <g​fxstrand> VK_LOADER_DEBUG=all shows nothing
<fdobridge> <g​fxstrand> Wait, what?!? It is loading a driver
<fdobridge> <r​edsheep> Do you have the Nvidia drivers installed at all? There's a whole variety of issues that conjures up
<fdobridge> <g​fxstrand> nope
<fdobridge> <g​fxstrand> Yeah, it's definitely getting classic nouveau somehow.
<fdobridge> <g​fxstrand> Installed my 32-bit mesa to the wrong spot
<fdobridge> <g​fxstrand> Steam works great
<fdobridge> <g​fxstrand> But @mhenning said she was using a dgpu+igpu setup?
<fdobridge> <g​fxstrand> let me reboot and turn my igpu back on
<fdobridge> <g​fxstrand> Steam works fine displaying on my AMD gpu and running on my 4060 with `DRI_PRIME=1`
<fdobridge> <g​fxstrand> My desktop is running shockingly well
<fdobridge> <g​fxstrand> I'm not seeing that flicker here. But also, it's a desktop and Steam was the first thing I launched so likely lots of already zeroed VRAM.
<fdobridge> <g​fxstrand> Installing Discord...
<fdobridge> <g​fxstrand> @redsheep How do I tell flatpak to use my system GL/Vulkan?
<fdobridge> <r​edsheep> I use the native package on arch so I don't have to mess with that
<fdobridge> <r​edsheep> But here's what I think you're probably looking for https://discord.com/channels/1033216351990456371/1209954375766908948/1346286635079303218
<fdobridge> <g​fxstrand> I don't want to muck about with building flatpak packages if I can avoid it.
<fdobridge> <S​id> you can't
<fdobridge> <S​id> actually, hm
<fdobridge> <S​id> fedora flatpak does have a host gl runtime
<fdobridge> <S​id> `org.fedoraproject.Platform.GL.host`
<fdobridge> <S​id> ya, install that, then set `FLATPAK_GL_DRIVERS=host` for any flatpak app
<fdobridge> <g​fxstrand> How do I install that?
<fdobridge> <g​fxstrand> I don't see it on flathub or the fedora flatpak repo
<fdobridge> <g​fxstrand> Looks like that's all very recent
<fdobridge> <S​id> `flatpak install --user fedora org.fedoraproject.Platform.GL.host` I think
<fdobridge> <S​id> and org.fedoraproject.Platform.GL32.host for the 32-bit ones
<fdobridge> <S​id> might have to replace `fedora` w/ whatever the fedora-flatpaks remote is called
<fdobridge> <g​fxstrand> error: Nothing matches org.fedoraproject.Platform.GL.host in remote fedora
<fdobridge> <S​id> bah, might be a `Fedora Asahi Remix` only thing for now then
<fdobridge> <g​fxstrand> Yeah. I think I need to either find a native version of the Discord app or I need to figure out how to build org.freedesktop.Platform.GL.
<fdobridge> <g​fxstrand> flatpak was a mistake
pac85 has joined #zink
<fdobridge> <g​fxstrand> Looks like it's in rpmfusion
<fdobridge> <S​id> they also distribute an official .rpm on their website
<fdobridge> <g​fxstrand> Okay. I'm typing this message from discord on my desktop which I think is running on Zink+NVK but I'm not sure.
<fdobridge> <g​fxstrand> Yeah, looks like it. I got a Vulkan splat when I threw in a `VK_LOADER_DEBUG=all`
<fdobridge> <g​fxstrand> No corruption, though.
<fdobridge> <r​edsheep> Hmm. Very strange
<fdobridge> <g​fxstrand> How long does it take you to see corruption?
<fdobridge> <O​wo> Let me know what you need (send me meson build args) and I'll pass you a manifest
<fdobridge> <S​id> fwiw it works perfectly fine for me on zink
<fdobridge> <S​id> like, I've been maining Plasma Wayland w/ zink+nvk for a fair few days now with no issues apart from that tiling thing we ran into
<fdobridge> <S​id> oh and suspend being wonky 50-50
<fdobridge> <S​id> it *could* be an issue that only manifests on the bigger GPUs since I know redsheep has a 4090
<fdobridge> <m​henning> Oh, I don't have flicker any more, it just renders a black screen all the time. The menus work fine though
<fdobridge> <g​fxstrand> Huh. Runs great for me once I got it running on the right drivers.
<fdobridge> <g​fxstrand> I do think we might have a problem with nouveau classic running on NVK, though. I need to look at that combo.
<fdobridge> <g​fxstrand> Yeah, I've had faults waking up from suspend. I think those are kernel bugs, though.
<fdobridge> <S​id> yup
<fdobridge> <S​id> I don't think I've had dealbreaker issues on wayland on my 3070, ever
<fdobridge> <g​fxstrand> Maybe I should try to test x11?
<fdobridge> <S​id> certainly
<fdobridge> <S​id> on x11 I see the same flickers that redsheep does
<fdobridge> <g​fxstrand> Kk
<fdobridge> <g​fxstrand> Plasma or gnome?
<fdobridge> <r​edsheep> 5-10 seconds. Far faster than the old bug that's gone now
<fdobridge> <r​edsheep> Sid is generally on plasma
<fdobridge> <O​wo> re: performance: no problems now.
<fdobridge> <O​wo> might've just been a one-time thing
<fdobridge> <g​fxstrand> I'm seeing plasma itself corrupt on X11
<fdobridge> <g​fxstrand> But also x11 seems to think I'm running at 1024x768. 😭
<fdobridge> <g​fxstrand> Oh, wait... I'm still plugged into my igpu
<fdobridge> <g​fxstrand> Ugh... Mesa 25.0.1 is missing the damage MR.
<fdobridge> <g​fxstrand> Maybe it's because I'm using startx?
<fdobridge> <g​fxstrand> Okay, I think I'm live from Discord on Plasma+X11
<fdobridge> <g​fxstrand> Discord app, that is
<fdobridge> <g​fxstrand> dual-monitor, even
<fdobridge> <g​fxstrand> Definitely seeing issues.
<fdobridge> <g​fxstrand> Not corruption per se but Discord seems to go back a frame or two every so often.
<fdobridge> <g​fxstrand> Like when I'm typing, the cursor will occasionally go backwards. IDK if that's bad damage or bad buffer age.
<fdobridge> <g​fxstrand> I'm not seeing persistent corruptions, though.
<fdobridge> <g​fxstrand> Plasma is no longer corrupting once I installed the right package with all the X11 stuff. I think that was me trying to run Wayland plasma on top of X11 or somesuch nonsense.
<fdobridge> <g​fxstrand> But we definitely have some sort of buffer age problem.
<fdobridge> <O​wo> what about in another electron app, or chomium?
<fdobridge> <O​wo> Firefox? GTK?
<fdobridge> <O​wo> (GTK you'll need to override it to the ngl backend)
<fdobridge> <g​fxstrand> Yeah, definitely seeing some jitter with chromium
<fdobridge> <g​fxstrand> Do I want to know what kind of madness is kopper+x11 wsi?
<fdobridge> <O​wo> ~~close as WONTFIX and tell everyone to just use a rootful xwayland session~~
<fdobridge> <O​wo> now you debug X11 compositors
<fdobridge> <O​wo> and wayland shenanigans (though I think those are a bit easier)
<fdobridge> <g​fxstrand> Wayland is way less rough on your GL driver than X11
<fdobridge> <O​wo> I've heard horror stories about X11
<fdobridge> <O​wo> xf86 drivers, the API itself, scaling, multi monitor....
<fdobridge> <O​wo> *gestures*
<fdobridge> <g​fxstrand> Okay, I've played a bit with one of the Sascha demos and it runs smooth so I don't think the issue is plasma itself. It's probably something with the client app
<fdobridge> <g​fxstrand> Yeah, so something is going wrong with kopper
<fdobridge> <g​fxstrand> It's presenting the wrong frames
<fdobridge> <g​fxstrand> But why that would be different under X11 vs. wayland, I have no idea.
<fdobridge> <g​fxstrand> Especially when "raw" vulkan works fine.
<fdobridge> <g​fxstrand> I'm not seeing any corruption, though.
<fdobridge> <O​wo> explicit sync?
<fdobridge> <O​wo> (or just sync in general)
<fdobridge> <g​fxstrand> Yeah, maybe?
<fdobridge> <g​fxstrand> But everything with X11 should be implicit
<fdobridge> <O​wo> *is* it using explicit sync on the wayland side, and if you turn it off if so, does it go wonky?
<fdobridge> <g​fxstrand> But sync issues are certainly possible. It's just weird that they'd be on the client side.
<fdobridge> <O​wo> I'd want to make sure it's something to do with sync before continuing
<fdobridge> <O​wo> maybe try Xwayland too
<fdobridge> <g​fxstrand> Well this is fun... chromium isn't using Zink. It's using ANGLE
<Sachiel> that's shocking
<fdobridge> <O​wo> ah.
<fdobridge> <O​wo> not really.
<fdobridge> <O​wo> I forget that Chromium has ANGLE at its disposal
<fdobridge> <O​wo> webkit too, actually...
<fdobridge> <O​wo> I think Firefox is the only one that *doesn't* use ANGLE
<fdobridge> <g​fxstrand> If I disable Vulkan in chromium, it goes back to Zink and everything is smooth as silk.
<fdobridge> <g​fxstrand> If I enable Vulkan and it uses ANGLE, I get massive jitter
<fdobridge> <z​mike.> :lul:
<fdobridge> <g​fxstrand> I have no idea what Discord is using
<fdobridge> <O​wo> Angle on Chromium would be going on top of NVK, right?
<fdobridge> <g​fxstrand> yes
<fdobridge> <g​fxstrand> I mean, everything on my system is on top of NVK at the moment
<fdobridge> <O​wo> does the `chrome://flags/#use-angle` bit still exist, or did it at all, on Linux? I know ANGLE has a GL backend you might be able to try and double check with
<fdobridge> <g​fxstrand> Nah, the bit is gone
<fdobridge> <O​wo> damn
<fdobridge> <g​fxstrand> But I doubt ANGLE would screw that up on top of GL
<fdobridge> <O​wo> yeah, it might be something in how Chromium is doing Vulkan
<fdobridge> <O​wo> :wires:
<fdobridge> <O​wo> or, well, angle, I guess
<fdobridge> <g​fxstrand> Okay, discord is running on Zink and I'm still seeing the glitches.
<fdobridge> <g​fxstrand> I know because I have debug prints in zink
<fdobridge> <g​fxstrand> I guess it's also possible that the frame order being submitted to X11 is fine and that the real problem is a race between Zink and the compositor where the compositor is getting in there and compositing before Zink renders its frame.
<fdobridge> <g​fxstrand> That's sounding very plausible
<fdobridge> <O​wo> would that issue repro under Wayland (without explicit sync) though?
<fdobridge> <g​fxstrand> Possibly.
<fdobridge> <g​fxstrand> Is there an easy way to disable that on plasma?
<fdobridge> <O​wo> not sure about plasma, but I'm looking into mutter's side of things right now
<fdobridge> <O​wo> so, how adverse are you to rebuilding your compositor
<fdobridge> <g​fxstrand> fairly
<fdobridge> <g​fxstrand> I mean, I will if I have to but I don't think I have to so I'm going to avoid it for a bit
<fdobridge> <O​wo> yeahhh, I'm not seeing anything in the way of env vars in kwin and mutter
<fdobridge> <O​wo> `WLR_RENDER_NO_EXPLICIT_SYNC=1` exists for wlroots if you can repro on Sway or smth
<fdobridge> <g​fxstrand> Ugh... chromium without ANGLE is super stable
MTCoster has joined #zink
<fdobridge> <g​fxstrand> Never mind. The fish are stable. The UI isn't
<fdobridge> <g​fxstrand> Yeah, if you go to the chrome://flags and play with a dropdown, it's super all over the place
<fdobridge> <g​fxstrand> And NOUVEAU_USE_ZINK=0 when kwin is running with zink is insta-death
<fdobridge> <g​fxstrand> Good to know.
<fdobridge> <g​fxstrand> Let's fix that one.
<fdobridge> <r​edsheep> It's not currently persistent corruption for me, it's like... Sections of UI blinking in and out of existence. The cross monitor/process corruption is always very brief.
<fdobridge> <r​edsheep> Also wasn't there something about x11 explicit sync being a thing a while back?
<fdobridge> <g​fxstrand> NVIDIA keeps trying to make it happen