You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This barrier is doing a layout transition to VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL on the transfer queue.
Should it be transferring ownership to the graphics queue with an addition of
srcQueueFamilyIndex=(transfer queue index) and dstQueueFamilyIndex=(graphics queue index) ?
The text was updated successfully, but these errors were encountered:
Fixed by moving that command buffer to the graphics queue. Doing it the right way with ownership transfer makes the image layout undefined on the destination queue, which requires another barrier on that queue, ... This happens once at load time anyway, so the queue doesn't really matter.
Q2RTX/src/refresh/vkpt/precomputed_sky.c
Lines 829 to 835 in 270579e
This barrier is doing a layout transition to VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL on the transfer queue.
Should it be transferring ownership to the graphics queue with an addition of
srcQueueFamilyIndex=(transfer queue index) and dstQueueFamilyIndex=(graphics queue index) ?
The text was updated successfully, but these errors were encountered: