From: Ilia Mirkin Date: Wed, 23 Nov 2016 04:03:12 +0000 (-0500) Subject: anv: expose depthBiasClamp, it is already set X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d2280a007a0425726c941e8794004f2f5ba98839;p=mesa.git anv: expose depthBiasClamp, it is already set The gen7/8_cmd_buffer logic already sets the clamp, and it's piped through via the dynamic state. Signed-off-by: Ilia Mirkin Reviewed-by: Kenneth Graunke --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index d9ab1b153fd..08bc247939f 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -448,7 +448,7 @@ void anv_GetPhysicalDeviceFeatures( .multiDrawIndirect = false, .drawIndirectFirstInstance = false, .depthClamp = true, - .depthBiasClamp = false, + .depthBiasClamp = true, .fillModeNonSolid = true, .depthBounds = false, .wideLines = true,