vulkan-wsi-layer/util/extension_list.hpp

92 lines
3.2 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2019, 2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
* 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.
*/
#pragma once
#include "util/custom_allocator.hpp"
#include <vector>
#include <algorithm>
#include <vulkan/vulkan.h>
#include <vulkan/vk_layer.h>
namespace util
{
class extension_list
{
public:
extension_list(const util::allocator& allocator);
extension_list(const extension_list &rhs) = delete;
const extension_list &operator=(const extension_list &rhs) = delete;
/**
* @brief Obtain a vector of #VkExtensionProperties equivalent to this extension_list object.
*/
const util::vector<VkExtensionProperties> &get_extension_props() const
{
return m_ext_props;
}
/**
* @brief Get the allocator used to manage the memory of this object.
*/
const util::allocator get_allocator() const
{
return m_alloc;
}
/**
* @brief Append pointers to extension strings to the given vector.
*
* @warning Pointers in the vector are referring to string allocated in this extension_list and will become invalid
* if the extension_list is modified (e.g. by adding/removing elements.)
*
* @param[out] out A vector of C strings to which all extension are appended.
*
* @return A boolean indicating whether the operation was successful. If this is @c false, then @p out is
* unmodified.
*/
bool get_extension_strings(util::vector<const char*> &out) const;
bool contains(const extension_list &req) const;
bool contains(const char *ext) const;
void remove(const char *ext);
VkResult add(const char *ext);
VkResult add(VkExtensionProperties ext_prop);
VkResult add(const char **ext_list, uint32_t count);
VkResult add(const extension_list &ext_list);
VkResult add(const struct VkEnumerateInstanceExtensionPropertiesChain *chain);
VkResult add(PFN_vkEnumerateInstanceExtensionProperties fpEnumerateInstanceExtensionProperties);
VkResult add(VkPhysicalDevice dev);
VkResult add(const char *const *extensions, uint32_t count);
VkResult add(const VkExtensionProperties *props, uint32_t count);
private:
util::allocator m_alloc;
util::vector<VkExtensionProperties> m_ext_props;
};
} // namespace util