winit-sonoma-fix/README.md

39 lines
637 B
Markdown
Raw Normal View History

2014-07-27 18:55:37 +10:00
# gl-init-rs
Alternative to GLFW in pure Rust.
2014-07-27 23:59:58 +10:00
2014-07-28 19:45:59 +10:00
## Try it!
2014-09-08 04:28:43 +10:00
```bash
2014-07-28 19:45:59 +10:00
git clone https://github.com/tomaka/gl-init-rs
cd gl-init-rs
cargo test
2014-09-08 04:28:43 +10:00
./target/test/window # or target\test\window.exe
2014-07-28 19:45:59 +10:00
```
2014-07-27 23:59:58 +10:00
## Usage
```rust
extern crate init = "gl-init-rs";
extern crate libc;
extern crate gl;
fn main() {
2014-08-02 21:35:42 +10:00
let window = init::Window::new().unwrap();
2014-07-27 23:59:58 +10:00
2014-07-31 02:12:39 +10:00
unsafe { window.make_current() };
2014-07-27 23:59:58 +10:00
gl::load_with(|symbol| window.get_proc_address(symbol));
2014-07-27 23:59:58 +10:00
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
2014-08-03 19:43:57 +10:00
while !window.is_closed() {
2014-07-27 23:59:58 +10:00
window.wait_events();
gl::Clear(gl::COLOR_BUFFER_BIT);
window.swap_buffers();
}
}
```