Now have a blue screen.

This commit is contained in:
Zed A. Shaw 2025-11-24 15:07:43 -05:00
parent 7298568818
commit 8a7ef61c78
11 changed files with 527 additions and 55 deletions

7
vk_images.h Normal file
View file

@ -0,0 +1,7 @@
#pragma once
#include <vulkan/vulkan.h>
namespace vkutil {
void transition_image(VkCommandBuffer cmd, VkImage image, VkImageLayout currentLayout, VkImageLayout newLayout);
}