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

#14 in #khronos

Download history 1494/week @ 2024-07-23 1323/week @ 2024-07-30 1506/week @ 2024-08-06 1277/week @ 2024-08-13 1342/week @ 2024-08-20 1341/week @ 2024-08-27 1515/week @ 2024-09-03 1503/week @ 2024-09-10 1357/week @ 2024-09-17 3141/week @ 2024-09-24 4197/week @ 2024-10-01 4874/week @ 2024-10-08 3275/week @ 2024-10-15 1915/week @ 2024-10-22 4045/week @ 2024-10-29 1645/week @ 2024-11-05

12,126 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

~47KB