aboutsummaryrefslogtreecommitdiff
path: root/src/wl/root.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-08-27 20:21:34 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2025-08-27 20:21:34 +0200
commitf0f2124949056e3008416dcd089766a2ef69a08b (patch)
tree7e8f674fda0c5af7f30671e9dd088f7ec7d35e5e /src/wl/root.zig
parent8a7392dea729d3ed49a8bf8eee25906c4fd616ac (diff)
add wl.buffer and wl.surface
Diffstat (limited to 'src/wl/root.zig')
-rw-r--r--src/wl/root.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wl/root.zig b/src/wl/root.zig
index 43eb531..887811c 100644
--- a/src/wl/root.zig
+++ b/src/wl/root.zig
@@ -4,3 +4,5 @@ pub const Callback = @import("callback.zig");
pub const Output = @import("output/root.zig");
pub const Compositor = @import("compositor.zig");
pub const Shm = @import("shm/root.zig");
+pub const Buffer = @import("buffer.zig").Buffer;
+pub const Surface = @import("surface.zig");