## OpenGL-Registry-Macros [![Latest Version](https://img.shields.io/crates/v/opengl-registry-macros)](https://crates.io/crates/opengl-registry-macros) [![Documentation](https://img.shields.io/docsrs/opengl-registry-macros)](https://docs.rs/opengl-registry-macros) Rust macros utilizing the OpenGL API and Extension Registry. ## Example usage ```rust 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!(); } } ```