mirror of
https://github.com/GayPizzaSpecifications/foundation.git
synced 2025-08-03 21:41:32 +00:00
Gjallarhorn: Render pool should ignore playback segments which are empty.
This commit is contained in:
@ -59,6 +59,9 @@ class BlockMapRenderPool<T>(
|
|||||||
val sliced = changelog.slice(slice)
|
val sliced = changelog.slice(slice)
|
||||||
val tracker = BlockLogTracker(blockTrackMode)
|
val tracker = BlockLogTracker(blockTrackMode)
|
||||||
tracker.replay(sliced)
|
tracker.replay(sliced)
|
||||||
|
if (tracker.isEmpty()) {
|
||||||
|
return
|
||||||
|
}
|
||||||
trackers[slice] = tracker
|
trackers[slice] = tracker
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user