1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
/*
* Copyright (c) 2025 The Khronos Group Inc.
* Copyright (c) 2025 Valve Corporation
* Copyright (c) 2025 LunarG, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and/or associated documentation files (the "Materials"), to
* deal in the Materials without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Materials, and to permit persons to whom the Materials are
* furnished to do so, subject to the following conditions:
*
* The above copyright notice(s) and this permission notice shall be included in
* all copies or substantial portions of the Materials.
*
* THE MATERIALS ARE 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 MATERIALS OR THE
* USE OR OTHER DEALINGS IN THE MATERIALS.
*
*/
#pragma once
#include <string>
#include <vector>
#include <vulkan/vulkan_core.h>
#include "builder_defines.h"
struct Extension {
BUILDER_VALUE(std::string, extensionName)
BUILDER_VALUE_WITH_DEFAULT(uint32_t, specVersion, VK_API_VERSION_1_0)
Extension(const char* name, uint32_t specVersion = VK_API_VERSION_1_0) noexcept
: extensionName(name), specVersion(specVersion) {}
Extension(std::string extensionName, uint32_t specVersion = VK_API_VERSION_1_0) noexcept
: extensionName(extensionName), specVersion(specVersion) {}
VkExtensionProperties get() const noexcept;
};
struct MockQueueFamilyProperties {
BUILDER_VALUE(VkQueueFamilyProperties, properties)
BUILDER_VALUE(bool, support_present)
VkQueueFamilyProperties get() const noexcept { return properties; }
};
struct InstanceCreateInfo {
BUILDER_VALUE(VkInstanceCreateInfo, instance_info)
BUILDER_VALUE(VkApplicationInfo, application_info)
BUILDER_VALUE(std::string, app_name)
BUILDER_VALUE(std::string, engine_name)
BUILDER_VALUE(uint32_t, flags)
BUILDER_VALUE(uint32_t, app_version)
BUILDER_VALUE(uint32_t, engine_version)
BUILDER_VALUE_WITH_DEFAULT(uint32_t, api_version, VK_API_VERSION_1_0)
BUILDER_VECTOR(const char*, enabled_layers, layer)
BUILDER_VECTOR(const char*, enabled_extensions, extension)
// tell the get() function to not provide `application_info`
BUILDER_VALUE_WITH_DEFAULT(bool, fill_in_application_info, true)
InstanceCreateInfo();
VkInstanceCreateInfo* get() noexcept;
InstanceCreateInfo& set_api_version(uint32_t major, uint32_t minor, uint32_t patch);
InstanceCreateInfo& setup_WSI(const char* api_selection = nullptr);
};
struct DeviceQueueCreateInfo {
DeviceQueueCreateInfo();
DeviceQueueCreateInfo(const VkDeviceQueueCreateInfo* create_info);
BUILDER_VALUE(VkDeviceQueueCreateInfo, queue_create_info)
BUILDER_VECTOR(float, priorities, priority)
VkDeviceQueueCreateInfo get() noexcept;
};
struct DeviceCreateInfo {
DeviceCreateInfo() = default;
DeviceCreateInfo(const VkDeviceCreateInfo* create_info);
BUILDER_VALUE(VkDeviceCreateInfo, dev)
BUILDER_VECTOR(const char*, enabled_extensions, extension)
BUILDER_VECTOR(const char*, enabled_layers, layer)
BUILDER_VECTOR(DeviceQueueCreateInfo, queue_info_details, device_queue)
VkDeviceCreateInfo* get() noexcept;
private:
std::vector<VkDeviceQueueCreateInfo> device_queue_infos;
};
|