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

#16 in #khronos

Download history 610/week @ 2023-12-17 363/week @ 2023-12-24 359/week @ 2023-12-31 354/week @ 2024-01-07 302/week @ 2024-01-14 242/week @ 2024-01-21 155/week @ 2024-01-28 249/week @ 2024-02-04 971/week @ 2024-02-11 384/week @ 2024-02-18 363/week @ 2024-02-25 362/week @ 2024-03-03 344/week @ 2024-03-10 757/week @ 2024-03-17 667/week @ 2024-03-24 536/week @ 2024-03-31

2,345 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