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
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
use crate::empty::RafxApiEmpty;
#[cfg(feature = "rafx-metal")]
use crate::metal::{RafxApiDefMetal, RafxApiMetal};
#[cfg(feature = "rafx-vulkan")]
use crate::vulkan::{RafxApiDefVulkan, RafxApiVulkan};
use crate::*;
use raw_window_handle::HasRawWindowHandle;
pub enum RafxApi {
#[cfg(feature = "rafx-vulkan")]
Vk(RafxApiVulkan),
#[cfg(feature = "rafx-metal")]
Metal(RafxApiMetal),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
Empty(RafxApiEmpty),
}
impl RafxApi {
#[allow(unreachable_code)]
pub fn new(
_window: &dyn HasRawWindowHandle,
_api_def: &RafxApiDef,
) -> RafxResult<Self> {
#[cfg(feature = "rafx-metal")]
{
return RafxApi::new_metal(_window, _api_def, &Default::default());
}
#[cfg(feature = "rafx-vulkan")]
{
return RafxApi::new_vulkan(_window, _api_def, &Default::default());
}
return Err("Rafx was compiled with no backend feature flag. Use feature rafx-metal or rafx-vulkan.")?;
}
#[cfg(feature = "rafx-vulkan")]
pub fn new_vulkan(
window: &dyn HasRawWindowHandle,
api_def: &RafxApiDef,
vk_api_def: &RafxApiDefVulkan,
) -> RafxResult<Self> {
Ok(RafxApi::Vk(RafxApiVulkan::new(
window, api_def, vk_api_def,
)?))
}
#[cfg(feature = "rafx-metal")]
pub fn new_metal(
window: &dyn HasRawWindowHandle,
api_def: &RafxApiDef,
vk_api_def: &RafxApiDefMetal,
) -> RafxResult<Self> {
Ok(RafxApi::Metal(RafxApiMetal::new(
window, api_def, vk_api_def,
)?))
}
pub fn device_context(&self) -> RafxDeviceContext {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxApi::Vk(inner) => RafxDeviceContext::Vk(inner.device_context().clone()),
#[cfg(feature = "rafx-metal")]
RafxApi::Metal(inner) => RafxDeviceContext::Metal(inner.device_context().clone()),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxApi::Empty(inner) => RafxDeviceContext::Empty(inner.device_context().clone()),
}
}
pub fn destroy(&mut self) -> RafxResult<()> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxApi::Vk(inner) => inner.destroy(),
#[cfg(feature = "rafx-metal")]
RafxApi::Metal(inner) => inner.destroy(),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxApi::Empty(inner) => inner.destroy(),
}
}
#[cfg(feature = "rafx-vulkan")]
pub fn vk_api(&self) -> Option<&RafxApiVulkan> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxApi::Vk(inner) => Some(inner),
#[cfg(feature = "rafx-metal")]
RafxApi::Metal(_) => None,
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxApi::Empty(_) => None,
}
}
#[cfg(feature = "rafx-metal")]
pub fn metal_api(&self) -> Option<&RafxApiMetal> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxApi::Vk(_) => None,
#[cfg(feature = "rafx-metal")]
RafxApi::Metal(inner) => Some(inner),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxApi::Empty(_) => None,
}
}
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
pub fn empty_api(&self) -> Option<&RafxApiEmpty> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxApi::Vk(_) => None,
#[cfg(feature = "rafx-metal")]
RafxApi::Metal(_) => None,
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxApi::Empty(inner) => Some(inner),
}
}
}