glutin 0.30.0-beta.2

Cross-platform OpenGL context provider.
Documentation

glutin - OpenGL, UTilities and INput

A low-level library for OpenGL context creation.

Docs.rs

[dependencies]
glutin = "0.30.0-beta.2"

Documentation

Contact Us

Join us in any of these:

Matrix Libera.Chat

Usage Examples

Warning: these are examples for master. For the latest released version you can find them here.

The examples use gl_generator to generate OpenGL bindings.

Try it!

git clone https://github.com/rust-windowing/glutin
cd glutin
cargo run --example window

Usage

Glutin is an OpenGL context creation library and doesn't directly provide OpenGL bindings for you.

For examples, please look here.

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.

The minimum rust version target by glutin is 1.57.0.

Platform-specific notes

Android

To compile the examples for android, you have to use the cargo apk utility.

See cargo-apk in the android-ndk-rs repository for instructions.