Skip to content

Commit

Permalink
Implement sf::Vulkan functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisThrasher committed Jul 5, 2023
1 parent df00407 commit 36492f0
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 0 deletions.
70 changes: 70 additions & 0 deletions include/SFML/Window/Vulkan.h
@@ -0,0 +1,70 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
// Copyright (C) 2007-2023 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it freely,
// subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented;
// you must not claim that you wrote the original software.
// If you use this software in a product, an acknowledgment
// in the product documentation would be appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such,
// and must not be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source distribution.
//
////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
#include <SFML/Window/Export.h>


typedef void (*sfVulkanFunctionPointer)();

////////////////////////////////////////////////////////////
/// \brief Tell whether or not the system supports Vulkan
///
/// This function should always be called before using
/// the Vulkan features. If it returns false, then
/// any attempt to use Vulkan will fail.
///
/// If only compute is required, set \a requireGraphics
/// to false to skip checking for the extensions necessary
/// for graphics rendering.
///
/// \param requireGraphics
///
/// \return True if Vulkan is supported, false otherwise
///
////////////////////////////////////////////////////////////
CSFML_WINDOW_API sfBool sfVulkan_isAvailable(sfBool requireGraphics);

////////////////////////////////////////////////////////////
/// \brief Get the address of a Vulkan function
///
/// \param name Name of the function to get the address of
///
/// \return Address of the Vulkan function, 0 on failure
///
////////////////////////////////////////////////////////////
CSFML_WINDOW_API sfVulkanFunctionPointer sfVulkan_getFunction(const char* name);

////////////////////////////////////////////////////////////
/// \brief Get Vulkan instance extensions required for graphics
///
/// Be sure to free the array that is returned but you do not
/// need to free the strings contained within the array
///
/// \return Vulkan instance extensions required for graphics
///
////////////////////////////////////////////////////////////
CSFML_WINDOW_API const char** sfVulkan_getGraphicsRequiredInstanceExtensions();
2 changes: 2 additions & 0 deletions src/SFML/Window/CMakeLists.txt
Expand Up @@ -29,6 +29,8 @@ set(SRC
${INCROOT}/Types.h
${SRCROOT}/VideoMode.cpp
${INCROOT}/VideoMode.h
${SRCROOT}/Vulkan.cpp
${INCROOT}/Vulkan.h
${SRCROOT}/Window.cpp
${SRCROOT}/WindowStruct.h
${INCROOT}/Window.h
Expand Down
59 changes: 59 additions & 0 deletions src/SFML/Window/Vulkan.cpp
@@ -0,0 +1,59 @@
////////////////////////////////////////////////////////////
//
// SFML - Simple and Fast Multimedia Library
// Copyright (C) 2007-2023 Laurent Gomila (laurent@sfml-dev.org)
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any damages arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it freely,
// subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented;
// you must not claim that you wrote the original software.
// If you use this software in a product, an acknowledgment
// in the product documentation would be appreciated but is not required.
//
// 2. Altered source versions must be plainly marked as such,
// and must not be misrepresented as being the original software.
//
// 3. This notice may not be removed or altered from any source distribution.
//
////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
#include <SFML/Window/Export.h>
#include <SFML/Window/Vulkan.h>
#include <SFML/Window/Vulkan.hpp>

#include <stdlib.h>
#include <string.h>


////////////////////////////////////////////////////////////
sfBool sfVulkan_isAvailable(sfBool requireGraphics)
{
return sf::Vulkan::isAvailable(requireGraphics);
}


////////////////////////////////////////////////////////////
sfVulkanFunctionPointer sfVulkan_getFunction(const char* name)
{
return sf::Vulkan::getFunction(name);
}


////////////////////////////////////////////////////////////
const char** sfVulkan_getGraphicsRequiredInstanceExtensions()
{
const std::vector<const char*>& extensionsVector = sf::Vulkan::getGraphicsRequiredInstanceExtensions();
const char** extensions = static_cast<const char**>(malloc(extensionsVector.size() * sizeof(const char*)));
for (size_t i = 0; i < extensionsVector.size(); ++i)
extensions[i] = extensionsVector[i];

return extensions;
}

0 comments on commit 36492f0

Please sign in to comment.