diff options
author | Ilia Mirkin <[email protected]> | 2016-11-22 23:20:11 -0500 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-11-28 19:32:14 -0800 |
commit | e6847f24f032b094b5a40012968ca79a5fdc67b4 (patch) | |
tree | c2609af8013bfd4a48433b268f71d2a52d00cc5b /src/intel | |
parent | d2280a007a0425726c941e8794004f2f5ba98839 (diff) |
anv: enable drawIndirectFirstInstance
This was already piped through in the CmdDraw(Indexed)Indirect handling.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel')
-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 08bc247939f..b8e00baf43d 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -446,7 +446,7 @@ void anv_GetPhysicalDeviceFeatures( .dualSrcBlend = true, .logicOp = true, .multiDrawIndirect = false, - .drawIndirectFirstInstance = false, + .drawIndirectFirstInstance = true, .depthClamp = true, .depthBiasClamp = true, .fillModeNonSolid = true, |