#[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),
}
}
}