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

cross-platform OpenGL context creation

Results 13 raw-gl-context issues
Sort by recently updated
recently updated
newest added

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...

If a context is requested with alpha_bits != on X11 with Nvidia drivers, the following error is generated: ``` X Error of failed request: BadMatch (invalid parameter attributes) Major opcode...

Sorry. XD Using the `sway` compositor with AMD GPU, on Debian Bullseye. ``` > env RUST_BACKTRACE=1 cargo run --example winit Finished dev [unoptimized + debuginfo] target(s) in 0.03s Running `target/debug/examples/winit`...