move present over to sync extension
This commit is contained in:
@@ -53,7 +53,7 @@ gnDeviceFunctions loadVulkanDeviceFunctions() {
|
||||
._gnDestroyTexture = destroyTexture,
|
||||
|
||||
._gnSubmit = vulkanSubmit,
|
||||
._gnPresent = present,
|
||||
._gnPresent = vulkanPresent,
|
||||
|
||||
._gnWaitForDevice = waitForDevice
|
||||
};
|
||||
|
@@ -3,6 +3,7 @@
|
||||
#include <sync/fence/vulkan_fence.h>
|
||||
#include "presentation_queue/vulkan_presentation_queue.h"
|
||||
#include "submit/vulkan_submit.h"
|
||||
#include "present/vulkan_present.h"
|
||||
|
||||
gnSyncExtFunctions loadVulkanSyncFunctions() {
|
||||
return (gnSyncExtFunctions){
|
||||
@@ -16,6 +17,7 @@ gnSyncExtFunctions loadVulkanSyncFunctions() {
|
||||
._gnResetFence = resetFence,
|
||||
._gnDestroyFence = destroyFence,
|
||||
|
||||
._gnSubmitSync = vulkanSubmitSync
|
||||
._gnSubmitSync = vulkanSubmitSync,
|
||||
._gnPresentSync = vulkanPresentSync
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user