mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-22 01:00:47 +02:00
dzn: Allow multiDrawIndirect and drawIndirectFirstInstance
Those are already supported, let's just toggle the switch. Acked-by: Jesse Natalie <jenatali@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15914>
This commit is contained in:
parent
697e98c66e
commit
ece5e27a7f
1 changed files with 3 additions and 3 deletions
|
|
@ -1021,8 +1021,8 @@ dzn_GetPhysicalDeviceFeatures2(VkPhysicalDevice physicalDevice,
|
|||
.sampleRateShading = true,
|
||||
.dualSrcBlend = false,
|
||||
.logicOp = false,
|
||||
.multiDrawIndirect = false,
|
||||
.drawIndirectFirstInstance = false,
|
||||
.multiDrawIndirect = true,
|
||||
.drawIndirectFirstInstance = true,
|
||||
.depthClamp = false,
|
||||
.depthBiasClamp = false,
|
||||
.fillModeNonSolid = false,
|
||||
|
|
@ -1361,7 +1361,7 @@ dzn_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice,
|
|||
.subTexelPrecisionBits = 4,
|
||||
.mipmapPrecisionBits = 4,
|
||||
.maxDrawIndexedIndexValue = 0x00ffffff,
|
||||
.maxDrawIndirectCount = 1,
|
||||
.maxDrawIndirectCount = UINT32_MAX,
|
||||
.maxSamplerLodBias = 2.0f,
|
||||
.maxSamplerAnisotropy = 1.0f,
|
||||
.maxViewports = 1,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue