From c8d0e76ebdf3ed1e3351af19de64288c2303d3aa Mon Sep 17 00:00:00 2001 From: Sean Kim Date: Tue, 10 Jun 2025 16:30:16 -0700 Subject: [PATCH] Tests: Lower Sculpt Dyntopo mesh size to 250000 in performance test This commit lowers the size of the mesh from approximately 2 million verts to 250 thousand verts. This brings the graph more in line with the mesh and multires usecase, and is more helpful in measuring and detecting real performance issues. While the upper end of dyntopo can certainly be massively improved, strokes that take in the seconds to complete are already unusable from a user perspective, --- tests/performance/tests/sculpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/performance/tests/sculpt.py b/tests/performance/tests/sculpt.py index 82db93d7873..4eab4fcd302 100644 --- a/tests/performance/tests/sculpt.py +++ b/tests/performance/tests/sculpt.py @@ -72,7 +72,7 @@ def prepare_sculpt_scene(context: any, mode: SculptMode): elif mode == SculptMode.MULTIRES: size = 150 elif mode == SculptMode.DYNTOPO: - size = 1500 + size = 500 else: raise NotImplementedError