Files
Gryphn/projects/apis/metal/src/shader_module/metal_shader_compiler.h
2025-07-18 20:58:23 -04:00

10 lines
196 B
C

#pragma once
#include "stdint.h"
#include "stdlib.h"
typedef struct mtlShaderOptions {
} mtlShaderOptions;
const char* mtlCompileShader(uint32_t* code, size_t size, mtlShaderOptions* options);