-
Notifications
You must be signed in to change notification settings - Fork 3
Efficient Bulk Updating
Chris Collins edited this page Apr 13, 2020
·
1 revision
As xplanemp2 uses a list of updates pushed through a single API call, rather than the callback system it had previously, there's a few things to watch out for which can be performance killers.
The allocator will hurt your performance significantly or create heap fragmentation under heavy load which may cause you trouble later.
The correct solution is to allocate it once, oversized, and only resize it when you absolutely have to.
In order to let you leave holes in the update list, you can provide a null (0) XPMPPlaneID and that slot will be ignored.
Rather than rebuilding the entire update list every frame, if your data is static in memory, you can just blank out the holes when a plane is to be dropped, and then reuse those holes first.