mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 16:50:13 +01: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> (cherry picked from commit6403171843)
This commit is contained in:
parent
d88857823f
commit
ce57ea90d3
1 changed files with 1 additions and 1 deletions
|
|
@ -977,7 +977,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