mirror of
https://github.com/italicsjenga/mini_gl_fb.git
synced 2024-11-22 23:41:30 +11:00
Update version, readme
This commit is contained in:
parent
32c6a5ce09
commit
aa46df7f74
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "mini_gl_fb"
|
name = "mini_gl_fb"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
authors = ["shivshank"]
|
authors = ["shivshank"]
|
||||||
description = "Tool for quickly creating a window and drawing to a buffer with OpenGL"
|
description = "Tool for quickly creating a window and drawing to a buffer with OpenGL"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
# Mini GL "Framebuffer"
|
# Mini GL "Framebuffer"
|
||||||
|
|
||||||
|
[![Version](https://img.shields.io/crates/v/mini_gl_fb.svg)](https://crates.io/crates/mini_gl_fb)
|
||||||
|
[![Docs.rs](https://docs.rs/mini_gl_fb/badge.svg)](https://docs.rs/mini_gl_fb)
|
||||||
|
|
||||||
Provides an easy way to draw a window from a pixel buffer. OpenGL alternative to other
|
Provides an easy way to draw a window from a pixel buffer. OpenGL alternative to other
|
||||||
easy framebuffer libraries.
|
easy framebuffer libraries.
|
||||||
|
|
||||||
|
@ -40,12 +43,13 @@ fb.update_buffer(/*...*/);
|
||||||
|
|
||||||
# Other features
|
# Other features
|
||||||
|
|
||||||
|
- Black and white rendering, specifying one byte per pixel
|
||||||
- Hardware accelerated buffer scaling (window and buffer can have different sizes)
|
- Hardware accelerated buffer scaling (window and buffer can have different sizes)
|
||||||
- Exposes a function for creating a context with glutin in one line
|
- Exposes a function for creating a context with glutin in one line
|
||||||
- Exposes a function for creating a VAO, VBO, quad, and blank texture in one line
|
- Exposes a function for creating a VAO, VBO, quad, and blank texture in one line
|
||||||
- If you don't want to use glutin you can **bring your own context** too!
|
- If you don't want to use glutin you can **bring your own context** too!
|
||||||
|
|
||||||
See the docs for more info.
|
See the [docs](https://docs.rs/mini_gl_fb/) for more info.
|
||||||
|
|
||||||
# Planned Features
|
# Planned Features
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue