fix function validators warnings
This commit is contained in:
@@ -4,13 +4,13 @@
|
||||
#include "loader/src/gryphn_command_functions.h"
|
||||
|
||||
typedef struct gryphnInstanceFunctionLayers gryphnInstanceFunctionLayers;
|
||||
gryphnInstanceFunctionLayers checkerLoadInstanceFunctions();
|
||||
gryphnInstanceFunctionLayers checkerLoadInstanceFunctions(void);
|
||||
|
||||
gnInstanceFunctions loadFunctionLoaderInstanceFunctions();
|
||||
gnDeviceFunctions loadFunctionLoaderDeviceFunctions();
|
||||
gnCommandFunctions loadFunctionLoaderCommandFunctions();
|
||||
gnInstanceFunctions loadFunctionLoaderInstanceFunctions(void);
|
||||
gnDeviceFunctions loadFunctionLoaderDeviceFunctions(void);
|
||||
gnCommandFunctions loadFunctionLoaderCommandFunctions(void);
|
||||
|
||||
#include "extensions/synchronization/loader/sync_functions.h"
|
||||
#include "extensions/queues/queues_functions.h"
|
||||
gnSyncExtFunctions loadFunctionLoaderSyncExtFunctions();
|
||||
gnQueueExtFunctions loadFunctionLoaderQueueExtFunctions();
|
||||
gnSyncExtFunctions loadFunctionLoaderSyncExtFunctions(void);
|
||||
gnQueueExtFunctions loadFunctionLoaderQueueExtFunctions(void);
|
||||
|
@@ -55,5 +55,5 @@ void checkDestroyWindowSurface(gnWindowSurfaceHandle windowSurface) {
|
||||
CHECK_VOID_FUNCTION(windowSurface->instance, _gnDestroyWindowSurface, instanceFunctions, windowSurface);
|
||||
}
|
||||
gnSurfaceDetails checkGetSurfaceDetails(gnWindowSurfaceHandle windowSurface, gnPhysicalDevice device) {
|
||||
CHECK_RETURNED_FUNCTION(windowSurface->instance, _gnGetSurfaceDetails, instanceFunctions, (gnSurfaceDetails){}, windowSurface, device);
|
||||
CHECK_RETURNED_FUNCTION(windowSurface->instance, _gnGetSurfaceDetails, instanceFunctions, (gnSurfaceDetails){ .formatCount = 0 }, windowSurface, device);
|
||||
}
|
||||
|
Reference in New Issue
Block a user