diff --git a/src/freedreno/vulkan/tu_device.cc b/src/freedreno/vulkan/tu_device.cc index e75168926ba..83b64a5b629 100644 --- a/src/freedreno/vulkan/tu_device.cc +++ b/src/freedreno/vulkan/tu_device.cc @@ -917,7 +917,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;