mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-23 22:01:31 +11:00
Remove dummy context creation for X11
This commit is contained in:
parent
f452999b8c
commit
53b9d6398c
|
@ -141,39 +141,19 @@ impl Window {
|
|||
|
||||
// getting the pointer to glXCreateContextAttribs
|
||||
let create_context_attribs = unsafe {
|
||||
// creating the dummy context
|
||||
let dummy_context =
|
||||
ffi::glXCreateContext(display, &visual_infos, ptr::null(), 1);
|
||||
if dummy_context.is_null() {
|
||||
return Err(format!("glXCreateContext failed"));
|
||||
}
|
||||
let mut addr = ffi::glXGetProcAddress(b"glXCreateContextAttribs".as_ptr()
|
||||
as *const u8) as *const ();
|
||||
|
||||
if ffi::glXMakeCurrent(display, window, dummy_context) == 0 {
|
||||
return Err(format!("glXMakeCurrent with dummy context failed"));
|
||||
}
|
||||
|
||||
// getting the pointer
|
||||
let fn_ptr = {
|
||||
let mut addr = ffi::glXGetProcAddress(b"glXCreateContextAttribs".as_ptr()
|
||||
if addr.is_null() {
|
||||
addr = ffi::glXGetProcAddress(b"glXCreateContextAttribsARB".as_ptr()
|
||||
as *const u8) as *const ();
|
||||
|
||||
if addr.is_null() {
|
||||
addr = ffi::glXGetProcAddress(b"glXCreateContextAttribsARB".as_ptr()
|
||||
as *const u8) as *const ();
|
||||
}
|
||||
|
||||
addr.to_option().map(|addr| {
|
||||
let addr: extern "system" fn(*mut ffi::Display, ffi::GLXFBConfig, ffi::GLXContext,
|
||||
ffi::Bool, *const libc::c_int) -> ffi::GLXContext = mem::transmute(addr);
|
||||
addr
|
||||
})
|
||||
};
|
||||
|
||||
// cleaning up
|
||||
ffi::glXMakeCurrent(ptr::mut_null(), 0, ptr::null());
|
||||
ffi::glXDestroyContext(display, dummy_context);
|
||||
|
||||
fn_ptr
|
||||
}
|
||||
|
||||
addr.to_option().map(|addr| {
|
||||
let addr: extern "system" fn(*mut ffi::Display, ffi::GLXFBConfig, ffi::GLXContext,
|
||||
ffi::Bool, *const libc::c_int) -> ffi::GLXContext = mem::transmute(addr);
|
||||
addr
|
||||
})
|
||||
};
|
||||
|
||||
// creating IM
|
||||
|
|
Loading…
Reference in a new issue