aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/ffi.rs
diff options
context:
space:
mode:
authorTomaka17 <pierre.krieger1708@gmail.com>2014-10-22 08:04:13 +0200
committerTomaka17 <pierre.krieger1708@gmail.com>2014-10-22 11:23:21 +0200
commit2ff393fe623d10f2ea89262013ba66e228cc0c94 (patch)
tree0c44986d2c2db6a27dee94a3a9c9d6a8385ec9c6 /src/win32/ffi.rs
parent0d0c14e6ecc3137fd1d12c389e03e6f312f1f207 (diff)
downloadglutin-2ff393fe623d10f2ea89262013ba66e228cc0c94.tar.gz
glutin-2ff393fe623d10f2ea89262013ba66e228cc0c94.zip
Update for rustc and gl-rs
Diffstat (limited to 'src/win32/ffi.rs')
-rw-r--r--src/win32/ffi.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/win32/ffi.rs b/src/win32/ffi.rs
index 5662a98..317935d 100644
--- a/src/win32/ffi.rs
+++ b/src/win32/ffi.rs
@@ -8,22 +8,22 @@ use libc;
/// WGL bindings
pub mod wgl {
generate_gl_bindings! {
- api: wgl,
- profile: core,
- version: 1.0,
- generator: static
+ api: "wgl",
+ profile: "core",
+ version: "1.0",
+ generator: "static"
}
}
/// Functions that are not necessarly always available
pub mod wgl_extra {
generate_gl_bindings! {
- api: wgl,
- profile: core,
- version: 1.0,
- generator: struct,
+ api: "wgl",
+ profile: "core",
+ version: "1.0",
+ generator: "struct",
extensions: [
- WGL_ARB_create_context
+ "WGL_ARB_create_context"
]
}
}