summaryrefslogtreecommitdiff
path: root/crates/renderer/src/ffi/glfw.rs
blob: 1b79089a2b5630bbdc2f29c33d38e34091920ff6 (plain)
1
2
3
4
5
6
7
use super::egl::*;

#[link(name = "glfw")]
extern "C" {
    pub fn glfwGetEGLDisplay() -> EGLDisplay;
    pub fn glfwGetEGLContext(w: *mut glfw::ffi::GLFWwindow) -> EGLContext; 
}