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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
use context::CommandContext;
use version::Api;
use version::Version;
use gl;
use backend::Facade;
use context::Context;
use ContextExt;
use std::rc::Rc;
use std::thread;
#[derive(Copy, Clone, Debug)]
pub struct SyncNotSupportedError;
pub struct SyncFence {
context: Rc<Context>,
id: Option<gl::types::GLsync>,
}
impl SyncFence {
#[inline]
pub fn new<F: ?Sized>(facade: &F) -> Result<SyncFence, SyncNotSupportedError> where F: Facade {
let mut ctxt = facade.get_context().make_current();
unsafe { new_linear_sync_fence(&mut ctxt) }.map(|f| f.into_sync_fence(facade))
}
pub fn wait(mut self) {
let sync = self.id.take().unwrap();
let mut ctxt = self.context.make_current();
let result = unsafe { client_wait(&mut ctxt, sync) };
unsafe { delete_fence(&mut ctxt, sync) };
match result {
gl::ALREADY_SIGNALED | gl::CONDITION_SATISFIED => (),
_ => panic!("Could not wait for the fence")
};
}
}
impl Drop for SyncFence {
#[inline]
fn drop(&mut self) {
let sync = match self.id {
None => return,
Some(s) => s
};
let mut ctxt = self.context.make_current();
unsafe { delete_fence(&mut ctxt, sync) };
}
}
#[must_use]
pub struct LinearSyncFence {
id: Option<gl::types::GLsync>,
}
unsafe impl Send for LinearSyncFence {}
impl LinearSyncFence {
#[inline]
pub fn into_sync_fence<F: ?Sized>(mut self, facade: &F) -> SyncFence where F: Facade {
SyncFence {
context: facade.get_context().clone(),
id: self.id.take()
}
}
}
impl Drop for LinearSyncFence {
#[inline]
fn drop(&mut self) {
if !thread::panicking() {
assert!(self.id.is_none());
}
}
}
pub unsafe fn new_linear_sync_fence(ctxt: &mut CommandContext)
-> Result<LinearSyncFence, SyncNotSupportedError>
{
if ctxt.version >= &Version(Api::Gl, 3, 2) ||
ctxt.version >= &Version(Api::GlEs, 3, 0) || ctxt.extensions.gl_arb_sync
{
Ok(LinearSyncFence {
id: Some(ctxt.gl.FenceSync(gl::SYNC_GPU_COMMANDS_COMPLETE, 0)),
})
} else if ctxt.extensions.gl_apple_sync {
Ok(LinearSyncFence {
id: Some(ctxt.gl.FenceSyncAPPLE(gl::SYNC_GPU_COMMANDS_COMPLETE_APPLE, 0)),
})
} else {
Err(SyncNotSupportedError)
}
}
#[inline]
pub unsafe fn wait_linear_sync_fence_and_drop(mut fence: LinearSyncFence,
ctxt: &mut CommandContext)
{
let fence = fence.id.take().unwrap();
client_wait(ctxt, fence);
delete_fence(ctxt, fence);
}
#[inline]
pub unsafe fn destroy_linear_sync_fence(ctxt: &mut CommandContext, mut fence: LinearSyncFence) {
let fence = fence.id.take().unwrap();
delete_fence(ctxt, fence);
}
unsafe fn client_wait(ctxt: &mut CommandContext, fence: gl::types::GLsync) -> gl::types::GLenum {
let result = if ctxt.version >= &Version(Api::Gl, 3, 2) ||
ctxt.version >= &Version(Api::GlEs, 3, 0) || ctxt.extensions.gl_arb_sync
{
ctxt.gl.ClientWaitSync(fence, 0, 0)
} else if ctxt.extensions.gl_apple_sync {
ctxt.gl.ClientWaitSyncAPPLE(fence, 0, 0)
} else {
unreachable!();
};
match result {
val @ gl::ALREADY_SIGNALED | val @ gl::CONDITION_SATISFIED => return val,
gl::TIMEOUT_EXPIRED => (),
gl::WAIT_FAILED => (),
_ => unreachable!()
};
if ctxt.version >= &Version(Api::Gl, 3, 2) ||
ctxt.version >= &Version(Api::GlEs, 3, 0) || ctxt.extensions.gl_arb_sync
{
ctxt.gl.ClientWaitSync(fence, gl::SYNC_FLUSH_COMMANDS_BIT,
365 * 24 * 3600 * 1000 * 1000 * 1000)
} else if ctxt.extensions.gl_apple_sync {
ctxt.gl.ClientWaitSyncAPPLE(fence, gl::SYNC_FLUSH_COMMANDS_BIT_APPLE,
365 * 24 * 3600 * 1000 * 1000 * 1000)
} else {
unreachable!();
}
}
#[inline]
unsafe fn delete_fence(ctxt: &mut CommandContext, fence: gl::types::GLsync) {
if ctxt.version >= &Version(Api::Gl, 3, 2) ||
ctxt.version >= &Version(Api::GlEs, 3, 0) || ctxt.extensions.gl_arb_sync
{
ctxt.gl.DeleteSync(fence);
} else if ctxt.extensions.gl_apple_sync {
ctxt.gl.DeleteSyncAPPLE(fence);
} else {
unreachable!();
};
}