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
101
102
use std::rc::Rc;
use std::ops::Deref;
use std::os::raw::c_void;
use CapabilitiesSource;
use SwapBuffersError;
use context::Capabilities;
use context::ExtensionsList;
use version::Version;
pub use context::Context;
pub use context::ReleaseBehavior;
#[cfg(feature = "glutin")]
pub mod glutin;
pub unsafe trait Backend {
fn swap_buffers(&self) -> Result<(), SwapBuffersError>;
unsafe fn get_proc_address(&self, symbol: &str) -> *const c_void;
fn get_framebuffer_dimensions(&self) -> (u32, u32);
fn is_current(&self) -> bool;
unsafe fn make_current(&self);
}
unsafe impl<T> Backend for Rc<T> where T: Backend {
fn swap_buffers(&self) -> Result<(), SwapBuffersError> {
self.deref().swap_buffers()
}
unsafe fn get_proc_address(&self, symbol: &str) -> *const c_void {
self.deref().get_proc_address(symbol)
}
fn get_framebuffer_dimensions(&self) -> (u32, u32) {
self.deref().get_framebuffer_dimensions()
}
fn is_current(&self) -> bool {
self.deref().is_current()
}
unsafe fn make_current(&self) {
self.deref().make_current();
}
}
pub trait Facade {
fn get_context(&self) -> &Rc<Context>;
}
impl<T: ?Sized> CapabilitiesSource for T where T: Facade {
fn get_version(&self) -> &Version {
self.get_context().deref().get_opengl_version()
}
fn get_extensions(&self) -> &ExtensionsList {
self.get_context().deref().get_extensions()
}
fn get_capabilities(&self) -> &Capabilities {
self.get_context().deref().get_capabilities()
}
}
impl Facade for Rc<Context> {
#[inline]
fn get_context(&self) -> &Rc<Context> {
self
}
}