diff options
Diffstat (limited to 'alacritty/build.rs')
-rw-r--r-- | alacritty/build.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alacritty/build.rs b/alacritty/build.rs index 3c0ec110..0d4a0560 100644 --- a/alacritty/build.rs +++ b/alacritty/build.rs @@ -1,3 +1,4 @@ +use std::collections::HashSet; use std::env; use std::fs::File; use std::path::Path; @@ -11,7 +12,7 @@ fn main() { let dest = env::var("OUT_DIR").unwrap(); let mut file = File::create(&Path::new(&dest).join("gl_bindings.rs")).unwrap(); - Registry::new(Api::Gl, (4, 5), Profile::Core, Fallbacks::All, ["GL_ARB_blend_func_extended"]) + Registry::new(Api::Gl, (3, 3), Profile::Core, Fallbacks::All, ["GL_ARB_blend_func_extended"]) .write_bindings(GlobalGenerator, &mut file) .unwrap(); |