New lightmapper
-Added LocalVector (needed it) -Added stb_rect_pack (It's pretty cool, we could probably use it for other stuff too) -Fixes and changes all around the place -Added library for 128 bits fixed point (required for Delaunay3D)
This commit is contained in:
parent
6a0473bcc2
commit
1bea8e1eac
434 changed files with 126122 additions and 3384 deletions
|
|
@ -1567,6 +1567,15 @@ void VulkanContext::local_device_push_command_buffers(RID p_local_device, const
|
|||
submit_info.pSignalSemaphores = nullptr;
|
||||
|
||||
VkResult err = vkQueueSubmit(ld->queue, 1, &submit_info, VK_NULL_HANDLE);
|
||||
if (err == VK_ERROR_OUT_OF_HOST_MEMORY) {
|
||||
print_line("out of host memory");
|
||||
}
|
||||
if (err == VK_ERROR_OUT_OF_DEVICE_MEMORY) {
|
||||
print_line("out of device memory");
|
||||
}
|
||||
if (err == VK_ERROR_DEVICE_LOST) {
|
||||
print_line("device lost");
|
||||
}
|
||||
ERR_FAIL_COND(err);
|
||||
|
||||
ld->waiting = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue