cognitive_graphics/lib.rs
1// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of
2// the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/
3
4//! This create gathers common tools related to hardware graphics.
5//!
6//! It is set of loose simple tools. It should be replaced by higher-level crate.
7
8// -------------------------------------------------------------------------------------------------
9
10extern crate libc;
11extern crate gbm_rs as libgbm;
12extern crate egl;
13extern crate gl;
14
15mod errors;
16pub use errors::GraphicsError;
17
18pub mod attributes;
19pub mod gbm_tools;
20pub mod egl_tools;
21pub mod gl_tools;
22
23// -------------------------------------------------------------------------------------------------