throw together the worlds worst texture api

This commit is contained in:
Greg Wells
2025-05-29 11:55:12 -04:00
parent 2796a8b65e
commit 5403a2374b
8 changed files with 41 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
#pragma once
#include <vulkan/vulkan.h>
#include "core/textures/gryphn_texture.h"
typedef struct gnPlatformTexture_t {
VkImage image;
VkImageView imageView;
} gnPlatformTexture;