raw-gl-context icon indicating copy to clipboard operation
raw-gl-context copied to clipboard

Please add FreeBSD support

Open yurivict opened this issue 4 years ago • 0 comments

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")]

yurivict avatar Feb 08 '21 23:02 yurivict