From 38095942d932f2e2bfd7a6dcd36d9b9871c1b608 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Mon, 4 Apr 2022 22:41:12 -0700 Subject: [PATCH] gpu: make Options public Signed-off-by: Stephen Gutekanst --- gpu/build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu/build.zig b/gpu/build.zig index b9a503c6..0dd4f05e 100644 --- a/gpu/build.zig +++ b/gpu/build.zig @@ -39,7 +39,7 @@ pub fn build(b: *std.build.Builder) void { example_run_step.dependOn(&example_run_cmd.step); } -const Options = struct { +pub const Options = struct { glfw_options: glfw.Options = .{}, gpu_dawn_options: gpu_dawn.Options = .{}, };