1
0
Fork 0
forked from wry/wry

autocommit 2022-04-13 12:58:04 CEST

This commit is contained in:
Julian Orth 2022-04-13 12:58:04 +02:00
parent 8924936079
commit 661a28e5b0
23 changed files with 165 additions and 143 deletions

View file

@ -32,7 +32,7 @@ use {
use crate::{
backend,
utils::{errorfmt::ErrorFmt, stack::Stack, syncqueue::SyncQueue, vec_ext::VecExt},
video::{dma::DmaBuf, INVALID_MODIFIER},
video::{dmabuf::DmaBuf, INVALID_MODIFIER},
};
pub use sys::{
drm_mode_modeinfo, DRM_CLIENT_CAP_ATOMIC, DRM_MODE_ATOMIC_ALLOW_MODESET,

View file

@ -2,7 +2,7 @@ use {
crate::{
format::formats,
video::{
dma::{DmaBuf, DmaBufPlane},
dmabuf::{DmaBuf, DmaBufPlane},
drm::{Drm, DrmError},
ModifiedFormat, INVALID_MODIFIER,
},