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;
}