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
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
use crate::empty::RafxPipelineEmpty;
#[cfg(feature = "rafx-metal")]
use crate::metal::RafxPipelineMetal;
#[cfg(feature = "rafx-vulkan")]
use crate::vulkan::RafxPipelineVulkan;
use crate::{RafxPipelineType, RafxRootSignature};
#[derive(Debug)]
pub enum RafxPipeline {
#[cfg(feature = "rafx-vulkan")]
Vk(RafxPipelineVulkan),
#[cfg(feature = "rafx-metal")]
Metal(RafxPipelineMetal),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
Empty(RafxPipelineEmpty),
}
impl RafxPipeline {
pub fn pipeline_type(&self) -> RafxPipelineType {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxPipeline::Vk(inner) => inner.pipeline_type(),
#[cfg(feature = "rafx-metal")]
RafxPipeline::Metal(inner) => inner.pipeline_type(),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxPipeline::Empty(inner) => inner.pipeline_type(),
}
}
pub fn root_signature(&self) -> &RafxRootSignature {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxPipeline::Vk(inner) => inner.root_signature(),
#[cfg(feature = "rafx-metal")]
RafxPipeline::Metal(inner) => inner.root_signature(),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxPipeline::Empty(inner) => inner.root_signature(),
}
}
#[cfg(feature = "rafx-vulkan")]
pub fn vk_pipeline(&self) -> Option<&RafxPipelineVulkan> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxPipeline::Vk(inner) => Some(inner),
#[cfg(feature = "rafx-metal")]
RafxPipeline::Metal(_inner) => None,
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxPipeline::Empty(_inner) => None,
}
}
#[cfg(feature = "rafx-metal")]
pub fn metal_pipeline(&self) -> Option<&RafxPipelineMetal> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxPipeline::Vk(_inner) => None,
#[cfg(feature = "rafx-metal")]
RafxPipeline::Metal(inner) => Some(inner),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxPipeline::Empty(_inner) => None,
}
}
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
pub fn empty_pipeline(&self) -> Option<&RafxPipelineEmpty> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxPipeline::Vk(_inner) => None,
#[cfg(feature = "rafx-metal")]
RafxPipeline::Metal(_inner) => None,
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxPipeline::Empty(inner) => Some(inner),
}
}
}