aboutsummaryrefslogtreecommitdiff
path: root/src/wl/shm/pool.zig
blob: dc30d1bb735c28b8bf7a7199686c2c7ed30c241d (plain)
1
2
3
4
5
6
7
8
9
const wayland = @import("../../root.zig");
const Format = @import("root.zig").Format;

pub const Events = wayland.EventSet(@This(), .{});
pub const Requests = union(enum) {
    create_buffer: struct { u32, u32, u32, u32, u32, Format },
    destroy: struct {},
    resize: struct { u32 },
};