mirror of
https://github.com/italicsjenga/mini_gl_fb.git
synced 2024-11-22 23:41:30 +11:00
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:
parent
d12cdb02d7
commit
86570bd141
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "mini_gl_fb"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["shivshank"]
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue