diff --git a/projects/extensions/queues/queues_functions.h b/projects/extensions/queues/queues_functions.h index 8dc3b8f..be83919 100644 --- a/projects/extensions/queues/queues_functions.h +++ b/projects/extensions/queues/queues_functions.h @@ -1,6 +1,6 @@ #pragma once #include "stdint.h" -#include "core/gryphn_error_code.h" +#include "core/gryphn_return_code.h" #include "core/src/gryphn_handles.h" typedef struct gnQueueFamilyProperties gnQueueFamilyProperties; diff --git a/projects/extensions/synchronization/fence/gryphn_fence.h b/projects/extensions/synchronization/fence/gryphn_fence.h index eb463e5..63d931a 100644 --- a/projects/extensions/synchronization/fence/gryphn_fence.h +++ b/projects/extensions/synchronization/fence/gryphn_fence.h @@ -1,6 +1,6 @@ #pragma once #include -#include "core/gryphn_error_code.h" +#include "core/gryphn_return_code.h" #include "utils/lists/gryphn_array_list.h" #include "gryphn_handles.h" diff --git a/projects/extensions/synchronization/loader/sync_functions.h b/projects/extensions/synchronization/loader/sync_functions.h index 4fce42e..a32481e 100644 --- a/projects/extensions/synchronization/loader/sync_functions.h +++ b/projects/extensions/synchronization/loader/sync_functions.h @@ -1,6 +1,6 @@ #pragma once #include "stdint.h" -#include "core/gryphn_error_code.h" +#include "core/gryphn_return_code.h" #include #include #include "core/src/gryphn_handles.h" diff --git a/projects/extensions/synchronization/semaphore/gryphn_semaphore.h b/projects/extensions/synchronization/semaphore/gryphn_semaphore.h index 0d10b8c..1ccfb17 100644 --- a/projects/extensions/synchronization/semaphore/gryphn_semaphore.h +++ b/projects/extensions/synchronization/semaphore/gryphn_semaphore.h @@ -1,5 +1,5 @@ #pragma once -#include "core/gryphn_error_code.h" +#include "core/gryphn_return_code.h" #include "utils/lists/gryphn_array_list.h" #include "gryphn_handles.h" diff --git a/projects/loader/src/gryphn_command_functions.h b/projects/loader/src/gryphn_command_functions.h index ee122e5..e926687 100644 --- a/projects/loader/src/gryphn_command_functions.h +++ b/projects/loader/src/gryphn_command_functions.h @@ -1,6 +1,6 @@ #pragma once #include "stdint.h" -#include "core/gryphn_error_code.h" +#include "core/gryphn_return_code.h" #include "gryphn_handles.h" typedef struct gnRenderPassInfo gnRenderPassInfo; diff --git a/projects/loader/src/gryphn_device_functions.h b/projects/loader/src/gryphn_device_functions.h index ade652c..955a9ba 100644 --- a/projects/loader/src/gryphn_device_functions.h +++ b/projects/loader/src/gryphn_device_functions.h @@ -1,7 +1,7 @@ #pragma once #include "stdint.h" #include "stdlib.h" -#include "core/gryphn_error_code.h" +#include "core/gryphn_return_code.h" #include "gryphn_handles.h" typedef struct gnPresentationQueueInfo gnPresentationQueueInfo; diff --git a/projects/loader/src/gryphn_instance_functions.h b/projects/loader/src/gryphn_instance_functions.h index 3d45a64..2e0a56a 100644 --- a/projects/loader/src/gryphn_instance_functions.h +++ b/projects/loader/src/gryphn_instance_functions.h @@ -1,6 +1,6 @@ #pragma once #include "stdint.h" -#include "core/gryphn_error_code.h" +#include "core/gryphn_return_code.h" #include "utils/gryphn_bool.h" #include "gryphn_handles.h" diff --git a/projects/loader/src/gryphn_loader.h b/projects/loader/src/gryphn_loader.h index 7dd77c4..e4d93c4 100644 --- a/projects/loader/src/gryphn_loader.h +++ b/projects/loader/src/gryphn_loader.h @@ -29,6 +29,5 @@ GN_ARRAY_LIST(loaderLayer); loaderLayer* loaderGetNextLayer(gnInstance instance); void resetLayer(gnInstance instance); - gnSyncExtFunctions loadAPISyncFunctions(gnRenderingAPI api); gnQueueExtFunctions loadAPIQueueFunctions(gnRenderingAPI api);