mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
285 lines
11 KiB
285 lines
11 KiB
#ifndef Magnum_Vk_ExtensionProperties_h |
|
#define Magnum_Vk_ExtensionProperties_h |
|
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, |
|
2020, 2021, 2022, 2023 Vladimír Vondruš <mosra@centrum.cz> |
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
copy of this software and associated documentation files (the "Software"), |
|
to deal in the Software without restriction, including without limitation |
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
and/or sell copies of the Software, and to permit persons to whom the |
|
Software is furnished to do so, subject to the following conditions: |
|
|
|
The above copyright notice and this permission notice shall be included |
|
in all copies or substantial portions of the Software. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
DEALINGS IN THE SOFTWARE. |
|
*/ |
|
|
|
/** @file |
|
* @brief Class @ref Magnum::Vk::ExtensionProperties, @ref Magnum::Vk::InstanceExtensionProperties, function @ref Magnum::Vk::enumerateInstanceExtensionProperties() |
|
* @m_since_latest |
|
*/ |
|
|
|
#include <Corrade/Containers/ArrayTuple.h> |
|
#include <Corrade/Containers/ArrayView.h> |
|
|
|
#include "Magnum/Tags.h" |
|
#include "Magnum/Magnum.h" |
|
#include "Magnum/Vk/TypeTraits.h" |
|
#include "Magnum/Vk/Vk.h" |
|
#include "Magnum/Vk/Vulkan.h" |
|
#include "Magnum/Vk/visibility.h" |
|
|
|
namespace Magnum { namespace Vk { |
|
|
|
/** |
|
@brief Extension properties |
|
@m_since_latest |
|
|
|
Provides a searchable container of Vulkan device extensions enumerated with |
|
@ref DeviceProperties::enumerateExtensionProperties(). |
|
|
|
See the @ref Vk-Device-creation "Device creation docs" for an example of using |
|
this class for checking available extensions before enabling them on a device. |
|
See @ref Vk-Instance-creation "Instance creation docs" for the same but using |
|
@ref InstanceExtensionProperties. |
|
|
|
@see @type_vk_keyword{ExtensionProperties} |
|
*/ |
|
class MAGNUM_VK_EXPORT ExtensionProperties { |
|
public: |
|
/** |
|
* @brief Construct without populating the contents |
|
* |
|
* Equivalent to a moved-from state. Move over the result of |
|
* @ref DeviceProperties::enumerateExtensionProperties() to make it |
|
* usable. |
|
*/ |
|
explicit ExtensionProperties(NoCreateT); |
|
|
|
/** @brief Copying is not allowed */ |
|
ExtensionProperties(const ExtensionProperties&) = delete; |
|
|
|
/** @brief Move constructor */ |
|
ExtensionProperties(ExtensionProperties&&) noexcept; |
|
|
|
~ExtensionProperties(); |
|
|
|
/** @brief Copying is not allowed */ |
|
ExtensionProperties& operator=(const ExtensionProperties&) = delete; |
|
|
|
/** @brief Move assignment */ |
|
ExtensionProperties& operator=(ExtensionProperties&&) noexcept; |
|
|
|
/** |
|
* @brief Instance extensions |
|
* |
|
* A list of all extension strings reported by the driver for all |
|
* layers passed to the constructor, with duplicates removed. Use |
|
* @ref isSupported() to query support of a particular |
|
* extension. Note that the list is sorted and thus may be different |
|
* than the order in which the @ref name() and @ref revision() |
|
* accessors return values. |
|
* |
|
* The returned views are owned by the |
|
* @ref ExtensionProperties instance (i.e., *not* a global |
|
* memory). |
|
*/ |
|
Containers::ArrayView<const Containers::StringView> names() const; |
|
|
|
/** |
|
* @brief Whether given extension is supported |
|
* @param extension Extension string |
|
* @param revision Minimal required revision. If the extension is |
|
* present but in an older revision, the function returns |
|
* @cpp false @ce. |
|
* |
|
* Since extension strings are easy to mistype, you're encouraged to |
|
* use the other overloads such as @ref isSupported(UnsignedInt) const |
|
* together with extensions from the @ref Extensions namespace. |
|
* |
|
* Search complexity is @f$ \mathcal{O}(\log n) @f$ in the total |
|
* extension count; in contrast extension queries on a created instance |
|
* are @f$ \mathcal{O}(1) @f$. |
|
* @see @ref revision(), @ref Instance::isExtensionEnabled(), |
|
* @ref Device::isExtensionEnabled() |
|
*/ |
|
bool isSupported(Containers::StringView extension, UnsignedInt revision = 1) const; |
|
|
|
/** @overload */ |
|
bool isSupported(const Extension& extension, UnsignedInt revision = 1) const; |
|
|
|
/** @overload */ |
|
template<class E> bool isSupported(UnsignedInt revision = 1) const { |
|
static_assert(Implementation::IsExtension<E>::value, "expected a Vulkan device extension"); |
|
return isSupported(E::string(), revision); |
|
} |
|
|
|
/** |
|
* @brief Count of extensions reported by the driver for all layers |
|
* |
|
* The count includes potential duplicates when an extension is both |
|
* available globally and through a particular layer. |
|
*/ |
|
UnsignedInt count() const { return _extensions.size(); } |
|
|
|
/** |
|
* @brief Extension name |
|
* @param id Extension index, expected to be smaller than @ref count() |
|
* |
|
* The returned view is owned by the |
|
* @ref ExtensionProperties instance (i.e., *not* a global |
|
* memory). |
|
*/ |
|
Containers::StringView name(UnsignedInt id) const; |
|
|
|
/** |
|
* @brief Extension revision |
|
* @param id Extension index, expected to be smaller than @ref count() |
|
*/ |
|
UnsignedInt revision(UnsignedInt id) const; |
|
|
|
/** |
|
* @brief Revision of a particular extension name |
|
* |
|
* If the extension is not supported, returns @cpp 0 @ce, supported |
|
* extensions always have a non-zero revision. If the extension is |
|
* implemented by more than one layer, returns revision of the first |
|
* layer implementing it --- use @ref revision(UnsignedInt) const |
|
* to get revision of a concrete extension in a concrete layer. |
|
* @see @ref isSupported() |
|
*/ |
|
UnsignedInt revision(Containers::StringView extension) const; |
|
|
|
/** @overload */ |
|
UnsignedInt revision(const Extension& extension) const; |
|
|
|
/** @overload */ |
|
template<class E> UnsignedInt revision() const { |
|
static_assert(Implementation::IsExtension<E>::value, "expected a Vulkan device extension"); |
|
return revision(E::string()); |
|
} |
|
|
|
/** |
|
* @brief Extension layer index |
|
* @param id Extension index, expected to be smaller than @ref count() |
|
* |
|
* Returns ID of the layer the extension comes from. @cpp 0 @ce is |
|
* global extensions, @cpp 1 @ce is the first layer passed to |
|
* @ref enumerateInstanceExtensionProperties() and so on. |
|
*/ |
|
UnsignedInt layer(UnsignedInt id) const; |
|
|
|
private: |
|
friend class InstanceExtensionProperties; |
|
|
|
explicit ExtensionProperties(const Containers::StringIterable& layers, VkResult(*enumerator)(void*, const char*, UnsignedInt*, VkExtensionProperties*), void* state); |
|
|
|
Containers::ArrayTuple _data; |
|
Containers::ArrayView<VkExtensionProperties> _extensions; |
|
Containers::ArrayView<Containers::StringView> _names; |
|
Containers::ArrayView<UnsignedInt> _extensionLayers; |
|
}; |
|
|
|
/** |
|
@brief Instance extension properties |
|
@m_since_latest |
|
|
|
Provides a searchable container of Vulkan device extensions enumerated with |
|
@ref enumerateInstanceExtensionProperties(). |
|
@see @ref ExtensionProperties, @ref LayerProperties |
|
*/ |
|
class MAGNUM_VK_EXPORT InstanceExtensionProperties: public ExtensionProperties { |
|
public: |
|
/** |
|
* @brief Construct without populating the contents |
|
* |
|
* Equivalent to a moved-from state. Move over the result of |
|
* @ref enumerateInstanceExtensionProperties() to make it usable. |
|
*/ |
|
explicit InstanceExtensionProperties(NoCreateT): ExtensionProperties{NoCreate} {} |
|
|
|
/** @brief Copying is not allowed */ |
|
InstanceExtensionProperties(const InstanceExtensionProperties&) = delete; |
|
|
|
/** @brief Move constructor */ |
|
InstanceExtensionProperties(InstanceExtensionProperties&&) noexcept; |
|
|
|
~InstanceExtensionProperties(); |
|
|
|
/** @brief Copying is not allowed */ |
|
InstanceExtensionProperties& operator=(const InstanceExtensionProperties&) = delete; |
|
|
|
/** @brief Move assignment */ |
|
InstanceExtensionProperties& operator=(InstanceExtensionProperties&&) noexcept; |
|
|
|
/** @copydoc ExtensionProperties::isSupported(Containers::StringView, UnsignedInt) const */ |
|
bool isSupported(Containers::StringView extension, UnsignedInt revision = 1) const; |
|
|
|
/** @overload */ |
|
bool isSupported(const InstanceExtension& extension, UnsignedInt revision = 1) const; |
|
|
|
/** @overload */ |
|
template<class E> bool isSupported(UnsignedInt revision = 1) const { |
|
static_assert(Implementation::IsInstanceExtension<E>::value, "expected a Vulkan instance extension"); |
|
return isSupported(E::string(), revision); |
|
} |
|
|
|
/** @copydoc ExtensionProperties::revision(UnsignedInt) const */ |
|
UnsignedInt revision(UnsignedInt id) const { |
|
return ExtensionProperties::revision(id); |
|
} |
|
|
|
/** @copydoc ExtensionProperties::revision(Containers::StringView) const */ |
|
UnsignedInt revision(Containers::StringView extension) const; |
|
|
|
/** @overload */ |
|
UnsignedInt revision(const InstanceExtension& extension) const; |
|
|
|
/** @overload */ |
|
template<class E> UnsignedInt revision() const { |
|
static_assert(Implementation::IsInstanceExtension<E>::value, "expected a Vulkan instance extension"); |
|
return revision(E::string()); |
|
} |
|
|
|
private: |
|
#ifndef DOXYGEN_GENERATING_OUTPUT |
|
/* The DAMN THING forgets parameter name if this is present, FFS. It |
|
also lists this among friends, which is AN IMPLEMENTATION DETAIL */ |
|
friend DeviceProperties; |
|
friend MAGNUM_VK_EXPORT InstanceExtensionProperties enumerateInstanceExtensionProperties(const Containers::StringIterable&); |
|
#endif |
|
|
|
explicit InstanceExtensionProperties(const Containers::StringIterable& layers, VkResult(*enumerator)(void*, const char*, UnsignedInt*, VkExtensionProperties*), void* state): ExtensionProperties{layers, enumerator, state} {} |
|
}; |
|
|
|
/** |
|
@brief Enumerate instance extension properties |
|
@param layers Additional layers to list extensions from |
|
@m_since_latest |
|
|
|
Expects that all listed layers are supported. |
|
@see @ref LayerProperties::isSupported(), |
|
@fn_vk_keyword{EnumerateExtensionProperties} |
|
*/ |
|
#ifdef DOXYGEN_GENERATING_OUTPUT |
|
MAGNUM_VK_EXPORT InstanceExtensionProperties enumerateInstanceExtensionProperties(const Containers::StringIterable& layers = {}); |
|
#else |
|
/* To avoid including StringIterable */ |
|
MAGNUM_VK_EXPORT InstanceExtensionProperties enumerateInstanceExtensionProperties(const Containers::StringIterable& layers); |
|
MAGNUM_VK_EXPORT InstanceExtensionProperties enumerateInstanceExtensionProperties(); |
|
#endif |
|
|
|
}} |
|
|
|
#endif
|
|
|