Lines Matching +full:helper +full:- +full:simple +full:- +full:access
1 # drm-rs
5 …d Status](https://github.com/Smithay/drm-rs/actions/workflows/ci.yml/badge.svg)](https://github.co…
11 The Direct Rendering Manager is a subsystem found on multiple Unix-based
25 user program must provide a way to access the file descriptor representing the
26 device through the [AsFd](https://doc.rust-lang.org/std/os/fd/trait.AsFd.html)
30 /// A simple wrapper for a device node.
37 fn as_fd(&self) -> BorrowedFd<'_> {
42 /// Simple helper methods for opening a `Card`.
44 pub fn open(path: &str) -> Self {
53 Finally, you can implement `drm::Device` to gain access to the basic DRM
68 as well as our mode-setting examples: [`atomic_modeset`](https://github.com/Smithay/drm-rs/blob/dev…
69 and [`legacy_modeset`](https://github.com/Smithay/drm-rs/blob/develop/examples/legacy_modeset.rs)
80 For faster hardware-backed buffers, checkout [gbm.rs](https://github.com/Smithay/gbm.rs).