-
-
Notifications
You must be signed in to change notification settings - Fork 22k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complex shader breaks on NVidia cards, looks like shader compiler issue #81449
Comments
This sounds like an NVidia bug and should likely be reported directly to them. |
I can't repro this on NVIDIA GTX 970, both the uncommented and commented versions looks correct and I can't see any visual glitches with either. There are a few NVIDIA specific issues here, for example #76343, #67150 and some other issues linked to those. Also, when reporting issues with specific devices, it's always a good idea to tell your own device model and maybe driver version. As a side note, you generally should not use |
@clayjohn Any hints on how I can figure out more what's going on before I would attempt reporting a bug to NVidia? Godot uses a proprietary shading language and I don't know which parts are specific to the engine within the rendering pipeline and which parts are specific to the GPU. AFAIK this issue could be happening long before NVidia's code comes into play so some better specifications would help a lot!
@bitsawer It's happening across several completely different GPUs, with the common denominator being NVidia. My own NVidia card is a 3060. |
The problem with being exactly 0.0 is that a simple division by 0 could cause an INF or NaN and then be treated differently by HW, then propagated by effects like Glow. Does the problem go away if using |
@darksylinc even changing it to 1.0 doesn't change a thing when inside the atmosphere. The problem is that the return value isn't even being used when the issue appears, it seems like some weird optimisation at compile time of branching code that breaks the shader. |
Godot version
v4.1.1.stable.official [bd6af8e]
System information
Windows & Linux, multiple versions
Issue description
See repro project and repro steps. It seems like there is a shader compilation issue on NVidia cards.
I have a post-process shader, rendered on a quad, that renders an atmosphere. The shader is using an additive blend mode, but originally used the screen texture that it combined with the atmosphere. When I changed to additive blending, instead of setting ALBEDO to the screen texture where the atmosphere isn't applied I now return black. However, on NVidia cards this completely messes up the look of the atmosphere while on AMD cards there's no issue at all.
This colour has absolutely nothing to do with the glitches we're actually seeing, which makes me think this is a shader compiler issue. I've tried adding a uniform bool for easy swapping between the two versions in an if-statement, but that completely changes the issue. So something with branching code seems to create more problems.
NVidia when returning screen texture and AMD in all cases:

NVidia when returning black:

Steps to reproduce
Minimal reproduction project
shader compiler bug.zip
The text was updated successfully, but these errors were encountered: