https://github.com/seankerr/rust-egl
Rust bindings for EGL
https://github.com/seankerr/rust-egl
Last synced: 10 months ago
JSON representation
Rust bindings for EGL
- Host: GitHub
- URL: https://github.com/seankerr/rust-egl
- Owner: seankerr
- Created: 2015-09-23T21:22:33.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-06-15T14:12:31.000Z (about 7 years ago)
- Last Synced: 2024-04-24T13:44:50.037Z (about 2 years ago)
- Language: Rust
- Size: 11.7 KB
- Stars: 7
- Watchers: 3
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust bindings for 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 {}
```