///////////////////////////////////////////////////////
| 72 | |
| 73 | //////////////////////////////////////////////////////////// |
| 74 | VulkanFunctionPointer getFunction([[maybe_unused]] const char* name) |
| 75 | { |
| 76 | assert(name && "Name cannot be a null pointer"); |
| 77 | |
| 78 | #if defined(SFML_VULKAN_IMPLEMENTATION_NOT_AVAILABLE) |
| 79 | |
| 80 | return nullptr; |
| 81 | |
| 82 | #else |
| 83 | |
| 84 | return priv::VulkanImpl::getFunction(name); |
| 85 | |
| 86 | #endif |
| 87 | } |
| 88 | |
| 89 | |
| 90 | //////////////////////////////////////////////////////////// |
no outgoing calls