From: Jason Ekstrand Date: Fri, 15 Jul 2016 01:01:29 +0000 (-0700) Subject: anv: Enable independentBlend on gen7 X-Git-Tag: upstream/17.1.0~7999 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f124f4a394680f8a1847339770c8d245282bbe01;p=platform%2Fupstream%2Fmesa.git anv: Enable independentBlend on gen7 We can totally do it, we were just only setting up one BLEND_STATE and, now that the code is unified with gen8, we should be handling it correctly. Signed-off-by: Jason Ekstrand Reviewed-by: Kenneth Graunke Cc: "12.0" --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index f181eb7..2e91980 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -372,7 +372,7 @@ void anv_GetPhysicalDeviceFeatures( .robustBufferAccess = true, .fullDrawIndexUint32 = true, .imageCubeArray = false, - .independentBlend = pdevice->info->gen >= 8, + .independentBlend = true, .geometryShader = true, .tessellationShader = false, .sampleRateShading = false,