mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 23:01:30 +11:00
Merge pull request #218 from bjwbell/disable-unstable-warnings
Disable compiler unstable warnings
This commit is contained in:
commit
60ec8542ab
1
build.rs
1
build.rs
|
@ -1,3 +1,4 @@
|
||||||
|
#![allow(unstable)]
|
||||||
extern crate gl_generator;
|
extern crate gl_generator;
|
||||||
extern crate khronos_api;
|
extern crate khronos_api;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#![feature(unsafe_destructor)]
|
#![feature(unsafe_destructor)]
|
||||||
#![unstable]
|
#![unstable]
|
||||||
|
#![allow(unstable)]
|
||||||
|
|
||||||
//! The purpose of this library is to provide an OpenGL context on as many
|
//! The purpose of this library is to provide an OpenGL context on as many
|
||||||
//! platforms as possible.
|
//! platforms as possible.
|
||||||
|
|
Loading…
Reference in a new issue