Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

20
vendor/glutin_wgl_sys/src/lib.rs vendored Normal file
View File

@@ -0,0 +1,20 @@
#![cfg(windows)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::manual_non_exhaustive)]
#![allow(clippy::unnecessary_cast)]
#![allow(unused_imports)]
#![allow(unknown_lints, clippy::missing_transmute_annotations)]
/// WGL bindings
pub mod wgl {
include!(concat!(env!("OUT_DIR"), "/wgl_bindings.rs"));
}
/// Functions that are not necessarily always available
pub mod wgl_extra {
include!(concat!(env!("OUT_DIR"), "/wgl_extra_bindings.rs"));
}
#[link(name = "opengl32")]
extern "C" {}