-------------------------------------------------------------------------------------- Description: Collects render batches from this instanced mesh. Arguments: batches - Batch accumulator to add batches to areas - Vector of mesh areas for which batches need to be added data - Per-object data --------------------------------------------------------------------------------------
| 211 | // data - Per-object data |
| 212 | // -------------------------------------------------------------------------------------- |
| 213 | void Tr2InstancedMesh::GetBatches( ITriRenderBatchAccumulator* batches, |
| 214 | const Tr2MeshAreaVector* areas, |
| 215 | const Tr2PerObjectData* data, |
| 216 | float screenSize ) const |
| 217 | { |
| 218 | GetBatches( batches, areas, data, screenSize, false ); |
| 219 | } |
| 220 | |
| 221 | |
| 222 | void Tr2InstancedMesh::GetBatches( ITriRenderBatchAccumulator* batches, |
nothing calls this directly
no test coverage detected