drm: change logger visibility
This commit is contained in:
parent
0414417f3c
commit
c8b370a030
|
@ -30,7 +30,7 @@ pub struct AtomicDrmSurface<A: AsRawFd + 'static> {
|
||||||
state: RwLock<State>,
|
state: RwLock<State>,
|
||||||
pending: RwLock<State>,
|
pending: RwLock<State>,
|
||||||
test_buffer: Mutex<Option<(DumbBuffer, framebuffer::Handle)>>,
|
test_buffer: Mutex<Option<(DumbBuffer, framebuffer::Handle)>>,
|
||||||
pub(super) logger: ::slog::Logger,
|
pub(crate) logger: ::slog::Logger,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<A: AsRawFd + 'static> AtomicDrmSurface<A> {
|
impl<A: AsRawFd + 'static> AtomicDrmSurface<A> {
|
||||||
|
|
|
@ -25,7 +25,7 @@ pub struct LegacyDrmSurface<A: AsRawFd + 'static> {
|
||||||
crtc: crtc::Handle,
|
crtc: crtc::Handle,
|
||||||
state: RwLock<State>,
|
state: RwLock<State>,
|
||||||
pending: RwLock<State>,
|
pending: RwLock<State>,
|
||||||
pub(super) logger: ::slog::Logger,
|
pub(crate) logger: ::slog::Logger,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<A: AsRawFd + 'static> LegacyDrmSurface<A> {
|
impl<A: AsRawFd + 'static> LegacyDrmSurface<A> {
|
||||||
|
|
Loading…
Reference in New Issue