From eabfa9e62443e8ad6510dec66b0b950b99b79509 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Thu, 2 Apr 2015 11:17:14 +0200 Subject: Add support for GLES on Win32 --- build.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'build.rs') 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(); } -- cgit v1.2.3