Added image loading

Added some string functions and macros
Added path listing on windows
Added assets
This commit is contained in:
2025-10-04 17:24:30 +01:00
parent 7d55b16c8e
commit b1a805cea8
17 changed files with 617 additions and 5 deletions

View File

@@ -6,6 +6,7 @@
VK_FUNC(GetDeviceProcAddr);
VK_FUNC(GetPhysicalDeviceSurfaceCapabilitiesKHR);
VK_FUNC(GetPhysicalDeviceSurfaceFormatsKHR);
VK_FUNC(GetPhysicalDeviceMemoryProperties2);
#if defined(VK_USE_PLATFORM_WIN32_KHR)
VK_FUNC(CreateWin32SurfaceKHR);
@@ -39,7 +40,16 @@
VK_FUNC(BeginCommandBuffer);
VK_FUNC(EndCommandBuffer);
VK_FUNC(DeviceWaitIdle);
VK_FUNC(AllocateMemory);
VK_FUNC(CreateBuffer);
VK_FUNC(GetBufferMemoryRequirements);
VK_FUNC(BindBufferMemory);
VK_FUNC(CreateImage);
VK_FUNC(GetImageMemoryRequirements);
VK_FUNC(BindImageMemory);
VK_FUNC(MapMemory);
VK_FUNC(CmdCopyBufferToImage);
VK_FUNC(CmdPipelineBarrier2);
VK_FUNC(CmdBeginRendering);
VK_FUNC(CmdEndRendering);