-
I know roughly what operation causes the panic due to step-through debugging: Line 2487 in 51f5997 Can I have some guidance on how to debug this further? |
Beta Was this translation helpful? Give feedback.
Answered by
bzm3r
Oct 24, 2022
Replies: 1 comment
-
It turns out that a Vulkan The solution was to keep it around in a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bzm3r
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It turns out that a Vulkan
Instance
I had created was being dropped too early, even when it was still being used.The solution was to keep it around in a
GpuState
struct I am using to hold various bits of GPU-relevant state.