glium

Build Status Circle CI

High-level OpenGL wrapper for the Rust language.

toml [dependencies] glium = "*" glutin = "*"

Its objectives: - Be 100 % safe to use. - Avoid all GL errors. If a GL error is triggered, then it's a bug. - Provide all the features that core OpenGL provides. - Be compatible with the lowest OpenGL version possible, but still use 4.5 features if they are available. - Be compatible with both OpenGL and OpenGL ES.

Link to the documentation

The documentation contains examples showing how to use Glium.

Why should I use Glium instead of raw OpenGL calls?

Easy to use:

Safety:

Compatibility:

Performances:

Features

Glium has four Cargo features:

In addition to this, it has the following OpenGL-related features:

Enabling each of these features adds more restrictions towards the backend and increases the likehood that build_glium will return an Err. However, it also gives you access to more functions with different signatures.