Skip to content

Commit

Permalink
Updated Vulkan headers to 1.3.243
Browse files Browse the repository at this point in the history
  • Loading branch information
SaschaWillems committed Mar 17, 2023
1 parent 1cdf4f8 commit bf81c3d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions VulkanDeviceInfoExtensions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ void VulkanDeviceInfoExtensions::readPhysicalProperties_HUAWEI() {
pushProperty2(extension, "maxWorkGroupCount", QVariant::fromValue(QVariantList({ extProps.maxWorkGroupCount[0], extProps.maxWorkGroupCount[1], extProps.maxWorkGroupCount[2] })));
pushProperty2(extension, "maxWorkGroupSize", QVariant::fromValue(QVariantList({ extProps.maxWorkGroupSize[0], extProps.maxWorkGroupSize[1], extProps.maxWorkGroupSize[2] })));
pushProperty2(extension, "maxOutputClusterCount", QVariant(extProps.maxOutputClusterCount));
pushProperty2(extension, "indirectBufferOffsetAlignment", QVariant::fromValue(extProps.indirectBufferOffsetAlignment));
}
}
void VulkanDeviceInfoExtensions::readPhysicalProperties_KHR() {
Expand Down
2 changes: 1 addition & 1 deletion VulkanDeviceInfoExtensions.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class VulkanDeviceInfoExtensions
void readPhysicalFeatures_VALVE();

public:
const uint32_t vkHeaderVersion = 241;
const uint32_t vkHeaderVersion = 243;
std::vector<Feature2> features2;
std::vector<Property2> properties2;
std::vector<VkExtensionProperties> extensions;
Expand Down

0 comments on commit bf81c3d

Please sign in to comment.