mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
radv: fix pointSizeRange limits
The values should match the ones that are emitted.
This fixes new CTS dEQP-VK.rasterization.primitive_size.points.*.
Fixes: f4e499ec79 ("radv: add initial non-conformant radv vulkan driver")
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
bbef6c2d5f
commit
6403171843
1 changed files with 1 additions and 1 deletions
|
|
@ -1016,7 +1016,7 @@ void radv_GetPhysicalDeviceProperties(
|
|||
.maxCullDistances = 8,
|
||||
.maxCombinedClipAndCullDistances = 8,
|
||||
.discreteQueuePriorities = 2,
|
||||
.pointSizeRange = { 0.125, 255.875 },
|
||||
.pointSizeRange = { 0.0, 8192.0 },
|
||||
.lineWidthRange = { 0.0, 7.9921875 },
|
||||
.pointSizeGranularity = (1.0 / 8.0),
|
||||
.lineWidthGranularity = (1.0 / 128.0),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue