24 releases (13 breaking)

0.15.0 Mar 19, 2026
0.14.1 Oct 24, 2024
0.12.0 Apr 18, 2024
0.11.1 Jan 4, 2024
0.1.0 Jan 24, 2017

#51 in Unix APIs

Download history 134302/week @ 2026-04-15 138585/week @ 2026-04-22 152247/week @ 2026-04-29 155615/week @ 2026-05-06 151363/week @ 2026-05-13 150588/week @ 2026-05-20 174916/week @ 2026-05-27 221686/week @ 2026-06-03 282904/week @ 2026-06-10 314120/week @ 2026-06-17 197447/week @ 2026-06-24 186062/week @ 2026-07-01 205450/week @ 2026-07-08 228952/week @ 2026-07-15 256682/week @ 2026-07-22 231122/week @ 2026-07-29

952,196 downloads per month
Used in 145 crates (34 directly)

MIT license

175KB
4K SLoC

drm-rs

Crates.io docs.rs Build Status

A safe interface to the Direct Rendering Manager.

Direct Rendering Manager

The Direct Rendering Manager is a subsystem found on multiple Unix-based operating systems that provides a userspace API to graphics hardware. See the Wikipedia article for more details.

Usage

Basic

The DRM is accessed using ioctls on a file representing a graphics card. These can normally be found in /dev/dri, but can also be opened in other ways (ex. udev).

This crate does not provide a method of opening these files. Instead, the user program must provide a way to access the file descriptor representing the device through the AsFd trait. Here is a basic example using File as a backend:

/// A simple wrapper for a device node.
pub struct Card(std::fs::File);

/// Implementing [`AsFd`] is a prerequisite to implementing the traits found
/// in this crate. Here, we are just calling [`File::as_fd()`] on the inner
/// [`File`].
impl AsFd for Card {
    fn as_fd(&self) -> BorrowedFd<'_> {
        self.0.as_fd()
    }
}

/// Simple helper methods for opening a `Card`.
impl Card {
    pub fn open(path: &str) -> Self {
        let mut options = std::fs::OpenOptions::new();
        options.read(true);
        options.write(true);
        Card(options.open(path).unwrap())
    }
}

Finally, you can implement drm::Device to gain access to the basic DRM functionality:

impl drm::Device for Card {}

fn main() {
    let gpu = Card::open("/dev/dri/card0");
    println!("{:#?}", gpu.get_driver().unwrap());
}

Control (modesetting)

See drm::control::Device as well as our mode-setting examples: atomic_modeset and legacy_modeset

Rendering

Rendering is done by creating and attaching framebuffers to crtcs.

A framebuffer is created from anything implementing Buffer like the always available, but very limited, DumbBuffer.

For faster hardware-backed buffers, checkout gbm.rs.

Dependencies

~2.4–7MB
~160K SLoC