commit | ce0d093daf703576553e3ecf739fce5d7ef7031e | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Fri Aug 09 01:12:50 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Fri Aug 09 01:12:50 2024 +0000 |
tree | 344e2ff0690c4b39db3c32b2629013dffb51e696 | |
parent | 6d4d73ffc89bb3599852b768c02cf3a3ef7d3753 [diff] | |
parent | 3471f1bcc10589a1b1095f60f3da9c9b770f03da [diff] |
Snap for 12204483 from 3471f1bcc10589a1b1095f60f3da9c9b770f03da to 25D4-release Change-Id: I4ee8cdb3913b053bd351b345ee08263f864292be
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.
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.