winit-sonoma-fix/README.md

77 lines
2.2 KiB
Markdown
Raw Normal View History

2014-10-03 13:12:42 +02:00
# glutin - OpenGL, UTilities and INput
2014-10-04 16:18:09 +00: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 10:55:37 +02:00
2015-05-04 15:18:03 +02:00
[![](http://meritbadge.herokuapp.com/glutin)](https://crates.io/crates/glutin)
2016-09-05 22:10:15 +03:00
[![Docs.rs](https://docs.rs/glutin/badge.svg)](https://docs.rs/glutin)
2014-07-27 10:55:37 +02:00
Alternative to GLFW in pure Rust.
2014-07-27 15:59:58 +02:00
[![Build Status](https://travis-ci.org/tomaka/glutin.png?branch=master)](https://travis-ci.org/tomaka/glutin)
2015-01-13 09:43:09 +01:00
[![Build status](https://ci.appveyor.com/api/projects/status/cv5xewg3uchb3854/branch/master?svg=true)](https://ci.appveyor.com/project/tomaka/glutin/branch/master)
2014-09-19 19:51:54 +02:00
2015-02-15 18:28:12 +01:00
```toml
[dependencies]
glutin = "*"
```
2016-09-06 09:39:31 +03:00
## [Documentation](https://docs.rs/glutin)
2014-12-17 10:57:13 +01:00
2014-07-28 11:45:59 +02:00
## Try it!
2014-09-07 20:28:43 +02:00
```bash
git clone https://github.com/tomaka/glutin
cd glutin
2014-10-29 20:38:54 +01:00
cargo run --example window
2014-07-28 11:45:59 +02:00
```
2014-07-27 15:59:58 +02:00
## Usage
2015-02-22 11:31:27 +01:00
Glutin is an OpenGL context creation library and doesn't directly provide OpenGL bindings for you.
```toml
[dependencies]
gl = "*"
2015-02-22 14:01:44 +01:00
libc = "*"
2015-02-22 11:31:27 +01:00
```
2014-07-27 15:59:58 +02:00
```rust
2015-06-09 06:14:47 -07:00
extern crate gl;
2014-09-21 11:33:09 +02:00
extern crate glutin;
2014-07-27 15:59:58 +02:00
extern crate libc;
fn main() {
2014-09-21 11:33:09 +02:00
let window = glutin::Window::new().unwrap();
2014-07-27 15:59:58 +02:00
2014-07-30 18:12:39 +02:00
unsafe { window.make_current() };
2014-07-27 15:59:58 +02:00
2015-02-22 11:31:27 +01:00
unsafe {
gl::load_with(|symbol| window.get_proc_address(symbol) as *const _);
2014-07-27 15:59:58 +02:00
2015-02-22 11:31:27 +01:00
gl::ClearColor(0.0, 1.0, 0.0, 1.0);
}
2014-07-27 15:59:58 +02:00
2015-06-16 13:48:08 +02:00
for event in window.wait_events() {
2015-02-22 11:31:27 +01:00
unsafe { gl::Clear(gl::COLOR_BUFFER_BIT) };
2014-07-27 15:59:58 +02:00
window.swap_buffers();
2015-06-16 13:48:08 +02:00
match event {
glutin::Event::Closed => break,
_ => ()
}
2014-07-27 15:59:58 +02:00
}
}
```
2014-09-15 13:46:37 +02:00
2015-05-04 15:18:03 +02:00
Note that glutin aims at being a low-level brick in your rendering infrastructure. You are encouraged to write another layer of abstraction between glutin and your application.
2014-09-15 13:46:37 +02:00
## Platform-specific notes
### Android
2014-10-28 08:20:59 +01: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`
2015-02-18 16:52:22 +01:00
2014-09-15 13:46:37 +02:00
### X11
2015-05-04 15:18:03 +02:00
- The plan is that glutin tries to dynamically link-to and use wayland if possible. If it doesn't work, it will try xlib instead. If it doesn't work, it will try libcaca. This is work-in-progress.