Files
Gryphn/projects/apis/metal/loader/metal_extensions.m
2025-07-15 11:43:17 -04:00

8 lines
218 B
Objective-C

#include "metal_loader.h"
gnBool metalIsExtensionSupported(gnExtension extension) {
if (extension == GN_EXT_SYNCHRONIZATION) return gnTrue;
if (extension == GN_EXT_QUEUES) return gnTrue;
return gnFalse;
}