Re: [Mesa-dev] [PATCH 0/2] Fix the value of discreteQueuePriorities

2018-10-03 Thread Gabriel Majeri
: > Hi Gabriel, > > On Sun, 26 Aug 2018 at 19:51, Gabriel Majeri > wrote: > > > > According to the Vulkan specification, the value of the > > `discreteQueuePriorities` of the device limits structure > > **must** be at least two. > > > > Gabriel Maje

[Mesa-dev] [PATCH 1/2] anv: Ensure discreteQueuePriorities is at least 2

2018-08-26 Thread Gabriel Majeri
This is the minimum value according to the spec. --- src/intel/vulkan/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index d85615caae..85e497f1dd 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/int

[Mesa-dev] [PATCH 2/2] radv: Ensure discreteQueuePriorities is at least 2

2018-08-26 Thread Gabriel Majeri
This is the minimum value according to the spec. --- 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 79dbbd886d..1283bdba71 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vul

[Mesa-dev] [PATCH 0/2] Fix the value of discreteQueuePriorities

2018-08-26 Thread Gabriel Majeri
According to the Vulkan specification, the value of the `discreteQueuePriorities` of the device limits structure **must** be at least two. Gabriel Majeri (2): anv: Ensure discreteQueuePriorities is at least 2 radv: Ensure discreteQueuePriorities is at least 2 src/amd/vulkan/radv_device.c