blob: cd2e4d0f8a2b90f6d45c6d112b0fd09cd4c13a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
//! OpenGL bindings.
#![deny(clippy::all, clippy::pedantic, missing_docs)]
use opengl_registry_macros::for_each_opengl_command;
for_each_opengl_command! {
#[doc = stringify!(#gl_command_name)]
#[allow(non_snake_case, clippy::too_many_arguments)]
pub unsafe fn #gl_command_name_noprefix(#gl_command_args) -> #gl_command_ret_type {
type GLFunc =
unsafe extern "C" fn(#gl_command_arg_types) -> #gl_command_ret_type;
let gl_func = std::mem::transmute::<_, GLFunc>(functions::#gl_command_name);
gl_func(#gl_command_arg_names)
}
}
mod ffi
{
#![allow(
non_upper_case_globals,
non_camel_case_types,
non_snake_case,
unused,
missing_docs,
clippy::unreadable_literal
)]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}
pub use ffi::*;
/// Loads OpenGL function pointers using the given function address retriever function.
pub fn load_with<GetProcAddrFn>(get_proc_addr: GetProcAddrFn)
where
GetProcAddrFn: Fn(&str) -> unsafe extern "C" fn(),
{
for_each_opengl_command! {
unsafe {
functions::#gl_command_name = get_proc_addr(stringify!(#gl_command_name));
}
};
}
mod functions
{
use opengl_registry_macros::for_each_opengl_command;
for_each_opengl_command!(
#[doc = stringify!(#gl_command_name)]
#[allow(non_upper_case_globals)]
pub static mut #gl_command_name: unsafe extern "C" fn() = function_not_loaded;
);
extern "C" fn function_not_loaded()
{
panic!("OpenGL function not loaded");
}
}
|