Trait libdrm::Device [] [src]

pub trait Device: AsRawFd + Sized {
    fn magic(&self) -> Result<AuthToken> { ... }
    fn stats(&self) -> Result<()> { ... }
    fn set_client_cap(&self, cap: ClientCapability, set: bool) -> Result<()> { ... }
    fn wait_vblan(&self) { ... }
}

A trait for all DRM devices.

Provided Methods

Generates and returns a magic token unique to the current process. This token can be used to authenticate with the DRM Master.

Tells the DRM device whether we understand or do not understand a particular capability. Some features, such as atomic modesetting, require informing the device that the process can use such features before it will expose them.

Implementors