aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-12-20 10:58:28 +0100
committertomaka <pierre.krieger1708@gmail.com>2015-12-20 10:58:28 +0100
commit1f5f997a68ec411fc3409a35f2c5e118811f3cd0 (patch)
treea5001d48c8d54373851f87b56d99ac7dc662117f /build.rs
parent87f0edea7ba872720152b5da296f0bd052d4c954 (diff)
parent61bca52217471eca4c4aff1dd84b980966be4bfc (diff)
downloadglutin-1f5f997a68ec411fc3409a35f2c5e118811f3cd0.tar.gz
glutin-1f5f997a68ec411fc3409a35f2c5e118811f3cd0.zip
Merge pull request #677 from tomaka/pf
No longer manually enumerate pixel formats
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/build.rs b/build.rs
index e137ad7..bf25c95 100644
--- a/build.rs
+++ b/build.rs
@@ -28,10 +28,12 @@ fn main() {
"WGL_ARB_create_context".to_string(),
"WGL_ARB_create_context_profile".to_string(),
"WGL_ARB_create_context_robustness".to_string(),
+ "WGL_ARB_context_flush_control".to_string(),
"WGL_ARB_extensions_string".to_string(),
"WGL_ARB_framebuffer_sRGB".to_string(),
"WGL_ARB_multisample".to_string(),
"WGL_ARB_pixel_format".to_string(),
+ "WGL_ARB_pixel_format_float".to_string(),
"WGL_EXT_create_context_es2_profile".to_string(),
"WGL_EXT_extensions_string".to_string(),
"WGL_EXT_framebuffer_sRGB".to_string(),
@@ -78,8 +80,11 @@ fn main() {
"GLX_ARB_create_context".to_string(),
"GLX_ARB_create_context_profile".to_string(),
"GLX_ARB_create_context_robustness".to_string(),
+ "GLX_ARB_context_flush_control".to_string(),
+ "GLX_ARB_fbconfig_float".to_string(),
"GLX_ARB_framebuffer_sRGB".to_string(),
"GLX_EXT_framebuffer_sRGB".to_string(),
+ "GLX_ARB_multisample".to_string(),
"GLX_EXT_swap_control".to_string(),
"GLX_SGI_swap_control".to_string()
],