diff --git a/.pick_status.json b/.pick_status.json index 8a577cc7998..39e19e1704f 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1024,7 +1024,7 @@ "description": "tu: Fix a6xx lineWidthGranularity", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "48da361eb7b355f6ce79983d661dd0422e278967", "notes": null diff --git a/src/freedreno/vulkan/tu_device.cc b/src/freedreno/vulkan/tu_device.cc index 5450b8beb0d..84c6c7dc967 100644 --- a/src/freedreno/vulkan/tu_device.cc +++ b/src/freedreno/vulkan/tu_device.cc @@ -910,7 +910,7 @@ tu_get_properties(struct tu_physical_device *pdevice, props->lineWidthRange[1] = pdevice->info->a6xx.line_width_max; props->pointSizeGranularity = 0.0625; props->lineWidthGranularity = - pdevice->info->a6xx.line_width_max == 1.0 ? 1.0 : 0.5; + pdevice->info->a6xx.line_width_max == 1.0 ? 0.0 : 0.5; props->strictLines = true; props->standardSampleLocations = true; props->optimalBufferCopyOffsetAlignment = 128;