From 99bc44a5ae588420eed6431d7f2746b6e8e322aa Mon Sep 17 00:00:00 2001 From: mooglyguy Date: Sat, 18 Aug 2018 23:15:43 +0200 Subject: [PATCH] -poly_manager: Bumped up the default number of scanlines per bucket, nw --- src/devices/video/poly.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/video/poly.h b/src/devices/video/poly.h index cda1c46dc3b..1b8130ceca0 100644 --- a/src/devices/video/poly.h +++ b/src/devices/video/poly.h @@ -132,7 +132,7 @@ private: // number of profiling ticks before we consider a wait "long" static constexpr osd_ticks_t POLY_LOG_WAIT_THRESHOLD = 1000; - static constexpr int SCANLINES_PER_BUCKET = 8; + static constexpr int SCANLINES_PER_BUCKET = 32; static constexpr int CACHE_LINE_SIZE = 64; // this is a general guess static constexpr int TOTAL_BUCKETS = (512 / SCANLINES_PER_BUCKET); static constexpr int UNITS_PER_POLY = (100 / SCANLINES_PER_BUCKET);