mirror of
https://github.com/italicsjenga/mini_gl_fb.git
synced 2024-11-22 07:21:30 +11:00
Update to Rust 2018 edition
This commit is contained in:
parent
db2f86ce15
commit
9a64350619
|
@ -4,6 +4,7 @@ version = "0.8.0"
|
|||
authors = ["shivshank"]
|
||||
description = "Quick and easy window creation, input, and high speed bitmap rendering"
|
||||
repository = "https://github.com/shivshank/mini_gl_fb"
|
||||
edition = "2018"
|
||||
|
||||
license = "MIT"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
//! [`Framebuffer`] object and manipulate them directly.
|
||||
|
||||
use glutin::{WindowedContext, PossiblyCurrent, ContextError};
|
||||
use core::Framebuffer;
|
||||
use crate::core::Framebuffer;
|
||||
|
||||
use std::collections::HashMap;
|
||||
use glutin::event::{MouseButton, VirtualKeyCode, ModifiersState};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use breakout::{GlutinBreakout, BasicInput};
|
||||
use crate::breakout::{GlutinBreakout, BasicInput};
|
||||
|
||||
use rustic_gl;
|
||||
|
||||
|
|
|
@ -117,9 +117,9 @@ pub mod breakout;
|
|||
|
||||
pub use breakout::{GlutinBreakout, BasicInput};
|
||||
pub use config::{Config, ConfigBuilder};
|
||||
pub use core::{Internal, BufferFormat, Framebuffer};
|
||||
pub use crate::core::{Internal, BufferFormat, Framebuffer};
|
||||
|
||||
use core::ToGlType;
|
||||
use crate::core::ToGlType;
|
||||
use glutin::event_loop::EventLoop;
|
||||
use glutin::dpi::LogicalSize;
|
||||
|
||||
|
|
Loading…
Reference in a new issue