diff --git a/src/gfx_apis/gl.rs b/src/gfx_apis/gl.rs
index 1e974f6a..5f1b63e3 100644
--- a/src/gfx_apis/gl.rs
+++ b/src/gfx_apis/gl.rs
@@ -18,53 +18,6 @@ macro_rules! egl_transparent {
};
}
-macro_rules! dynload {
- (
- $item:ident: $container:ident from $name:literal {
- $(
- $fun:ident: $ty:ty,
- )*
- }
- ) => {
- #[expect(non_snake_case)]
- #[derive(Debug)]
- pub struct $container {
- _lib: libloading::Library,
- $(
- pub $fun: $ty,
- )*
- }
-
- pub static $item: std::sync::LazyLock