diff options
author | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-10-21 08:11:08 +0200 |
---|---|---|
committer | Tomaka17 <pierre.krieger1708@gmail.com> | 2014-10-21 08:11:08 +0200 |
commit | 0d0c14e6ecc3137fd1d12c389e03e6f312f1f207 (patch) | |
tree | ddd6776e350bb3d6cfd44badef5ece0acaec40f5 /src/win32 | |
parent | 6d34ef7a3dc0febb7fcade34801236ea61090bbf (diff) | |
download | glutin-0d0c14e6ecc3137fd1d12c389e03e6f312f1f207.tar.gz glutin-0d0c14e6ecc3137fd1d12c389e03e6f312f1f207.zip |
Update for gl-rs
Diffstat (limited to 'src/win32')
-rw-r--r-- | src/win32/ffi.rs | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/win32/ffi.rs b/src/win32/ffi.rs index 2385954..5662a98 100644 --- a/src/win32/ffi.rs +++ b/src/win32/ffi.rs @@ -7,12 +7,25 @@ use libc; /// WGL bindings pub mod wgl { - generate_gl_bindings!("wgl", "core", "1.0", "static") + generate_gl_bindings! { + api: wgl, + profile: core, + version: 1.0, + generator: static + } } /// Functions that are not necessarly always available pub mod wgl_extra { - generate_gl_bindings!("wgl", "core", "1.0", "struct", [ "WGL_ARB_create_context" ]) + generate_gl_bindings! { + api: wgl, + profile: core, + version: 1.0, + generator: struct, + extensions: [ + WGL_ARB_create_context + ] + } } // http://msdn.microsoft.com/en-us/library/windows/desktop/aa383751(v=vs.85).aspx |