diff options
author | Gabriel Majeri <[email protected]> | 2018-08-26 21:48:01 +0300 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2018-10-03 07:57:37 +0200 |
commit | f0b987646acf215f4f653832cf333ca16a05cdcf (patch) | |
tree | dbba92ca2be76a7f9d9fcf91a6f9fd7ad24181bd | |
parent | 2b5f42068d18a222e70f396c6ffc2564c4c36666 (diff) |
anv: Ensure discreteQueuePriorities is at least 2
This is the minimum value according to the spec.
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Iago Toral Quiroga <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index d392541c0c1..8f0cbad305f 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1069,7 +1069,7 @@ void anv_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), |