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
3,738 downloads per month
Used in 15 crates
(6 directly)
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