get the metal loader to kinda work (does not load functions)
This commit is contained in:
22
projects/apis/metal/loader/metal_command_loader.m
Normal file
22
projects/apis/metal/loader/metal_command_loader.m
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "metal_loader.h"
|
||||
|
||||
gnCommandFunctions loadMetalCommandFunctions() {
|
||||
return (gnCommandFunctions){
|
||||
._gnCommandPoolAllocateCommandBuffers = NULL,
|
||||
._gnBeginCommandBuffer = NULL,
|
||||
._gnResetCommandBuffer = NULL,
|
||||
._gnEndCommandBuffer = NULL,
|
||||
|
||||
._gnCommandBeginRenderPass = NULL,
|
||||
._gnCommandEndRenderPass = NULL,
|
||||
._gnCommandBindGraphicsPipeline = NULL,
|
||||
._gnCommandSetViewport = NULL,
|
||||
._gnCommandSetScissor = NULL,
|
||||
._gnCommandBindUniform = NULL,
|
||||
._gnCommandPushConstant = NULL,
|
||||
|
||||
._gnCommandBindBuffer = NULL,
|
||||
._gnCommandDraw = NULL,
|
||||
._gnCommandDrawIndexed = NULL,
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user