From 293a9e2d3ec5212b39e757005a5546529640385c Mon Sep 17 00:00:00 2001 From: Squibid Date: Thu, 16 Oct 2025 17:37:19 -0400 Subject: [PATCH] fix indentation --- src/output.zig | 80 +++++++++++++++++++++++++------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/src/output.zig b/src/output.zig index 8001cb9..e31ec76 100644 --- a/src/output.zig +++ b/src/output.zig @@ -8,57 +8,57 @@ const wlr = @import("wlroots"); const Server = @import("server.zig").Server; pub const Output = struct { - server: *Server, - wlr_output: *wlr.Output, + server: *Server, + wlr_output: *wlr.Output, - frame: wl.Listener(*wlr.Output) = .init(handleFrame), - request_state: wl.Listener(*wlr.Output.event.RequestState) = .init(handleRequestState), - destroy: wl.Listener(*wlr.Output) = .init(handleDestroy), + frame: wl.Listener(*wlr.Output) = .init(handleFrame), + request_state: wl.Listener(*wlr.Output.event.RequestState) = .init(handleRequestState), + destroy: wl.Listener(*wlr.Output) = .init(handleDestroy), - // The wlr.Output should be destroyed by the caller on failure to trigger cleanup. - pub fn create(server: *Server, wlr_output: *wlr.Output) !void { - const output = try gpa.create(Output); + // The wlr.Output should be destroyed by the caller on failure to trigger cleanup. + pub fn create(server: *Server, wlr_output: *wlr.Output) !void { + const output = try gpa.create(Output); - output.* = .{ - .server = server, - .wlr_output = wlr_output, - }; - wlr_output.events.frame.add(&output.frame); - wlr_output.events.request_state.add(&output.request_state); - wlr_output.events.destroy.add(&output.destroy); + output.* = .{ + .server = server, + .wlr_output = wlr_output, + }; + wlr_output.events.frame.add(&output.frame); + wlr_output.events.request_state.add(&output.request_state); + wlr_output.events.destroy.add(&output.destroy); - const layout_output = try server.output_layout.addAuto(wlr_output); + const layout_output = try server.output_layout.addAuto(wlr_output); - const scene_output = try server.scene.createSceneOutput(wlr_output); - server.scene_output_layout.addOutput(layout_output, scene_output); - } + const scene_output = try server.scene.createSceneOutput(wlr_output); + server.scene_output_layout.addOutput(layout_output, scene_output); + } - pub fn handleFrame(listener: *wl.Listener(*wlr.Output), _: *wlr.Output) void { - const output: *Output = @fieldParentPtr("frame", listener); + pub fn handleFrame(listener: *wl.Listener(*wlr.Output), _: *wlr.Output) void { + const output: *Output = @fieldParentPtr("frame", listener); - const scene_output = output.server.scene.getSceneOutput(output.wlr_output).?; - _ = scene_output.commit(null); + const scene_output = output.server.scene.getSceneOutput(output.wlr_output).?; + _ = scene_output.commit(null); - var now = posix.clock_gettime(posix.CLOCK.MONOTONIC) catch @panic("CLOCK_MONOTONIC not supported"); - scene_output.sendFrameDone(&now); - } + var now = posix.clock_gettime(posix.CLOCK.MONOTONIC) catch @panic("CLOCK_MONOTONIC not supported"); + scene_output.sendFrameDone(&now); + } - pub fn handleRequestState( - listener: *wl.Listener(*wlr.Output.event.RequestState), - event: *wlr.Output.event.RequestState, - ) void { - const output: *Output = @fieldParentPtr("request_state", listener); + pub fn handleRequestState( + listener: *wl.Listener(*wlr.Output.event.RequestState), + event: *wlr.Output.event.RequestState, + ) void { + const output: *Output = @fieldParentPtr("request_state", listener); - _ = output.wlr_output.commitState(event.state); - } + _ = output.wlr_output.commitState(event.state); + } - pub fn handleDestroy(listener: *wl.Listener(*wlr.Output), _: *wlr.Output) void { - const output: *Output = @fieldParentPtr("destroy", listener); + pub fn handleDestroy(listener: *wl.Listener(*wlr.Output), _: *wlr.Output) void { + const output: *Output = @fieldParentPtr("destroy", listener); - output.frame.link.remove(); - output.request_state.link.remove(); - output.destroy.link.remove(); + output.frame.link.remove(); + output.request_state.link.remove(); + output.destroy.link.remove(); - gpa.destroy(output); - } + gpa.destroy(output); + } };