From e49df902b4c1b98569921d8b858e6e3855bf10e0 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Tue, 4 Feb 2025 11:35:29 +0100 Subject: [PATCH] panvk: report strictLines as true We are implementing the line rasterization as per the spec, so we should report strictLines as true. This matches what the DDK does as well. Reviewed-by: Boris Brezillon Part-of: --- src/panfrost/vulkan/panvk_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index f547cb46a72..33c09906afb 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -667,7 +667,7 @@ get_device_properties(const struct panvk_instance *instance, .lineWidthRange = {0.0, 7.9921875}, .pointSizeGranularity = (1.0 / 16.0), .lineWidthGranularity = (1.0 / 128.0), - .strictLines = false, + .strictLines = true, .standardSampleLocations = true, .optimalBufferCopyOffsetAlignment = 64, .optimalBufferCopyRowPitchAlignment = 64,