The draw call for a material is due to part of the instructions to draw the mesh itself, so you end up with a draw call for each material that a mesh uses it’s not based off the material needing to be rendered in general.
You can reduce draw calls when using multiple copies of the same mesh, but you’re going to get those extra draw calls from different meshes even if they use the same material.
1 Like