OptiCores
A client-side rendering optimization mod for NeoForge, featuring asynchronous culling specifically tuned for integrated graphics (Intel UHD/Iris Xe).

Opticore: Asynchronous Rendering Optimization
Opticore is a client-side companion mod for Embeddium and Sodium on NeoForge 1.21.1. It is specifically designed to alleviate the “Main Thread” bottlenecking found on systems using integrated graphics (Intel UHD, Iris Xe, and mobile CPUs).
Core Functionality
Asynchronous Culling Pipeline: Unlike standard culling methods that run on the main render thread, Opticore offloads Euclidean distance and Frustum-intersection math to a background worker thread.
Concurrent Data Management: Rendering visibility results are stored in a thread-safe ConcurrentHashMap, allowing for O(1) lookups during the render cycle with near-zero latency.
Dynamic Load Throttling: The mod monitors getSectionStatistics() to detect heavy chunk-loading periods. During high I/O spikes (e.g., world joining or teleporting), the mod temporarily reduces entity rendering overhead to prioritize terrain generation.
Technical Compatibility: Includes safety bypasses for custom block entity renderers (such as those in the Create Mod) and integrates with Distant Horizons to prevent culling during LOD baking passes.
Performance Impact
Opticore is most effective in environments with high entity counts (villages, farms, or modded dimensions). By offloading culling logic, it helps stabilize frame times and reduces “stuttering” during world exploration on 2-core and 4-core processors.