aboutsummaryrefslogtreecommitdiffstats
path: root/build.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-02-17 22:20:14 +0100
committertomaka <pierre.krieger1708@gmail.com>2015-02-17 22:20:14 +0100
commiteb330030de6d74c04b870f51351db0e67676f311 (patch)
treea37ce4e4cdf89a27f3688e367cf2f2dad4597586 /build.rs
parent40591806dc7382ddb75d90f2289127f5f28f9825 (diff)
parent1a33c9ce9fa5f932d71e2eadf5b7f4ac29b187ee (diff)
downloadglutin-eb330030de6d74c04b870f51351db0e67676f311.tar.gz
glutin-eb330030de6d74c04b870f51351db0e67676f311.zip
Merge pull request #279 from tomaka/win32-correct
Work on the win32 implementation
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.rs b/build.rs
index 695d397..a151502 100644
--- a/build.rs
+++ b/build.rs
@@ -22,7 +22,9 @@ fn main() {
khronos_api::WGL_XML,
vec![
"WGL_ARB_create_context".to_string(),
- "WGL_EXT_swap_control".to_string()
+ "WGL_EXT_swap_control".to_string(),
+ "WGL_ARB_pixel_format".to_string(),
+ "WGL_ARB_framebuffer_sRGB".to_string(),
],
"1.0", "core", &mut file).unwrap();
}