creating and destroying buffers

This commit is contained in:
Greg Wells
2025-06-06 12:58:15 -04:00
parent 2385b5d819
commit 585be0c6b0
5 changed files with 71 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
#pragma once
#include <vulkan/vulkan.h>
struct gnPlatformBuffer_t {
VkBuffer buffer;
VkDeviceMemory bufferMemory;
};