From e6847f24f032b094b5a40012968ca79a5fdc67b4 Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Tue, 22 Nov 2016 23:20:11 -0500 Subject: [PATCH] anv: enable drawIndirectFirstInstance This was already piped through in the CmdDraw(Indexed)Indirect handling. Signed-off-by: Ilia Mirkin Reviewed-by: Kenneth Graunke Reviewed-by: Jason Ekstrand --- src/intel/vulkan/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 08bc247..b8e00ba 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, -- 2.7.4