Files
funnygame/public/materialsystem/vulkan_shadermeta.h
2025-12-23 15:03:44 +02:00

21 lines
311 B
C

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