I understand that with static batching Unity combines meshes that are marked as static and have the same material. According to the documentation, “Unity can still cull meshes individually.”
How exactly is this done and what mesh information is sent to the GPU in scenarios where individual parts of the combined mesh are being culled? Does the GPU still receive the entire vertex and index buffer of the combined mesh? If so, how does the GPU know what parts within the mesh to “skip” and not bother processing at all?