From the looks of it these shaders are doing a few things wrong but I have no idea how to make them right again.
That said, is there a way to make a compile error of a postprocessing shader non-fatal? Aborting the game for it is not nice.
https://www.doomworld.com/idgames/level ... ts/s-u/uof
Shzaders in Umbra of Fate do not compile on Vulkan
Moderator: GZDoom Developers
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
-
-
- Posts: 3109
- Joined: Sat May 28, 2016 1:01 pm
Re: Shzaders in Umbra of Fate do not compile on Vulkan
They are defining their own texture sampler objects (instead of using the ones already defined). It happened to work in OpenGL by chance because they get automatically bound.
We could make the errors non-fatal and have it just not perform the pass if it doesn't compile.
We could make the errors non-fatal and have it just not perform the pass if it doesn't compile.
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: Shzaders in Umbra of Fate do not compile on Vulkan
That would be better than the mod aborting in the middle of gameplay.