From 8f482cc67cfb3213704fc82b98c20d5f394069c6 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 18 Sep 2024 12:40:27 -0400 Subject: [PATCH] llvmpipe: bump max point size to 256 in theory this should be fine Reviewed-by: Konstantin Seurer Part-of: --- src/gallium/drivers/llvmpipe/lp_limits.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/llvmpipe/lp_limits.h b/src/gallium/drivers/llvmpipe/lp_limits.h index 13fe9e11812..19dd4688305 100644 --- a/src/gallium/drivers/llvmpipe/lp_limits.h +++ b/src/gallium/drivers/llvmpipe/lp_limits.h @@ -94,5 +94,5 @@ /* * Max point size reported. Cap vertex shader point sizes to this. */ -#define LP_MAX_POINT_WIDTH 255.0f +#define LP_MAX_POINT_WIDTH 256.0f #endif /* LP_LIMITS_H */