Fix unused import warning

This commit is contained in:
Victor Berger 2021-07-02 10:00:40 +02:00 committed by Victor Berger
parent d5b033f5b5
commit 89079d6dd3
1 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,6 @@
use super::{display::EGLDisplayHandle, ffi, wrap_egl_call, SwapBuffersError}; use super::{display::EGLDisplayHandle, ffi, wrap_egl_call, SwapBuffersError};
use nix::libc::{c_int, c_void}; use nix::libc::{c_int, c_void};
use std::os::raw;
#[cfg(feature = "backend_gbm")] #[cfg(feature = "backend_gbm")]
use std::os::unix::io::AsRawFd; use std::os::unix::io::AsRawFd;
use std::{fmt::Debug, marker::PhantomData, sync::Arc}; use std::{fmt::Debug, marker::PhantomData, sync::Arc};
@ -228,7 +227,7 @@ pub unsafe trait EGLNativeSurface: Send + Sync {
#[cfg(feature = "backend_winit")] #[cfg(feature = "backend_winit")]
/// Typed Xlib window for the `X11` backend /// Typed Xlib window for the `X11` backend
#[derive(Debug)] #[derive(Debug)]
pub struct XlibWindow(pub raw::c_ulong); pub struct XlibWindow(pub std::os::raw::c_ulong);
#[cfg(feature = "backend_winit")] #[cfg(feature = "backend_winit")]
unsafe impl EGLNativeSurface for XlibWindow { unsafe impl EGLNativeSurface for XlibWindow {
@ -243,7 +242,7 @@ unsafe impl EGLNativeSurface for XlibWindow {
ffi::egl::CreatePlatformWindowSurfaceEXT( ffi::egl::CreatePlatformWindowSurfaceEXT(
display.handle, display.handle,
config_id, config_id,
(&mut id) as *mut raw::c_ulong as *mut _, (&mut id) as *mut std::os::raw::c_ulong as *mut _,
surface_attributes.as_ptr(), surface_attributes.as_ptr(),
) )
}) })