From 689f2b51226d6deb49f1f889b9011809e2df9938 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 19 Mar 2022 00:45:02 -0700 Subject: [PATCH] gpu: example: change window title to "mach/gpu window" Signed-off-by: Stephen Gutekanst --- gpu/examples/sample_utils.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu/examples/sample_utils.zig b/gpu/examples/sample_utils.zig index 91a0323c..4c442bfa 100644 --- a/gpu/examples/sample_utils.zig +++ b/gpu/examples/sample_utils.zig @@ -60,7 +60,7 @@ pub fn setup(allocator: std.mem.Allocator) !Setup { // Create the test window and discover adapters using it (esp. for OpenGL) var hints = glfwWindowHintsForBackend(backend_type); hints.cocoa_retina_framebuffer = true; - const window = try glfw.Window.create(640, 480, "Dawn window", null, null, hints); + const window = try glfw.Window.create(640, 480, "mach/gpu window", null, null, hints); const backend_procs = c.machDawnNativeGetProcs(); c.dawnProcSetProcs(backend_procs);