gnIsExtensionSupported

This commit is contained in:
Greg Wells
2025-07-15 09:06:17 -04:00
parent af480745e5
commit 7722467ceb
8 changed files with 63 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
#include "metal_loader.h"
gnBool metalIsExtensionSupported(gnExtension extension) {
if (extension == GN_EXT_SYNCHRONIZATION) return gnTrue;
return gnFalse;
}

View File

@@ -3,8 +3,11 @@
#include "loader/src/gryphn_device_functions.h"
#include "loader/src/gryphn_command_functions.h"
#include "extensions/synchronization/loader/sync_functions.h"
#include "core/gryphn_extensions.h"
gnInstanceFunctions loadMetalInstanceFunctions();
gnDeviceFunctions loadMetalDeviceFunctions();
gnCommandFunctions loadMetalCommandFunctions();
gnSyncExtFunctions loadMetalSyncFunctions();
gnBool metalIsExtensionSupported(gnExtension extension);