surfman 0.12.0

A cross-platform, low-level toolkit for GPU surface management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// surfman/surfman/src/platform/macos/cgl/mod.rs
//
//! Bindings to Apple's OpenGL implementation on macOS.

pub mod connection;
pub mod context;
pub mod device;
pub mod surface;

mod error;
mod ffi;

crate::implement_interfaces!();

#[cfg(test)]
#[path = "../../../tests.rs"]
mod tests;