winit-sonoma-fix/README.md

67 lines
1.6 KiB
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();
}
}
```
2014-09-15 21:46:37 +10:00
## Platform-specific notes
### Android
- To compile the examples for android, initialize the submodules, go to `deps/apk-builder/apk-builder` and run `cargo build`, then go back to `gl-init` and call `ANDROID_HOME=/path/to/sdk NDK_HOME=/path/to/ndk NDK_STANDALONE=/path/to/standalone cargo test --no-run --target=arm-linux-androideabi`
- Events are not implemented
### Emscripten
- Work will start when Emscripten gets updated to LLVM 3.5 (which should happen soon)
### OS/X
- This library compiles for OS/X but calling any function will fail
- Some low-level issues related to Objective C bindings make the implementation difficult to write
- Looking for contributors
### Win32
- Pixel formats are not implemented
- If you don't have MinGW installed, you will need to provide `libgdi32.a` and `libopengl32.a` ; you can put them in `C:\Users\you\.rust`
### X11
- Some input events are not implemented
- Pixel formats not implemented
- The implementation probably needs a cleanup