From: Dave Airlie Date: Fri, 20 Jan 2017 02:42:26 +0000 (+1000) Subject: radv: enable geometryShader and multiViewport capabilities. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=723941bb3d8db853f48bc31df10bae3889419cb7;p=mesa.git radv: enable geometryShader and multiViewport capabilities. This enables geometry shader support on radv. Reviewed-by: Bas Nieuwenhuizen Signed-off-by: Dave Airlie --- diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 984bd75bb80..2014ce23b8c 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -428,7 +428,7 @@ void radv_GetPhysicalDeviceFeatures( .fullDrawIndexUint32 = true, .imageCubeArray = true, .independentBlend = true, - .geometryShader = false, + .geometryShader = true, .tessellationShader = false, .sampleRateShading = false, .dualSrcBlend = true, @@ -442,7 +442,7 @@ void radv_GetPhysicalDeviceFeatures( .wideLines = true, .largePoints = true, .alphaToOne = true, - .multiViewport = false, + .multiViewport = true, .samplerAnisotropy = true, .textureCompressionETC2 = false, .textureCompressionASTC_LDR = false,