130 releases

0.31.3 Feb 12, 2024
0.31.2 Dec 22, 2023
0.31.1 Oct 29, 2023
0.30.9 Jun 16, 2023
0.0.2 Dec 30, 2014

#11 in Graphics APIs

Download history 39032/week @ 2024-01-21 35442/week @ 2024-01-28 38793/week @ 2024-02-04 41927/week @ 2024-02-11 45211/week @ 2024-02-18 41715/week @ 2024-02-25 41484/week @ 2024-03-03 40100/week @ 2024-03-10 45240/week @ 2024-03-17 45843/week @ 2024-03-24 47602/week @ 2024-03-31 37278/week @ 2024-04-07 44854/week @ 2024-04-14 47433/week @ 2024-04-21 41708/week @ 2024-04-28 39054/week @ 2024-05-05

177,701 downloads per month
Used in 622 crates (197 directly)

Apache-2.0

325KB
7K SLoC

glutin - OpenGL, UTilities, and INput

A low-level library for OpenGL context creation.

Docs.rs

[dependencies]
glutin = "0.31.3"

Documentation

Contact Us

Join us in any of these:

Matrix Libera.Chat

Usage Examples

Warning: These are examples for master. You can find examples for the latest released version 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.

Glutin follows winit's MSRV policy.

Platform-specific notes

Android

Be sure to handle Android's lifecycle correctly when using a winit window by only creating a GL surface after winit raises Event::Resumed, and destroy it again upon receiving Event::Suspended. See this in action in the android.rs example.

To compile and run the Android example on your device, install cargo-apk and start the app using:

$ cargo apk r -p glutin_examples --example android

Dependencies

~0.2–13MB
~149K SLoC