aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-04-02 13:22:59 +0200
committertomaka <pierre.krieger1708@gmail.com>2015-04-02 13:22:59 +0200
commitaa97fac6fffd9f7ffcbfb9e8795e75d6f0d61582 (patch)
treee5f5196af7e8d5808275a9bb440d4689e96792f1 /build.rs
parenta1ce4b6616163659c0d6065401b0c89af7919dce (diff)
parenteabfa9e62443e8ad6510dec66b0b950b99b79509 (diff)
downloadglutin-aa97fac6fffd9f7ffcbfb9e8795e75d6f0d61582.tar.gz
glutin-aa97fac6fffd9f7ffcbfb9e8795e75d6f0d61582.zip
Merge pull request #344 from tomaka/gles-win32
Add support for GLES on Win32
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/build.rs b/build.rs
index 2a42179..7aeeda9 100644
--- a/build.rs
+++ b/build.rs
@@ -26,9 +26,13 @@ fn main() {
khronos_api::WGL_XML,
vec![
"WGL_ARB_create_context".to_string(),
- "WGL_EXT_swap_control".to_string(),
- "WGL_ARB_pixel_format".to_string(),
+ "WGL_ARB_create_context_profile".to_string(),
+ "WGL_ARB_extensions_string".to_string(),
"WGL_ARB_framebuffer_sRGB".to_string(),
+ "WGL_ARB_pixel_format".to_string(),
+ "WGL_EXT_create_context_es2_profile".to_string(),
+ "WGL_EXT_extensions_string".to_string(),
+ "WGL_EXT_swap_control".to_string(),
],
"1.0", "core", &mut file).unwrap();
}