aboutsummaryrefslogtreecommitdiff
path: root/src/wl/buffer.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-08-29 18:21:48 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2025-08-29 18:21:48 +0200
commit4feb8c7dab2b0a3492b8248ee12c3f0a475106f1 (patch)
treef89a6389e24ab362cbdb21e1dbd4f96b404472fd /src/wl/buffer.zig
parented0ec55697b11fa54ff661bc6c250398a096f85a (diff)
Use wayland.Context instead of *const wayland.Context
Diffstat (limited to 'src/wl/buffer.zig')
-rw-r--r--src/wl/buffer.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wl/buffer.zig b/src/wl/buffer.zig
index 6dd83be..fe69899 100644
--- a/src/wl/buffer.zig
+++ b/src/wl/buffer.zig
@@ -19,7 +19,7 @@ pub fn Buffer(fmt: wl.Shm.Format) type {
pub fn init(
self: *Self,
- ctx: *const wayland.Context,
+ ctx: wayland.Context,
width: usize,
height: usize,
data: []u8,