Module: Mesa Branch: master Commit: 80c84bdba9cfb5baa47fccb56b460c6d90b0cea0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=80c84bdba9cfb5baa47fccb56b460c6d90b0cea0
Author: Samuel Pitoiset <[email protected]> Date: Mon Oct 15 14:53:00 2018 +0200 radv: bump discreteQueuePriorities to 2 It's the minimum value required by the spec. This fixes dEQP-VK.api.info.device.properties. Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- src/amd/vulkan/radv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index c418176978..174922780f 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -980,7 +980,7 @@ void radv_GetPhysicalDeviceProperties( .maxClipDistances = 8, .maxCullDistances = 8, .maxCombinedClipAndCullDistances = 8, - .discreteQueuePriorities = 1, + .discreteQueuePriorities = 2, .pointSizeRange = { 0.125, 255.875 }, .lineWidthRange = { 0.0, 7.9921875 }, .pointSizeGranularity = (1.0 / 8.0), _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
