apprt/glfw: does not implement inspector

This commit is contained in:
Mitchell Hashimoto
2023-10-22 09:27:30 -07:00
parent fc549978b9
commit a9279f9871

View File

@ -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 });