From 8b7d8104507bad89218cf86e92fa6fe22ae4dc26 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 30 Jul 2022 16:26:27 -0700 Subject: [PATCH] gpu: correct header includes Signed-off-by: Stephen Gutekanst --- gpu/examples/c.zig | 1 - gpu/src/mach_dawn.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/gpu/examples/c.zig b/gpu/examples/c.zig index 2648fad7..31cddaec 100644 --- a/gpu/examples/c.zig +++ b/gpu/examples/c.zig @@ -1,5 +1,4 @@ pub const c = @cImport({ @cInclude("dawn/webgpu.h"); @cInclude("dawn/dawn_proc.h"); - @cInclude("dawn_native_mach.h"); }); diff --git a/gpu/src/mach_dawn.cpp b/gpu/src/mach_dawn.cpp index 3787da28..f74dd4f9 100644 --- a/gpu/src/mach_dawn.cpp +++ b/gpu/src/mach_dawn.cpp @@ -1,5 +1,5 @@ #include -#include "dawn_native_mach.h" +#include "mach_dawn.h" #ifdef __cplusplus extern "C" {