diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-02 09:04:45 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-02 09:04:45 +0100 |
| commit | 0b6ee849722002a8bc7cc5374e3136bee4be2ccd (patch) | |
| tree | 729e99b7e87d8cd298f3b62cd2b97f362b863216 /src/screen/drm/connector/root.zig | |
| parent | 88aa2940b27044794d4dcb49c924a5df17cc0055 (diff) | |
screen: add frame-buffer
Diffstat (limited to 'src/screen/drm/connector/root.zig')
| -rw-r--r-- | src/screen/drm/connector/root.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/screen/drm/connector/root.zig b/src/screen/drm/connector/root.zig index 5766851..c104e84 100644 --- a/src/screen/drm/connector/root.zig +++ b/src/screen/drm/connector/root.zig @@ -2,6 +2,7 @@ const std = @import("std"); const os = std.os.linux; const Drm = @import("../request.zig").Drm; const Card = @import("../card.zig").Card; +const FrameBuffer = @import("../frame-buffer/root.zig").FrameBuffer; pub const Connection = @import("connection.zig").Connection; pub const Mode = @import("mode.zig").Mode; |