///////////////////////////////////////////////////////
| 384 | |
| 385 | //////////////////////////////////////////////////////////// |
| 386 | bool WindowImpl::createVulkanSurface([[maybe_unused]] const VkInstance& instance, |
| 387 | [[maybe_unused]] VkSurfaceKHR& surface, |
| 388 | [[maybe_unused]] const VkAllocationCallbacks* allocator) const |
| 389 | { |
| 390 | #if defined(SFML_VULKAN_IMPLEMENTATION_NOT_AVAILABLE) |
| 391 | |
| 392 | return false; |
| 393 | |
| 394 | #else |
| 395 | |
| 396 | return VulkanImpl::createVulkanSurface(instance, getNativeHandle(), surface, allocator); |
| 397 | |
| 398 | #endif |
| 399 | } |
| 400 | |
| 401 | } // namespace sf::priv |
nothing calls this directly
no outgoing calls
no test coverage detected