rename mach/gpu to mach/gpu-dawn

See https://github.com/hexops/mach/issues/133#issuecomment-999940767

Helps #109
Helps #133

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-12-22 16:37:26 -07:00 committed by Stephen Gutekanst
parent 7ec7fb7af0
commit 7af784bee7
28 changed files with 0 additions and 1 deletions

10
gpu-dawn/src/main.zig Normal file
View file

@ -0,0 +1,10 @@
const std = @import("std");
const testing = std.testing;
export fn add(a: i32, b: i32) i32 {
return a + b;
}
test "basic add functionality" {
try testing.expect(add(3, 7) == 10);
}