
Efficient Entities
This 1.12.2 mod speeds up mob rendering by batching an entity's geometry into one GPU draw call instead of many.
Screenshots

About this Mod
Efficient Entities speeds up Minecraft by reducing the CPU overhead of rendering mobs, collecting each entity's geometry into a persistent GPU buffer and submitting it in one draw call instead of dozens of small ones.

Requirements: MixinBooter
Detailed Explanation:
Vanilla Minecraft renders entity models using OpenGL display lists one per body part, per mob, per frame. Each part triggers its own GL draw call along with matrix pushes, pops, and state changes. With many mobs on screen this adds up to thousands of individual GPU submissions every frame, which becomes a significant CPU bottleneck.
Efficient Entities fixes this by intercepting the rendering pipeline at two levels before the game even starts. An ASM transformer scans entity model classes at load time and injects batch markers around their render calls. A Mixin then redirects geometry output away from the display list path and into a persistent buffer mapped directly into GPU memory, so the CPU can write vertex data without any allocation or copying overhead.
When a mob renders, each body part's bone transforms rotation points, angles, offsets are accumulated in a Java-side matrix stack rather than going through OpenGL's matrix calls. The transformed vertex positions and packed normals are written directly into the mapped buffer via Unsafe memory operations. Once the whole model is done, everything is submitted in a single glDrawArrays call instead of one per part.
To prevent the CPU from writing into memory the GPU is still reading, the buffer is split into three rotating slices with fence syncs between them. The mod also handles render calls that bypass the normal entity model path the player's hand, held items, and armour pieces by detecting them and wrapping each in its own mini-batch automatically so nothing is missed.
Every 200 rendered frames the mod writes one summary line:
In an empty world with just your hand visible:
[EfficientEntities] Last 200 frames: 12 batches, 84 cubes, 200 auto-wrapped.
Near a group of mobs:
[EfficientEntities] Last 200 frames: 840 batches, 6120 cubes, 0 auto-wrapped.
Near armoured entities:
[EfficientEntities] Last 200 frames: 15000 batches, 90000 cubes, 400 auto-wrapped.
What each number means:
- Batches - number of entity model render calls processed through the VBO path that period. One model render call equals one batch; a complex entity like a horse may produce several.
- Cubes - total geometry processed. Grows with both the number of mobs and how complex their models are.
- Auto-wrapped - render calls caught by the fallback path (hand, held items, armour pieces). Roughly 2 per frame when both hand slots are occupied.
Available Versions
How to Install Efficient Entities on Your Server
Order Server
Order a Minecraft Java server with at least 3 GB RAM (4 GB recommended).
Set forge Loader
In the panel under "Egg", select the forge loader and matching Minecraft version (1.12.2).
Install Mod
Open the mod browser in the dashboard and search for "Efficient Entities". Click "Install" – done! Alternatively, upload the .jar via SFTP to the /mods folder.
Compatibility
Mod Loaders
Minecraft Versions
1.12.2
Server-side
✗ UnsupportedRecommended RAM
4 GB(min. 3 GB)Frequently Asked Questions
Efficient Entities server crashes on startup – what to do?
Most common cause: wrong forge version or insufficient RAM. Check the server log (latest.log) for "OutOfMemoryError" or "Mixin" errors. With Mado Hosting: ensure at least 3 GB RAM is allocated and the loader matches the mod version (1.12.2). You can switch loaders with one click in the panel.
Is Efficient Entities compatible with forge?
Efficient Entities officially supports forge for Minecraft 1.12.2. The Mado dashboard automatically detects incompatible loader combinations.
Server lagging with Efficient Entities – how to optimize performance?
Recommended RAM: 4 GB (per 8 players). Use /spark profiler to check if Efficient Entities consumes the most tick time. Common fixes: reduce server view-distance to 8-10, install "performant" or "starlight" as supplementary mods on Forge. With Mado Hosting, your server runs on NVMe SSDs with dedicated CPU cores for minimal latency.
Similar Mods
Rent Modded Server
Install Efficient Entities with just one click on your server.