Hacker News new | ask | show | jobs
by martindbp 250 days ago
If you're allocating stuff every frame you'll run into problems quickly. Sure, you can use an object pool or arena allocator, but then you're basically circumventing GC.
1 comments

malloc often isn't fast enough for games either; arena allocators and ECS came to be for a reason.