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 304/week @ 2024-03-14 1029/week @ 2024-03-21 510/week @ 2024-03-28 392/week @ 2024-04-04 391/week @ 2024-04-11 938/week @ 2024-04-18 603/week @ 2024-04-25 496/week @ 2024-05-02 420/week @ 2024-05-09 314/week @ 2024-05-16 343/week @ 2024-05-23 403/week @ 2024-05-30 1308/week @ 2024-06-06 1360/week @ 2024-06-13 674/week @ 2024-06-20 344/week @ 2024-06-27

3,738 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