Skip to content

nvk: fix maxPushDescriptors

Thomas Andersen requested to merge phomes/mesa:maxPushDescriptors into nvk/main

The maxPushDescriptors property was being set in GetPhysicalDeviceMemoryProperties2, but should be in GetPhysicalDeviceProperties2.

vulkaninfo before:

VkPhysicalDevicePushDescriptorPropertiesKHR:
--------------------------------------------
        maxPushDescriptors = 0

vulkaninfo after:

VkPhysicalDevicePushDescriptorPropertiesKHR:
--------------------------------------------
        maxPushDescriptors = 32

Initially spotted with Sascha Willems pushdescriptors example

Edited by Thomas Andersen

Merge request reports