2024-09-30 00:57:13 -04:00
|
|
|
#include <fmt/format.h>
|
2024-09-28 18:13:24 -04:00
|
|
|
#include <iostream>
|
2024-09-30 00:57:13 -04:00
|
|
|
#include <set>
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-30 21:21:38 -04:00
|
|
|
#define VK_ENABLE_BETA_EXTENSIONS
|
2024-09-29 23:02:04 -04:00
|
|
|
#define VULKAN_HPP_NO_CONSTRUCTORS
|
|
|
|
#include <vulkan/vulkan.hpp>
|
|
|
|
|
2024-09-28 19:38:13 -04:00
|
|
|
#include "util/types.h"
|
2024-09-30 17:52:49 -04:00
|
|
|
#include "vkfw.hpp"
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
namespace vk {
|
|
|
|
using DebugUtilsMessengerUnique = vk::UniqueHandle<vk::DebugUtilsMessengerEXT, vk::DispatchLoaderDynamic>;
|
|
|
|
}
|
|
|
|
|
2024-09-30 17:52:49 -04:00
|
|
|
constexpr i32 WIDTH = 800;
|
|
|
|
constexpr i32 HEIGHT = 600;
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-29 23:02:04 -04:00
|
|
|
constexpr std::array<const char*, 1> validationLayers = { "VK_LAYER_KHRONOS_validation" };
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-26 19:56:19 -04:00
|
|
|
#ifdef NDEBUG
|
2024-09-29 23:02:04 -04:00
|
|
|
constexpr bool enableValidationLayers = false;
|
2024-09-25 23:03:56 -04:00
|
|
|
#else
|
2024-09-29 23:02:04 -04:00
|
|
|
constexpr bool enableValidationLayers = true;
|
2024-09-25 23:03:56 -04:00
|
|
|
#endif
|
|
|
|
|
2024-09-29 23:11:12 -04:00
|
|
|
class VulkanApp {
|
2024-09-25 23:03:56 -04:00
|
|
|
public:
|
2024-09-30 00:57:13 -04:00
|
|
|
fn run() -> void {
|
2024-09-25 23:03:56 -04:00
|
|
|
initWindow();
|
|
|
|
initVulkan();
|
|
|
|
mainLoop();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2024-09-30 16:46:17 -04:00
|
|
|
vkfw::UniqueInstance mGLFWInstance;
|
|
|
|
vkfw::UniqueWindow mWindow;
|
2024-09-28 18:13:24 -04:00
|
|
|
|
2024-09-29 23:02:04 -04:00
|
|
|
vk::UniqueInstance mInstance;
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
vk::DebugUtilsMessengerUnique mDebugMessenger;
|
|
|
|
vk::DispatchLoaderDynamic mLoader;
|
|
|
|
|
|
|
|
vk::PhysicalDevice mPhysicalDevice;
|
2024-09-30 00:57:13 -04:00
|
|
|
vk::UniqueDevice mDevice;
|
|
|
|
|
|
|
|
vk::Queue mGraphicsQueue;
|
|
|
|
vk::Queue mPresentQueue;
|
|
|
|
|
|
|
|
vk::UniqueSurfaceKHR mSurface;
|
2024-09-30 00:31:08 -04:00
|
|
|
|
|
|
|
struct QueueFamilyIndices {
|
|
|
|
std::optional<u32> graphics_family;
|
2024-09-30 00:57:13 -04:00
|
|
|
std::optional<u32> present_family;
|
2024-09-30 00:31:08 -04:00
|
|
|
|
2024-09-30 00:57:13 -04:00
|
|
|
fn isComplete() -> bool { return graphics_family.has_value() && present_family.has_value(); }
|
2024-09-30 00:31:08 -04:00
|
|
|
};
|
2024-09-28 21:55:26 -04:00
|
|
|
|
2024-09-30 00:57:13 -04:00
|
|
|
fn initWindow() -> void {
|
2024-09-30 16:50:58 -04:00
|
|
|
mGLFWInstance = vkfw::initUnique();
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-30 16:50:58 -04:00
|
|
|
vkfw::WindowHints hints;
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-30 16:50:58 -04:00
|
|
|
hints.clientAPI = vkfw::ClientAPI::eNone;
|
2024-09-30 21:34:25 -04:00
|
|
|
hints.resizable = vkfw::eFalse;
|
2024-09-30 16:46:17 -04:00
|
|
|
|
2024-09-30 16:50:58 -04:00
|
|
|
mWindow = vkfw::createWindowUnique(WIDTH, HEIGHT, "Vulkan", hints);
|
2024-09-25 23:03:56 -04:00
|
|
|
}
|
|
|
|
|
2024-09-30 00:57:13 -04:00
|
|
|
fn initVulkan() -> void {
|
2024-09-28 18:13:24 -04:00
|
|
|
createInstance();
|
|
|
|
setupDebugMessenger();
|
2024-09-30 00:57:13 -04:00
|
|
|
createSurface();
|
2024-09-30 00:31:08 -04:00
|
|
|
pickPhysicalDevice();
|
2024-09-30 00:57:13 -04:00
|
|
|
createLogicalDevice();
|
2024-09-29 23:02:04 -04:00
|
|
|
}
|
2024-09-28 14:54:39 -04:00
|
|
|
|
2024-09-30 00:57:13 -04:00
|
|
|
fn mainLoop() -> void {
|
2024-09-30 16:46:17 -04:00
|
|
|
while (!mWindow->shouldClose()) { vkfw::waitEvents(); }
|
2024-09-28 14:54:39 -04:00
|
|
|
}
|
|
|
|
|
2024-09-25 23:03:56 -04:00
|
|
|
fn createInstance() -> void {
|
|
|
|
if (enableValidationLayers && !checkValidationLayerSupport())
|
2024-09-30 21:21:38 -04:00
|
|
|
throw std::runtime_error("Validation layers requested, but not available!");
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-29 20:12:56 -04:00
|
|
|
vk::ApplicationInfo appInfo { .pApplicationName = "Hello Triangle",
|
|
|
|
.applicationVersion = 1,
|
|
|
|
.pEngineName = "No Engine",
|
|
|
|
.engineVersion = 1,
|
2024-09-30 21:21:38 -04:00
|
|
|
.apiVersion = vk::ApiVersion10 };
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-29 20:12:56 -04:00
|
|
|
// Retrieve extensions using custom function
|
2024-09-28 18:13:24 -04:00
|
|
|
std::vector<const char*> extensions = getRequiredExtensions();
|
2024-09-26 19:56:19 -04:00
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
// Enable the portability extension and set flags
|
2024-10-01 14:15:39 -04:00
|
|
|
extensions.emplace_back(vk::KHRPortabilityEnumerationExtensionName);
|
|
|
|
#ifdef __APPLE__
|
|
|
|
// Technically deprecated but vulkan complains if I don't include it for macOS
|
|
|
|
// So instead of using the vk::KHRPortabilitySubsetExtensionName, I just use
|
|
|
|
// the direct string.
|
|
|
|
extensions.emplace_back("VK_KHR_get_physical_device_properties2");
|
2024-09-30 21:21:38 -04:00
|
|
|
#endif
|
2024-09-30 00:31:08 -04:00
|
|
|
|
2024-09-29 23:05:15 -04:00
|
|
|
vk::InstanceCreateInfo createInfo {
|
2024-09-30 00:31:08 -04:00
|
|
|
.flags = vk::InstanceCreateFlagBits::eEnumeratePortabilityKHR,
|
|
|
|
.pApplicationInfo = &appInfo,
|
2024-09-30 17:52:49 -04:00
|
|
|
.enabledLayerCount = enableValidationLayers ? static_cast<u32>(validationLayers.size()) : 0,
|
2024-09-30 00:31:08 -04:00
|
|
|
.ppEnabledLayerNames = enableValidationLayers ? validationLayers.data() : nullptr,
|
2024-09-30 17:52:49 -04:00
|
|
|
.enabledExtensionCount = static_cast<u32>(extensions.size()),
|
2024-09-30 00:31:08 -04:00
|
|
|
.ppEnabledExtensionNames = extensions.data()
|
2024-09-29 23:05:15 -04:00
|
|
|
};
|
2024-09-26 17:18:45 -04:00
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
#ifndef NDEBUG
|
2024-09-29 23:02:04 -04:00
|
|
|
fmt::println("Available extensions:");
|
|
|
|
|
|
|
|
for (const char* extension : extensions) fmt::println("\t{}", extension);
|
2024-09-30 00:31:08 -04:00
|
|
|
#endif
|
2024-09-25 23:03:56 -04:00
|
|
|
|
2024-09-29 20:12:56 -04:00
|
|
|
try {
|
2024-09-29 23:02:04 -04:00
|
|
|
mInstance = vk::createInstanceUnique(createInfo);
|
|
|
|
mLoader = vk::DispatchLoaderDynamic(mInstance.get(), vkGetInstanceProcAddr);
|
2024-09-29 20:12:56 -04:00
|
|
|
} catch (const vk::SystemError& err) {
|
|
|
|
throw std::runtime_error("Failed to create instance: " + std::string(err.what()));
|
|
|
|
}
|
2024-09-28 14:54:39 -04:00
|
|
|
}
|
|
|
|
|
2024-09-30 00:57:13 -04:00
|
|
|
fn setupDebugMessenger() -> void {
|
2024-09-30 00:31:08 -04:00
|
|
|
if (!enableValidationLayers)
|
|
|
|
return;
|
2024-09-28 18:13:24 -04:00
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
vk::DebugUtilsMessengerCreateInfoEXT messengerCreateInfo {
|
|
|
|
.messageSeverity = vk::DebugUtilsMessageSeverityFlagBitsEXT::eVerbose |
|
|
|
|
vk::DebugUtilsMessageSeverityFlagBitsEXT::eWarning |
|
|
|
|
vk::DebugUtilsMessageSeverityFlagBitsEXT::eError,
|
|
|
|
.messageType = vk::DebugUtilsMessageTypeFlagBitsEXT::eGeneral |
|
|
|
|
vk::DebugUtilsMessageTypeFlagBitsEXT::eValidation |
|
|
|
|
vk::DebugUtilsMessageTypeFlagBitsEXT::ePerformance,
|
|
|
|
.pfnUserCallback = debugCallback,
|
|
|
|
};
|
2024-09-28 18:13:24 -04:00
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
mDebugMessenger = mInstance->createDebugUtilsMessengerEXTUnique(messengerCreateInfo, nullptr, mLoader);
|
|
|
|
}
|
2024-09-28 18:13:24 -04:00
|
|
|
|
2024-09-30 16:46:17 -04:00
|
|
|
fn createSurface() -> void { mSurface = vkfw::createWindowSurfaceUnique(mInstance.get(), mWindow.get()); }
|
2024-09-30 00:57:13 -04:00
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
fn pickPhysicalDevice() -> void {
|
|
|
|
std::vector<vk::PhysicalDevice> devices = mInstance->enumeratePhysicalDevices();
|
|
|
|
|
|
|
|
if (devices.empty())
|
|
|
|
throw std::runtime_error("Failed to find GPUs with Vulkan support!");
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
fmt::println("Available devices:");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (const auto& device : devices) {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
vk::PhysicalDeviceProperties properties = device.getProperties();
|
2024-09-30 19:49:44 -04:00
|
|
|
fmt::println("\t{}", properties.deviceName.data());
|
2024-09-30 00:31:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (isDeviceSuitable(device)) {
|
|
|
|
mPhysicalDevice = device;
|
|
|
|
break;
|
|
|
|
}
|
2024-09-28 18:13:24 -04:00
|
|
|
}
|
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
if (!mPhysicalDevice)
|
|
|
|
throw std::runtime_error("Failed to find a suitable GPU!");
|
|
|
|
}
|
|
|
|
|
2024-09-30 00:57:13 -04:00
|
|
|
fn createLogicalDevice() -> void {
|
|
|
|
QueueFamilyIndices indices = findQueueFamilies(mPhysicalDevice);
|
|
|
|
|
|
|
|
std::vector<vk::DeviceQueueCreateInfo> queueCreateInfos;
|
|
|
|
std::set<u32> uniqueQueueFamilies = { indices.graphics_family.value(), indices.present_family.value() };
|
|
|
|
|
|
|
|
f32 queuePriority = 1.0F;
|
|
|
|
|
|
|
|
for (u32 queueFamily : uniqueQueueFamilies) {
|
|
|
|
vk::DeviceQueueCreateInfo queueCreateInfo { .queueFamilyIndex = queueFamily,
|
|
|
|
.queueCount = 1,
|
|
|
|
.pQueuePriorities = &queuePriority };
|
|
|
|
|
2024-10-01 14:15:39 -04:00
|
|
|
queueCreateInfos.emplace_back(queueCreateInfo);
|
2024-09-30 00:57:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
vk::PhysicalDeviceFeatures deviceFeatures;
|
|
|
|
|
2024-09-30 19:49:44 -04:00
|
|
|
#ifdef __APPLE__
|
2024-09-30 00:57:13 -04:00
|
|
|
vk::DeviceCreateInfo createInfo { .queueCreateInfoCount = static_cast<u32>(queueCreateInfos.size()),
|
|
|
|
.pQueueCreateInfos = queueCreateInfos.data(),
|
2024-09-30 21:21:38 -04:00
|
|
|
.enabledExtensionCount = 1,
|
2024-10-01 14:15:39 -04:00
|
|
|
.ppEnabledExtensionNames = &vk::KHRPortabilitySubsetExtensionName,
|
2024-09-30 00:57:13 -04:00
|
|
|
.pEnabledFeatures = &deviceFeatures };
|
2024-09-30 19:49:44 -04:00
|
|
|
#else
|
|
|
|
vk::DeviceCreateInfo createInfo { .queueCreateInfoCount = static_cast<u32>(queueCreateInfos.size()),
|
|
|
|
.pQueueCreateInfos = queueCreateInfos.data(),
|
|
|
|
.enabledExtensionCount = 0,
|
|
|
|
.ppEnabledExtensionNames = nullptr,
|
|
|
|
.pEnabledFeatures = &deviceFeatures };
|
|
|
|
#endif
|
2024-09-30 00:57:13 -04:00
|
|
|
|
|
|
|
mDevice = mPhysicalDevice.createDeviceUnique(createInfo);
|
|
|
|
|
|
|
|
mGraphicsQueue = mDevice->getQueue(indices.graphics_family.value(), 0);
|
2024-09-30 15:25:22 -04:00
|
|
|
mPresentQueue = mDevice->getQueue(indices.present_family.value(), 0);
|
2024-09-30 00:57:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn isDeviceSuitable(vk::PhysicalDevice device) -> bool {
|
2024-09-30 00:31:08 -04:00
|
|
|
QueueFamilyIndices indices = findQueueFamilies(device);
|
|
|
|
|
|
|
|
return indices.isComplete();
|
|
|
|
}
|
|
|
|
|
2024-09-30 00:57:13 -04:00
|
|
|
fn findQueueFamilies(vk::PhysicalDevice device) -> QueueFamilyIndices {
|
2024-09-30 00:31:08 -04:00
|
|
|
QueueFamilyIndices indices;
|
|
|
|
|
|
|
|
std::vector<vk::QueueFamilyProperties> queueFamilies = device.getQueueFamilyProperties();
|
|
|
|
|
|
|
|
for (u32 i = 0; i < queueFamilies.size(); i++) {
|
|
|
|
if (queueFamilies[i].queueFlags & vk::QueueFlagBits::eGraphics)
|
|
|
|
indices.graphics_family = i;
|
|
|
|
|
2024-09-30 00:57:13 -04:00
|
|
|
vk::Bool32 presentSupport = device.getSurfaceSupportKHR(i, mSurface.get());
|
|
|
|
|
|
|
|
if (presentSupport)
|
|
|
|
indices.present_family = i;
|
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
if (indices.isComplete())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return indices;
|
2024-09-28 18:13:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static fn getRequiredExtensions() -> std::vector<const char*> {
|
2024-09-30 16:46:17 -04:00
|
|
|
std::span<const char*> extensionsSpan = vkfw::getRequiredInstanceExtensions();
|
2024-09-28 18:13:24 -04:00
|
|
|
|
2024-09-30 16:46:17 -04:00
|
|
|
std::vector extensions(extensionsSpan.begin(), extensionsSpan.end());
|
2024-09-28 18:13:24 -04:00
|
|
|
|
2024-09-28 14:54:39 -04:00
|
|
|
if (enableValidationLayers)
|
2024-10-01 14:15:39 -04:00
|
|
|
extensions.emplace_back(vk::EXTDebugUtilsExtensionName);
|
2024-09-28 14:54:39 -04:00
|
|
|
|
2024-09-28 18:13:24 -04:00
|
|
|
return extensions;
|
|
|
|
}
|
|
|
|
|
2024-09-30 00:31:08 -04:00
|
|
|
static fn checkValidationLayerSupport() -> bool {
|
|
|
|
std::vector<vk::LayerProperties> availableLayers = vk::enumerateInstanceLayerProperties();
|
|
|
|
|
|
|
|
for (const char* layerName : validationLayers) {
|
|
|
|
bool layerFound = false;
|
|
|
|
|
|
|
|
for (const auto& layerProperties : availableLayers)
|
|
|
|
if (strcmp(layerName, layerProperties.layerName) == 0) {
|
|
|
|
layerFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!layerFound)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-09-28 18:13:24 -04:00
|
|
|
static VKAPI_ATTR fn VKAPI_CALL debugCallback(
|
|
|
|
VkDebugUtilsMessageSeverityFlagBitsEXT /*messageSeverity*/,
|
|
|
|
VkDebugUtilsMessageTypeFlagsEXT /*messageType*/,
|
|
|
|
const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData,
|
|
|
|
void* /*pUserData*/
|
2024-09-30 00:57:13 -04:00
|
|
|
) -> vk::Bool32 {
|
2024-09-29 23:02:04 -04:00
|
|
|
fmt::println("Validation layer: {}", pCallbackData->pMessage);
|
2024-09-28 18:13:24 -04:00
|
|
|
|
2024-09-30 21:34:25 -04:00
|
|
|
return vk::False;
|
2024-09-25 23:03:56 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2024-09-28 21:55:26 -04:00
|
|
|
fn main() -> i32 {
|
2024-09-29 23:11:12 -04:00
|
|
|
VulkanApp app;
|
2024-09-25 23:03:56 -04:00
|
|
|
|
|
|
|
try {
|
|
|
|
app.run();
|
|
|
|
} catch (const std::exception& e) {
|
|
|
|
std::cerr << e.what() << std::endl;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|