mach/gpu/src/mach_dawn.cpp
Stephen Gutekanst 8b7d810450 gpu: correct header includes
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2022-08-12 00:43:43 -07:00

14 lines
No EOL
237 B
C++

#include <dawn/native/DawnNative.h>
#include "mach_dawn.h"
#ifdef __cplusplus
extern "C" {
#endif
MACH_EXPORT const DawnProcTable machDawnGetProcTable() {
return dawn_native::GetProcs();
}
#ifdef __cplusplus
} // extern "C"
#endif