#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
use crate::empty::RafxSwapchainEmpty;
#[cfg(feature = "rafx-metal")]
use crate::metal::RafxSwapchainMetal;
#[cfg(feature = "rafx-vulkan")]
use crate::vulkan::RafxSwapchainVulkan;
use crate::{
RafxFence, RafxFormat, RafxResult, RafxSemaphore, RafxSwapchainDef, RafxSwapchainImage,
};
pub enum RafxSwapchain {
#[cfg(feature = "rafx-vulkan")]
Vk(RafxSwapchainVulkan),
#[cfg(feature = "rafx-metal")]
Metal(RafxSwapchainMetal),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
Empty(RafxSwapchainEmpty),
}
impl RafxSwapchain {
pub fn image_count(&self) -> usize {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(inner) => inner.image_count(),
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(inner) => inner.image_count(),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(inner) => inner.image_count(),
}
}
pub fn format(&self) -> RafxFormat {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(inner) => inner.format(),
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(inner) => inner.format(),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(inner) => inner.format(),
}
}
pub fn swapchain_def(&self) -> &RafxSwapchainDef {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(inner) => inner.swapchain_def(),
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(inner) => inner.swapchain_def(),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(inner) => inner.swapchain_def(),
}
}
pub fn acquire_next_image_fence(
&mut self,
fence: &RafxFence,
) -> RafxResult<RafxSwapchainImage> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(inner) => inner.acquire_next_image_fence(fence.vk_fence().unwrap()),
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(inner) => {
inner.acquire_next_image_fence(fence.metal_fence().unwrap())
}
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(inner) => {
inner.acquire_next_image_fence(fence.empty_fence().unwrap())
}
}
}
pub fn acquire_next_image_semaphore(
&mut self,
semaphore: &RafxSemaphore,
) -> RafxResult<RafxSwapchainImage> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(inner) => {
inner.acquire_next_image_semaphore(semaphore.vk_semaphore().unwrap())
}
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(inner) => {
inner.acquire_next_image_semaphore(semaphore.metal_semaphore().unwrap())
}
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(inner) => {
inner.acquire_next_image_semaphore(semaphore.empty_semaphore().unwrap())
}
}
}
pub fn rebuild(
&mut self,
swapchain_def: &RafxSwapchainDef,
) -> RafxResult<()> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(inner) => inner.rebuild(swapchain_def),
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(inner) => inner.rebuild(swapchain_def),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(inner) => inner.rebuild(swapchain_def),
}
}
#[cfg(feature = "rafx-vulkan")]
pub fn vk_swapchain(&self) -> Option<&RafxSwapchainVulkan> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(inner) => Some(inner),
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(_) => None,
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(_) => None,
}
}
#[cfg(feature = "rafx-metal")]
pub fn metal_swapchain(&self) -> Option<&RafxSwapchainMetal> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(_) => None,
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(inner) => Some(inner),
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(_) => None,
}
}
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
pub fn empty_swapchain(&self) -> Option<&RafxSwapchainEmpty> {
match self {
#[cfg(feature = "rafx-vulkan")]
RafxSwapchain::Vk(_) => None,
#[cfg(feature = "rafx-metal")]
RafxSwapchain::Metal(_) => None,
#[cfg(any(
feature = "rafx-empty",
not(any(feature = "rafx-metal", feature = "rafx-vulkan"))
))]
RafxSwapchain::Empty(inner) => Some(inner),
}
}
}