From 24f4f35eac4fc619300569dc9ed59114b10a6b7d Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 17 May 2023 11:54:11 +1000 Subject: [PATCH] llvmpipe: bump dirty tracker to 64-bits. We need a lot more dirty states for task/mesh Reviewed-by: Roland Scheidegger Part-of: --- src/gallium/drivers/llvmpipe/lp_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/llvmpipe/lp_context.h b/src/gallium/drivers/llvmpipe/lp_context.h index 2c6d654c959..4c985fa336a 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.h +++ b/src/gallium/drivers/llvmpipe/lp_context.h @@ -114,7 +114,7 @@ struct llvmpipe_context { bool queries_disabled; - unsigned dirty; /**< Mask of LP_NEW_x flags */ + uint64_t dirty; /**< Mask of LP_NEW_x flags */ unsigned cs_dirty; /**< Mask of LP_CSNEW_x flags */ /** Mapped vertex buffers */ ubyte *mapped_vbuffer[PIPE_MAX_ATTRIBS];