submit command moved to sync extension
This commit is contained in:
@@ -52,7 +52,7 @@ gnDeviceFunctions loadVulkanDeviceFunctions() {
|
||||
._gnTextureData = textureData,
|
||||
._gnDestroyTexture = destroyTexture,
|
||||
|
||||
._gnSubmit = submit,
|
||||
._gnSubmit = vulkanSubmit,
|
||||
._gnPresent = present,
|
||||
|
||||
._gnWaitForDevice = waitForDevice
|
||||
|
@@ -2,6 +2,7 @@
|
||||
#include <sync/semaphore/vulkan_semaphore.h>
|
||||
#include <sync/fence/vulkan_fence.h>
|
||||
#include "presentation_queue/vulkan_presentation_queue.h"
|
||||
#include "submit/vulkan_submit.h"
|
||||
|
||||
gnSyncExtFunctions loadVulkanSyncFunctions() {
|
||||
return (gnSyncExtFunctions){
|
||||
@@ -14,5 +15,7 @@ gnSyncExtFunctions loadVulkanSyncFunctions() {
|
||||
._gnWaitForFence = waitForFence,
|
||||
._gnResetFence = resetFence,
|
||||
._gnDestroyFence = destroyFence,
|
||||
|
||||
._gnSubmitSync = vulkanSubmitSync
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user