1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
use glutin::dpi::PhysicalSize;
use glutin::event_loop::EventLoop;
use glutin::{ContextBuilder, ContextCurrentState, CreationError, NotCurrent};
use crate::context::GLContext;
use crate::Context;
use crate::ThreeDResult;
impl Context {
pub fn new() -> ThreeDResult<Self> {
let cb = ContextBuilder::new();
let (headless_context, _el) = build_context(cb).unwrap();
let current_context = unsafe { headless_context.make_current().unwrap() };
Ok(Self::from_gl_context(GLContext::load_with(|ptr| {
current_context.get_proc_address(ptr) as *const std::os::raw::c_void
})))
}
}
#[cfg(target_os = "linux")]
fn build_context_surfaceless<T1: ContextCurrentState>(
cb: ContextBuilder<T1>,
el: &EventLoop<()>,
) -> Result<glutin::Context<NotCurrent>, CreationError> {
use glutin::platform::unix::HeadlessContextExt;
cb.build_surfaceless(&el)
}
fn build_context_headless<T1: ContextCurrentState>(
cb: ContextBuilder<T1>,
el: &EventLoop<()>,
) -> Result<glutin::Context<NotCurrent>, CreationError> {
let size_one = PhysicalSize::new(1, 1);
cb.build_headless(&el, size_one)
}
#[cfg(target_os = "linux")]
fn build_context_osmesa<T1: ContextCurrentState>(
cb: ContextBuilder<T1>,
) -> Result<glutin::Context<NotCurrent>, CreationError> {
use glutin::platform::unix::HeadlessContextExt;
let size_one = PhysicalSize::new(1, 1);
cb.build_osmesa(size_one)
}
#[cfg(target_os = "linux")]
fn build_context<T1: ContextCurrentState>(
cb: ContextBuilder<T1>,
) -> Result<(glutin::Context<NotCurrent>, EventLoop<()>), [CreationError; 3]> {
use glutin::platform::unix::EventLoopExtUnix;
let el = EventLoopExtUnix::new_any_thread();
println!("Trying surfaceless");
let err1 = match build_context_surfaceless(cb.clone(), &el) {
Ok(ctx) => return Ok((ctx, el)),
Err(err) => err,
};
println!("Trying headless");
let err2 = match build_context_headless(cb.clone(), &el) {
Ok(ctx) => return Ok((ctx, el)),
Err(err) => err,
};
println!("Trying osmesa");
let err3 = match build_context_osmesa(cb) {
Ok(ctx) => return Ok((ctx, el)),
Err(err) => err,
};
Err([err1, err2, err3])
}
#[cfg(target_os = "windows")]
fn build_context<T1: ContextCurrentState>(
cb: ContextBuilder<T1>,
) -> Result<(glutin::Context<NotCurrent>, EventLoop<()>), CreationError> {
use glutin::platform::windows::EventLoopExtWindows;
let el = EventLoopExtWindows::new_any_thread();
build_context_headless(cb.clone(), &el).map(|ctx| (ctx, el))
}
#[cfg(all(not(target_os = "windows"), not(target_os = "linux")))]
fn build_context<T1: ContextCurrentState>(
cb: ContextBuilder<T1>,
) -> Result<(glutin::Context<NotCurrent>, EventLoop<()>), CreationError> {
let el = EventLoop::new();
build_context_headless(cb.clone(), &el).map(|ctx| (ctx, el))
}