egl 0.2.7

Rust bindings for EGL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Rust bindings for EGL

[![](http://meritbadge.herokuapp.com/egl)](https://crates.io/crates/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 {}
```