winit-sonoma-fix/README.md

41 lines
739 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!
```
git clone https://github.com/tomaka/gl-init-rs
cd gl-init-rs
cargo test
./target/test/window // or target\test\window.exe
```
2014-07-27 23:59:58 +10:00
## Usage
```rust
extern crate init = "gl-init-rs";
extern crate libc;
extern crate gl;
fn main() {
use std::default::Default;
2014-07-28 04:38:27 +10:00
let window = init::Window::new(None, "Hello world!", &Default::default(), None).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) as *const libc::c_void);
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
while !window.should_close() {
window.wait_events();
gl::Clear(gl::COLOR_BUFFER_BIT);
window.swap_buffers();
}
}
```