raw-gl-context
raw-gl-context copied to clipboard
Please add FreeBSD support
Here https://github.com/glowcoil/raw-gl-context/blob/master/src/lib.rs#L15 FreeBSD support should be added:
@@ -13,6 +13,11 @@
#[cfg(target_os = "linux")]
use crate::x11 as platform;
+#[cfg(target_os = "freebsd")]
+mod x11;
+#[cfg(target_os = "freebsd")]
+use crate::x11 as platform;
+
#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "macos")]