10 stable releases
2.2.0 | Sep 5, 2021 |
---|---|
2.1.1 | May 10, 2021 |
2.1.0 | Apr 8, 2021 |
2.0.0 | Mar 30, 2021 |
1.3.3 | Mar 28, 2021 |
#199 in Unix APIs
90,935 downloads per month
Used in 63 crates
(11 directly)
53KB
959 lines
drm-fourcc
Provides an enums representing every pixel format and format modifier supported by DRM (as of kernel version 5.10.0).
A fourcc is four bytes of ascii representing some data format. This enum contains every fourcc representing a pixel format supported by DRM, the Linux Direct Rendering Manager.
To get the bytes of the fourcc representing the format, cast to u32
.
assert_eq!(DrmFourcc::Xrgb8888 as u32, 875713112);
To get the string form of the fourcc, use DrmFourcc::string_form
.
assert_eq!(DrmFourcc::Xrgb8888.string_form(), "XR24");
We also provide a type for representing a fourcc/modifier pair
let format = DrmFormat {
code: DrmFourcc::Xrgb8888,
modifier: DrmModifier::Linear,
};
The enums are autogenerated from the canonical list in the Linux source code.
Features
std
: Enable functionality that requires the standard library. Enabled by defaultbuild_bindings
: Build the bindings based on the headers on your machine. Should not be necessary in most cases.
Contributors
Dependencies
~0–300KB