Finish doc comment

I don't know why I have a tendency to forget writing docs... while mid
writing docs!
This commit is contained in:
shivshank 2018-07-24 18:34:13 -04:00
parent d12cdb02d7
commit 86570bd141
2 changed files with 9 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "mini_gl_fb"
version = "0.2.1"
version = "0.2.2"
authors = ["shivshank"]
[dependencies]

View file

@ -1,6 +1,13 @@
//! Hardware accelerated library inspired by minifb and friends.
//!
//! Powered by OpenGL. Default context is provided by glutin, but
//! Powered by OpenGL. Default context is provided by glutin, but this may be optional in the
//! future so that you can create your own context any way you like.
//!
//! # Note on possible context creation failure:
//!
//! Currently uses the `gl` crate for OpenGL loading. OpenGL context creation may fail if your
//! setup does not support the newest OpenGL. This bug needs to be verified and is be fixable.
//! OpenGL ~3 is currently required, but OpenGL 2.1 support should be feasible if requested.
extern crate glutin;
#[macro_use]