19 releases (breaking)

new 0.15.0 Apr 19, 2024
0.14.2 Feb 15, 2024
0.14.0 Nov 14, 2023
0.12.0 Mar 30, 2023
0.1.0 Aug 24, 2016

#40 in Memory management

Download history 2750/week @ 2023-12-23 3545/week @ 2023-12-30 4214/week @ 2024-01-06 4643/week @ 2024-01-13 4877/week @ 2024-01-20 5427/week @ 2024-01-27 4965/week @ 2024-02-03 6337/week @ 2024-02-10 8622/week @ 2024-02-17 6057/week @ 2024-02-24 5945/week @ 2024-03-02 6452/week @ 2024-03-09 6610/week @ 2024-03-16 6644/week @ 2024-03-23 6041/week @ 2024-03-30 4516/week @ 2024-04-06

24,715 downloads per month
Used in 10 crates (3 directly)

MIT license

66KB
1.5K SLoC

Safe libgbm bindings for rust

The Generic Buffer Manager

This module provides an abstraction that the caller can use to request a buffer from the underlying memory management system for the platform.

This allows the creation of portable code whilst still allowing access to the underlying memory manager.

This library is best used in combination with drm-rs, provided through the drm-support feature.

Usage

Add to your Cargo.toml

gbm = "0.15.0"

Example

extern crate drm;
extern crate gbm;

use drm::control::{self, crtc, framebuffer};
use gbm::{BufferObjectFlags, Device, Format};

// ... init your drm device ...
let drm = init_drm_device();

// init a GBM device
let gbm = Device::new(drm).unwrap();

// create a buffer
let mut bo = gbm
    .create_buffer_object::<()>(
        1280,
        720,
        Format::Argb8888,
        BufferObjectFlags::SCANOUT | BufferObjectFlags::WRITE,
    )
    .unwrap();

// write something to it (usually use import or egl rendering instead)
let buffer = {
    let mut buffer = Vec::new();
    for i in 0..1280 {
        for _ in 0..720 {
            buffer.push(if i % 2 == 0 { 0 } else { 255 });
        }
    }
    buffer
};
bo.write(&buffer).unwrap();

// create a framebuffer from our buffer
let fb = gbm.add_framebuffer(&bo, 32, 32).unwrap();

// display it (and get a crtc, mode and connector before)
gbm.set_crtc(crtc_handle, Some(fb), (0, 0), &[con], Some(mode))
    .unwrap();

Dependencies

~0.2–11MB
~97K SLoC