17 lines
335 B
Rust
17 lines
335 B
Rust
use crate::format::Format;
|
|
|
|
pub mod dmabuf;
|
|
pub mod drm;
|
|
pub mod gbm;
|
|
|
|
pub type Modifier = u64;
|
|
|
|
pub const INVALID_MODIFIER: Modifier = 0x00ff_ffff_ffff_ffff;
|
|
#[allow(dead_code)]
|
|
pub const LINEAR_MODIFIER: Modifier = 0;
|
|
|
|
#[derive(Copy, Clone)]
|
|
pub struct ModifiedFormat {
|
|
pub format: &'static Format,
|
|
pub modifier: Modifier,
|
|
}
|