get the metal loader to kinda work (does not load functions)

This commit is contained in:
Greg Wells
2025-06-25 10:53:45 -04:00
parent 2c9e2260f4
commit dee0822779
6 changed files with 37 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
#include "metal_loader.h"
gnInstanceFunctions loadMetalInstanceFunctions() {
return (gnInstanceFunctions){
._gnCreateInstance = NULL,
._gnDestroyInstance = NULL,
._gnGetPhysicalDevices = NULL,
._gnQueueCanPresentToSurface = NULL,
._gnCreateOutputDevice = NULL,
._gnDestroyOutputDevice = NULL,
._gnCreateMacOSWindowSurface = NULL,
._gnDestroyWindowSurface = NULL,
._gnGetSurfaceDetails = NULL
};
}