opengl-registry-macros

Crates.ioopengl-registry-macros
lib.rsopengl-registry-macros
version0.1.0
sourcesrc
created_at2023-03-07 20:54:58.071085
updated_at2023-03-07 20:54:58.071085
descriptionMacros utilizing the OpenGL API and Extension Registry
homepage
repositoryhttps://git.hampusmat.com/opengl-registry-macros
max_upload_size
id803920
size33,361
(HampusMat)

documentation

README

OpenGL-Registry-Macros

Latest Version Documentation

Rust macros utilizing the OpenGL API and Extension Registry.

Example usage

use opengl_registry_macros::for_each_opengl_command;

for_each_opengl_command! {
    fn #gl_command_name(#gl_command_args) -> #gl_command_ret_type
    {
        println!("Hello from {}", stringify!(#gl_command_name));

        unimplemented!();
    }
}
Commit count: 0

cargo fmt