diff options
author | Jason Ekstrand <[email protected]> | 2017-04-19 17:37:46 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-05-03 11:25:46 -0700 |
commit | f8d7c23e1fe322a25fbea2a943c95055b9e653ba (patch) | |
tree | a06f1478aa7ce3156eb0bd94e1124b0b3d1ea433 /src/intel/vulkan/anv_device.c | |
parent | 272b7e7d25d54ed7c428bde6977dcc2a57299dad (diff) |
anv: Trivially implement multiDrawIndirect
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index fc5baac0ac0..289e79b231c 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -564,7 +564,7 @@ void anv_GetPhysicalDeviceFeatures( .sampleRateShading = true, .dualSrcBlend = true, .logicOp = true, - .multiDrawIndirect = false, + .multiDrawIndirect = true, .drawIndirectFirstInstance = true, .depthClamp = true, .depthBiasClamp = true, |