glium

Build Status Circle CI Coverage Status

Elegant and safe OpenGL wrapper.

Glium is an intermediate layer between OpenGL and your application. You still need to manually handle the graphics pipeline, but without having to use OpenGL's old and error-prone API.

toml [dependencies] glium = "*"

Its objectives: - Be safe to use. Many aspects of OpenGL that can trigger a crash if misused are automatically handled by glium. - Provide an API that enforces good pratices such as RAII or stateless function calls. - Be compatible with all OpenGL versions that support shaders, providing a unified API when things diverge. - Avoid all OpenGL errors beforehand. - Produce optimized OpenGL function calls, and allow the user to easily use modern OpenGL techniques.

Link to the documentation

If you have some knowledge of OpenGL, the documentation and the examples should get you easily started.

Links to a work-in-progress tutorial

Why should I use Glium instead of raw OpenGL calls?

Easy to use:

Safety:

Compatibility:

Performances:

Limitations:

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.