Move glium.rs
This commit is contained in:
parent
2c9f6a7479
commit
e191c08186
|
@ -31,3 +31,5 @@ pub trait GraphicsBackend {
|
|||
|
||||
pub mod software;
|
||||
pub mod egl;
|
||||
#[cfg(feature = "renderer_glium")]
|
||||
pub mod glium;
|
||||
|
|
|
@ -21,12 +21,7 @@ pub mod winit;
|
|||
#[cfg(feature = "backend_libinput")]
|
||||
pub mod libinput;
|
||||
|
||||
#[cfg(feature = "renderer_glium")]
|
||||
mod glium;
|
||||
#[cfg(feature = "renderer_glium")]
|
||||
pub use glium::*;
|
||||
|
||||
/// Internal functions that need to be accessible by the different backend implementations
|
||||
// Internal functions that need to be accessible by the different backend implementations
|
||||
|
||||
trait SeatInternal {
|
||||
fn new(id: u64, capabilities: input::SeatCapabilities) -> Self;
|
||||
|
|
Loading…
Reference in New Issue