9 releases

Uses old Rust 2015

0.2.7 Dec 6, 2016
0.2.6 Oct 8, 2016
0.2.5 Sep 28, 2015
0.1.0 Sep 23, 2015

#15 in #khronos

Download history 1215/week @ 2024-11-15 929/week @ 2024-11-22 941/week @ 2024-11-29 3221/week @ 2024-12-06 1328/week @ 2024-12-13 1256/week @ 2024-12-20 694/week @ 2024-12-27 425/week @ 2025-01-03 339/week @ 2025-01-10 341/week @ 2025-01-17 268/week @ 2025-01-24 451/week @ 2025-01-31 304/week @ 2025-02-07 192/week @ 2025-02-14 257/week @ 2025-02-21 168/week @ 2025-02-28

979 downloads per month
Used in 15 crates (6 directly)

Apache-2.0

27KB
513 lines

Rust bindings for EGL

Linking

When using OpenGL ES with rust-egl, it is necessary to place a dummy extern at the top of your application which links libEGL first, then GLESv1/2. This is because libEGL provides symbols required by GLESv1/2. Here's how to work around this:

#[link(name = "EGL")]
#[link(name = "GLESv2)]
extern {}

Dependencies

~46KB