winit-sonoma-fix/README.md

71 lines
1.9 KiB
Markdown
Raw Normal View History

2014-10-03 21:12:42 +10:00
# glutin - OpenGL, UTilities and INput
2014-10-05 03:18:09 +11:00
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/tomaka/glutin?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2014-07-27 18:55:37 +10:00
Alternative to GLFW in pure Rust.
2014-07-27 23:59:58 +10:00
[![Build Status](https://travis-ci.org/tomaka/glutin.png?branch=master)](https://travis-ci.org/tomaka/glutin)
2014-09-20 03:51:54 +10:00
2014-07-28 19:45:59 +10:00
## Try it!
2014-09-08 04:28:43 +10:00
```bash
git clone https://github.com/tomaka/glutin
cd glutin
2014-10-30 06:38:54 +11:00
cargo run --example window
2014-07-28 19:45:59 +10:00
```
2014-07-27 23:59:58 +10:00
## Usage
```rust
2014-09-21 19:33:09 +10:00
extern crate glutin;
2014-07-27 23:59:58 +10:00
extern crate libc;
extern crate gl;
fn main() {
2014-09-21 19:33:09 +10:00
let window = glutin::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
2014-10-28 18:20:59 +11:00
- To compile the examples for android, initialize the submodules, go to `deps/apk-builder/apk-builder` and run `cargo build`, then go back to `glutin` 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 and vsync are not implemented
2014-10-13 20:02:03 +11:00
- Headless rendering doesn't work
2014-09-15 21:46:37 +10:00
### Emscripten
- Work will start when Emscripten gets updated to LLVM 3.5 (which should happen soon)
### OS/X
2014-10-28 18:20:59 +11:00
- Some events are not implemented
- Implementation is still work-in-progress
- Vsync not implemented
2014-09-15 21:46:37 +10:00
### Win32
- You must call `glFlush` before `swap_buffers`, or else on Windows 8 nothing will be visible on the window
2014-09-15 21:46:37 +10:00
- 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
2014-10-28 18:20:59 +11:00
- Vsync not implemented