Files
funnygame/public/materialsystem/vulkan_shadermeta.h
2026-02-20 19:35:09 +02:00

23 lines
347 B
C

#ifndef VULKAN_METADATA_H
#define VULKAN_METADATA_H
#include "shaderinternals.h"
#include "vulkan/vulkan.h"
struct VulkanDescriptor_t
{
char szName[32];
VkDescriptorType eDescriptorType;
uint32_t uBinding;
uint32_t uSet;
uint32_t uCount;
};
struct VulkanInputMetaData_t
{
uint32_t nDescriptorsCount;
uint32_t pDescriptorSets;
};
#endif