rust-gl 0.1.7

Rust wrapper around webgl.
#![deny(warnings)]
#![allow(incomplete_features)]
#![feature(
    array_map,
    const_generics,
    vec_spare_capacity,
    maybe_uninit_uninit_array,
    maybe_uninit_array_assume_init
)]

pub mod attribute;
pub mod binder;
pub mod context;
pub mod math;
pub mod obj;
pub mod object;
pub mod program;
pub mod uniform;
pub mod using;
pub mod derive {
    pub use rust_gl_proc::*;
}

pub type GL = web_sys::WebGl2RenderingContext;

use derive_more::*;
#[derive(Debug, Display, Error)]
pub struct NoneError();