#I'm trying to make Color Grading with Vulkan and I can't make it work while there's no error...
9 messages · Page 1 of 1 (latest)
gonna need a bit more info than a screenshot of a gui, what have you tried? is the code in a repo anywhere?
How do I share the whole code? It's my first time asking help here
Github?
Okay to answer ur question. I'm making a mod myself with Vulkan Mod as my dependency
I identified stack allocation conflicts in PostProcessPass.java where multiple MemoryStack allocations were invalidating pointers stored in Vulkan structs
Fixed transitionImage() calls using separate stack scopes to prevent VkImageMemoryBarrier allocations from interfering with VkRenderingInfo
Moved updateSceneDescriptor() call after vkCmdBeginRendering and gave it its own stack scope
Applied precise edits to resolve the root cause of the crash identified in the debug report
it sounds crazy to say I'm trying to make a color grading mod by myself using Vulkan ToT