mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 01:08:03 +02:00
radv: fix line width range and granularity
The hardware supports wide lines and the granularity is way larger. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2982>
This commit is contained in:
parent
da64c35ff9
commit
fbcf05382b
1 changed files with 2 additions and 2 deletions
|
|
@ -1407,9 +1407,9 @@ void radv_GetPhysicalDeviceProperties(
|
|||
.maxCombinedClipAndCullDistances = 8,
|
||||
.discreteQueuePriorities = 2,
|
||||
.pointSizeRange = { 0.0, 8192.0 },
|
||||
.lineWidthRange = { 0.0, 7.9921875 },
|
||||
.lineWidthRange = { 0.0, 8192.0 },
|
||||
.pointSizeGranularity = (1.0 / 8.0),
|
||||
.lineWidthGranularity = (1.0 / 128.0),
|
||||
.lineWidthGranularity = (1.0 / 8.0),
|
||||
.strictLines = false, /* FINISHME */
|
||||
.standardSampleLocations = true,
|
||||
.optimalBufferCopyOffsetAlignment = 128,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue