diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-02 21:54:14 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-02 21:54:14 +0100 |
| commit | 811a6bd572f4c6b26e99b4e746f5d710947ee934 (patch) | |
| tree | 3ff6375ce2d7ea13e0d49f7800757a1b42604884 /src/screen/drm/root.zig | |
| parent | 3f4375a14218796cbd7bfff1c8cfff0f7bb1f6df (diff) | |
screen: drm change struct layout
Diffstat (limited to 'src/screen/drm/root.zig')
| -rw-r--r-- | src/screen/drm/root.zig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/screen/drm/root.zig b/src/screen/drm/root.zig new file mode 100644 index 0000000..5012743 --- /dev/null +++ b/src/screen/drm/root.zig @@ -0,0 +1,9 @@ +pub const request = @import("request/root.zig"); +pub const Card = @import("card.zig").Card; +pub const Resources = @import("resources.zig").Resources; +pub const Encoder = @import("encoder.zig").Encoder; +pub const Event = @import("event.zig").Event; +pub const Connector = @import("connector/root.zig").Connector; +pub const Crtc = @import("crtc.zig").Crtc; +pub const Buffer = @import("buffer/root.zig").Buffer; +pub const Pixel = @import("pixel.zig").Pixel; |