[dxvk] Add input topology field to shader info

This commit is contained in:
Philip Rebohle 2025-02-26 12:57:35 +01:00
parent 2cd305e606
commit bfe12947d4

View file

@ -60,6 +60,8 @@ namespace dxvk {
uint32_t patchVertexCount = 0; uint32_t patchVertexCount = 0;
/// Transform feedback vertex strides /// Transform feedback vertex strides
uint32_t xfbStrides[MaxNumXfbBuffers] = { }; uint32_t xfbStrides[MaxNumXfbBuffers] = { };
/// Input primitive topology for geometry shaders
VkPrimitiveTopology inputTopology = VK_PRIMITIVE_TOPOLOGY_MAX_ENUM;
/// Output primitive topology /// Output primitive topology
VkPrimitiveTopology outputTopology = VK_PRIMITIVE_TOPOLOGY_MAX_ENUM; VkPrimitiveTopology outputTopology = VK_PRIMITIVE_TOPOLOGY_MAX_ENUM;
}; };