From a9279f98710a62edafb8846505646d772816df25 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 22 Oct 2023 09:27:30 -0700 Subject: [PATCH] apprt/glfw: does not implement inspector --- src/apprt/glfw.zig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/apprt/glfw.zig b/src/apprt/glfw.zig index 4a40ed22e..36367e20b 100644 --- a/src/apprt/glfw.zig +++ b/src/apprt/glfw.zig @@ -215,6 +215,13 @@ pub const App = struct { @panic("This should never be called for GLFW."); } + pub fn redrawInspector(self: *App, surface: *Surface) void { + _ = self; + _ = surface; + + // GLFW doesn't support the inspector + } + fn glfwErrorCallback(code: glfw.ErrorCode, desc: [:0]const u8) void { std.log.warn("glfw error={} message={s}", .{ code, desc });