Skip to content

seankerr/rust-egl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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 {}

About

Rust bindings for EGL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages