summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-08-18 23:15:43 +0200
committer mooglyguy <therealmogminer@gmail.com>2018-08-18 23:15:54 +0200
commit99bc44a5ae588420eed6431d7f2746b6e8e322aa (patch)
tree6be1f19e51f80fa734d3c843f078ba1fbbb18599 /src/devices
parent0f107fde029bee98ca8d8a78a7035a86671d4760 (diff)
-poly_manager: Bumped up the default number of scanlines per bucket, nw
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/video/poly.h2
1 files changed, 1 insertions, 1 deletions
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);