Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

16 lines
308 B
C

//
// Copyright (c) 2023 Apple Inc.
// Licensed under the Apache License v2.0
//
#ifndef COMPILEMSL_H
#define COMPILEMSL_H
#if __APPLE__
void CompileMslShader(const char* pShaderFilePath, const char* pEntryFuncName);
#else
void CompileMslShader(const char*, const char* ) {}
#endif
#endif // COMPILEMSL_H