Skip to content

Commit

Permalink
Remove backend::drm::node; replaced with drm crate node
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 authored and Drakulix committed Oct 1, 2024
1 parent e8af9a1 commit b6bb20e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 432 deletions.
3 changes: 1 addition & 2 deletions src/backend/drm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ pub mod dumb;
mod error;
#[cfg(feature = "backend_gbm")]
pub mod gbm;
pub mod node;

mod surface;

Expand All @@ -89,11 +88,11 @@ pub use device::{
DrmDevice, DrmDeviceFd, DrmDeviceNotifier, DrmEvent, EventMetadata as DrmEventMetadata, PlaneClaim,
Time as DrmEventTime,
};
pub use drm::node::{CreateDrmNodeError, DrmNode, NodeType};
use drm_fourcc::{DrmFormat, DrmFourcc, DrmModifier};
pub use error::AccessError as DrmAccessError;
pub use error::Error as DrmError;
use indexmap::IndexSet;
pub use node::{CreateDrmNodeError, DrmNode, NodeType};
#[cfg(feature = "backend_gbm")]
pub use surface::gbm::{Error as GbmBufferedSurfaceError, GbmBufferedSurface};
pub use surface::{DrmSurface, PlaneConfig, PlaneDamageClips, PlaneState};
Expand Down
39 changes: 0 additions & 39 deletions src/backend/drm/node/constants.rs

This file was deleted.

Loading

0 comments on commit b6bb20e

Please sign in to comment.