Files
Gryphn/projects/apis/metal/loader/metal_extensions.m
2025-07-28 20:05:44 -04:00

8 lines
222 B
Objective-C

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