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
use std::error::Error;
use std::sync::{Weak, Mutex, MutexGuard};
use std::{mem, fmt, cmp, hash};
use {memory, mapping, handle};
use {Resources};
#[derive(Debug)]
pub struct Raw<R: Resources> {
resource: R::Buffer,
info: Info,
mapping: Mutex<Option<Weak<mapping::Raw<R>>>>,
}
impl<R: Resources> Raw<R> {
#[doc(hidden)]
pub fn new(resource: R::Buffer, info: Info) -> Self {
Raw {
resource: resource,
info: info,
mapping: Mutex::new(None),
}
}
#[doc(hidden)]
pub fn resource(&self) -> &R::Buffer { &self.resource }
pub fn get_info(&self) -> &Info { &self.info }
fn mapping_opt(&self) -> MutexGuard<Option<Weak<mapping::Raw<R>>>> {
self.mapping.lock().unwrap()
}
#[doc(hidden)]
pub fn mapping(&self) -> Option<handle::RawMapping<R>> {
let weak_opt = self.mapping_opt();
weak_opt.as_ref().map(|w| handle::RawMapping::upgrade(w))
}
#[doc(hidden)]
pub fn was_mapped(&self, raw: &handle::RawMapping<R>) {
let mut weak_opt = self.mapping_opt();
*weak_opt = Some(raw.downgrade());
}
#[doc(hidden)]
pub fn was_unmapped(&self) {
let mut weak_opt = self.mapping_opt();
*weak_opt = None;
}
#[doc(hidden)]
pub unsafe fn len<T>(&self) -> usize {
assert!(mem::size_of::<T>() != 0, "Cannot determine the length of zero-sized buffers.");
self.get_info().size / mem::size_of::<T>()
}
}
impl<R: Resources + cmp::PartialEq> cmp::PartialEq for Raw<R> {
fn eq(&self, other: &Self) -> bool {
self.resource().eq(other.resource())
}
}
impl<R: Resources + cmp::Eq> cmp::Eq for Raw<R> {}
impl<R: Resources + hash::Hash> hash::Hash for Raw<R> {
fn hash<H: hash::Hasher>(&self, state: &mut H) {
self.resource().hash(state);
}
}
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq)]
#[repr(u8)]
pub enum Role {
Vertex,
Index,
Constant,
}
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub struct Info {
pub role: Role,
pub usage: memory::Usage,
pub bind: memory::Bind,
pub size: usize,
pub stride: usize,
}
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub enum CreationError {
UnsupportedBind(memory::Bind),
Other,
}
impl fmt::Display for CreationError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if let CreationError::UnsupportedBind(ref bind) = *self {
write!(f, "{}: {:?}", self.description(), bind)
} else {
write!(f, "{}", self.description())
}
}
}
impl Error for CreationError {
fn description(&self) -> &str {
match *self {
CreationError::UnsupportedBind(_) => "Bind flags are not supported",
CreationError::Other => "An unknown error occurred",
}
}
}
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
pub enum UpdateError {
OutOfBounds,
}
impl fmt::Display for UpdateError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.description())
}
}
impl Error for UpdateError {
fn description(&self) -> &str {
match *self {
UpdateError::OutOfBounds =>
"Tried to change the buffer contents outside of the allocation",
}
}
}