Skip to content

Commit

Permalink
Split out READMEs into subdirectories
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanzab committed Nov 28, 2015
1 parent 174484c commit 57b7da3
Show file tree
Hide file tree
Showing 7 changed files with 289 additions and 219 deletions.
236 changes: 23 additions & 213 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,230 +1,40 @@
# gl-rs

An OpenGL function pointer loader for the Rust Programming Language.

## Basic usage

The easiest way to use OpenGL is to simply include the `gl` crate.

To do so, add this to your `Cargo.toml`:

```toml
[dependencies.gl]
git = "https://github.com/bjz/gl-rs"
```

You can import the pointer style loader and type aliases like so:

~~~rust
extern crate gl;
// include the OpenGL type aliases
use gl::types::*;
~~~

You must load the function pointers into their respective function pointers
using the `load_with` function. You must supply a loader function from your
context library, This is how it would look using [glfw-rs]
(https://github.com/bjz/glfw-rs):

~~~rust
// the supplied function must be of the type:
// `&fn(symbol: &str) -> Option<extern "C" fn()>`
// `window` is a glfw::Window
gl::load_with(|s| window.get_proc_address(s));

// loading a specific function pointer
gl::Viewport::load_with(|s| window.get_proc_address(s));
~~~

Calling a function that has not been loaded will result in a failure like:
`panic!("gl::Viewport was not loaded")`, which avoids a segfault. This feature
does not cause any run time overhead because the failing functions are
assigned only when `load_with` is called.

~~~rust
// accessing an enum
gl::RED_BITS;

// calling a function
gl::DrawArrays(gl::TRIANGLES, 0, 3);
[![Build Status](https://travis-ci.org/bjz/gl-rs.svg?branch=master)](https://travis-ci.org/bjz/gl-rs)

// functions that take pointers are unsafe
unsafe { gl::ShaderSource(shader, 1, &c_str, std::ptr::null()) };
~~~
## Overview

Each function pointer has an associated boolean value allowing you to
check if a function has been loaded at run time. The function accesses a
corresponding global boolean that is set when `load_with` is called, so there
shouldn't be much overhead.
The following crates are contained in this repository:

~~~rust
if gl::Viewport::is_loaded() {
// do something...
}
~~~
### [gl](https://github.com/bjz/gl-rs/tree/master/gl)

## Extra features
[![Version](https://img.shields.io/crates/v/gl.svg)](https://crates.io/crates/gl) [![License](https://img.shields.io/crates/l/gl.svg)](https://github.com/bjz/gl-rs/blob/master/LICENSE) [![Downloads](https://img.shields.io/crates/d/gl.svg)](https://crates.io/crates/gl)

The global and struct generators will attempt to use fallbacks functions when
they are available. For example, if `glGenFramebuffers` cannot be loaded it will
also attempt to load `glGenFramebuffersEXT` as a fallback.
An OpenGL function pointer loader for the Rust Programming Language.

## Using gl_generator
```toml
[dependencies]
gl = "0.5.2"
```

If you need a specific version of OpenGL, or you need a different API
(OpenGL ES, EGL, WGL, GLX), or if you need certain extensions, you should use
the `gl_generator` plugin instead.
### [gl_generator](https://github.com/bjz/gl-rs/tree/master/gl_generator)

See [gfx_gl](https://github.com/gfx-rs/gfx_gl) for an example of using a
custom gfx-rs loader for a project.
[![Version](https://img.shields.io/crates/v/gl_generator.svg)](https://crates.io/crates/gl_generator) [![License](https://img.shields.io/crates/l/gl_generator.svg)](https://github.com/bjz/gl-rs/blob/master/LICENSE) [![Downloads](https://img.shields.io/crates/d/gl_generator.svg)](https://crates.io/crates/gl_generator)

Add this to your `Cargo.toml`:
Code generators for creating bindings to the Khronos OpenGL APIs.

~~~toml
```toml
[build-dependencies]
gl_generator = "*"
khronos_api = "0.0.6"
~~~

Under the `[package]` section, add:

~~~toml
build = "build.rs"
~~~

Create a `build.rs` to pull your specific version/API:

~~~rust
extern crate gl_generator;
extern crate khronos_api;

use std::env;
use std::fs::File;
use std::io::BufWriter;
use std::path::Path;

fn main() {
let out_dir = env::var("OUT_DIR").unwrap();
let dest = Path::new(&out_dir);

let mut file = BufWriter::new(File::create(&dest.join("bindings.rs")).unwrap());
gl_generator::generate_bindings(gl_generator::GlobalGenerator,
gl_generator::registry::Ns::Gl,
gl_generator::Fallbacks::All,
khronos_api::GL_XML, vec![], "4.5", "core",
&mut file).unwrap();
}

~~~

Then use it like this:

~~~rust
mod gles {
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}

/*
* Simple loading example
*/
fn main() {
// Assuming window is GLFW, initialized, and made current
gles::load_with(|s| window.get_proc_address(s));
}
~~~

The `build.rs` file will generate all the OpenGL functions in a file named,
`bindings.rs` plus all enumerations, and all types in the `types` submodule.

### Arguments

- The type of loader to generate. Can be
`gl_generator::StaticGenerator`, `gl_generator::StaticStructGenerator`,
`gl_generator::StructGenerator`, or `gl_generator::GlobalGenerator`.
- The API to generate. Can be `Gl`, `Gles1`, `Gles2`
(GLES 2 or 3), `Wgl`, `Glx`, `Egl`.
- The file which contains the bindings to parse. Can be `GL_XML` (for GL
and GL ES), `GLX_XML`, `WGL_XML`, `EGL_XML`.
- Extra extensions to include in the bindings. These are
specified as a list of strings.
- The requested API version. This is usually in the form
`"major.minor"`.
- The GL profile. Can be either `"core"` or `"compatibility"`. `"core"` will
only include all functions supported by the
requested version it self, while `"compatibility"` will include all the
functions from previous versions as well.
- The file to save the generated bindings to.

## Generator types

### Global generator

The global generator is the one used by default by the `gl` crate. See above
for more details.

### Struct generator

The struct generator is a cleaner alternative to the global generator.

The main difference is that you must call `gl::Gl::load_with` instead of
`gl::load_with`, and this functions returns a struct of type `Gl`. The OpenGL
functions are not static functions but member functions in this `Gl` struct.
This is important when the GL functions are associated with the current
context, as is true on Windows.

The enumerations and types are still static and available in a similar way as
in the global generator.

### Static generator

The static generator generates plain old bindings. You don't need to load the
functions.

This generator should only be used only if the platform you are compiling for
is guaranteed to support the requested API. Otherwise you will get a
compilation error.
For example, you can use it for WGL and OpenGL 1.1 on Windows or GLX and
OpenGL 1.3 on Linux, because Windows and Linux are guaranteed to provide
implementations for these APIs.

You will need to manually provide the linkage. For example to use WGL or
OpenGL 1.1 on Windows, you will need to add
`#[link="OpenGL32.lib"] extern {}` somewhere in your code.

### Custom Generators

The `gl_generator` crate is extensible. This is a niche feature useful only in
very rare cases. To create a custom generator, [create a new plugin
crate](http://doc.rust-lang.org/guide-plugin.html#syntax-extensions) which
depends on `gl_generator`. Then, implement the `gl_generator::Generator` trait
and in your plugin registrar, register a function which calls
`gl_generator::generate_bindings` with your custom generator and its name.

## Changelog

### gl

#### v0.5.1

- Upgrade `khronos_api` to v1.0.0

#### v0.5.0

- Use glutin from examples
- Use `raw::c_void` for `GLvoid`

### gl_generator
gl_generator = "0.4.2"
```

#### v0.4.1
### [khronos_api](https://github.com/bjz/gl-rs/tree/master/khronos_api)

- Upgrade `khronos_api` to v1.0.0
[![Version](https://img.shields.io/crates/v/khronos_api.svg)](https://crates.io/crates/khronos_api) [![License](https://img.shields.io/crates/l/khronos_api.svg)](https://github.com/bjz/gl-rs/blob/master/LICENSE) [![Downloads](https://img.shields.io/crates/d/khronos_api.svg)](https://crates.io/crates/khronos_api)

#### v0.4.0
The Khronos XML API Registry, exposed as byte string constants.

- Upgrade `xml-rs` to v0.2.2
- Use `raw::c_void` for `GLvoid`
- Remove `registry::{Group, EnumNs, CmdNs}`
- Remove `groups` field from `registry::Registry`
- Remove `is_safe` field from `registry::Cmd`
- Remove `comment` field from `registry::{Require, Remove, GlxOpcode}`
- Downgrade `khronos_api` to be a dev-dependency
```toml
[build-dependencies]
khronos_api = "1.0.0"
```
7 changes: 5 additions & 2 deletions gl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
[package]
name = "gl"
version = "0.5.1"
version = "0.5.2"
authors = ["Brendan Zabarauskas <[email protected]>",
"Corey Richardson",
"Arseny Kapoulkine"
]
description = "OpenGL bindings"
license = "Apache-2.0"
build = "build.rs"

homepage = "https://github.com/bjz/gl-rs/gl/"
repository = "https://github.com/bjz/gl-rs/"
readme = "README.md"

[build-dependencies]
gl_generator = { version = "0.4.0", path = "../gl_generator" }
gl_generator = { version = "0.4.2", path = "../gl_generator" }
khronos_api = { version = "1.0.0", path = "../khronos_api" }

[dev-dependencies]
Expand Down
79 changes: 79 additions & 0 deletions gl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# gl-rs

[![Version](https://img.shields.io/crates/v/gl.svg)](https://crates.io/crates/gl)
[![License](https://img.shields.io/crates/l/gl.svg)](https://github.com/bjz/gl-rs/blob/master/LICENSE)
[![Downloads](https://img.shields.io/crates/d/gl.svg)](https://crates.io/crates/gl)

An OpenGL function pointer loader for the Rust Programming Language.

```toml
[dependencies]
gl = "0.5.2"
```

## Basic usage

You can import the pointer style loader and type aliases like so:

```rust
extern crate gl;
// include the OpenGL type aliases
use gl::types::*;
```

You must load the function pointers into their respective function pointers
using the `load_with` function. You must supply a loader function from your
context library, This is how it would look using [glfw-rs]
(https://github.com/bjz/glfw-rs):

```rust
// the supplied function must be of the type:
// `&fn(symbol: &str) -> Option<extern "C" fn()>`
// `window` is a glfw::Window
gl::load_with(|s| window.get_proc_address(s));

// loading a specific function pointer
gl::Viewport::load_with(|s| window.get_proc_address(s));
```

Calling a function that has not been loaded will result in a failure like:
`panic!("gl::Viewport was not loaded")`, which avoids a segfault. This feature
does not cause any run time overhead because the failing functions are
assigned only when `load_with` is called.

```rust
// accessing an enum
gl::RED_BITS;

// calling a function
gl::DrawArrays(gl::TRIANGLES, 0, 3);

// functions that take pointers are unsafe
unsafe { gl::ShaderSource(shader, 1, &c_str, std::ptr::null()) };
```

Each function pointer has an associated boolean value allowing you to
check if a function has been loaded at run time. The function accesses a
corresponding global boolean that is set when `load_with` is called, so there
shouldn't be much overhead.

```rust
if gl::Viewport::is_loaded() {
// do something...
}
```

## Changelog

### v0.5.2

- Update crate metadata

### v0.5.1

- Upgrade `khronos_api` to v1.0.0

### v0.5.0

- Use `glutin` for examples
- Use `raw::c_void` for `GLvoid`
9 changes: 6 additions & 3 deletions gl_generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
[package]

name = "gl_generator"
version = "0.4.1"
version = "0.4.2"
authors = ["Brendan Zabarauskas <[email protected]>",
"Corey Richardson",
"Arseny Kapoulkine"
]
description = "Syntax extension for creating bindings to the Khronos OpenGL and related APIs"
repository = "https://github.com/bjz/gl-rs"
description = "Code generators for creating bindings to the Khronos OpenGL APIs."
license = "Apache-2.0"

homepage = "https://github.com/bjz/gl-rs/gl_generator/"
repository = "https://github.com/bjz/gl-rs/"
readme = "README.md"

[lib]
name = "gl_generator"
path = "lib.rs"
Expand Down
Loading

0 comments on commit 57b7da3

Please sign in to comment.