| 319 | } |
| 320 | |
| 321 | TriGeometryResMeshData* TriGeometryRes::GetMeshData( unsigned int meshIx ) const |
| 322 | { |
| 323 | if( !m_isGood || meshIx >= m_meshes.size() ) |
| 324 | { |
| 325 | return nullptr; |
| 326 | } |
| 327 | |
| 328 | return m_meshes[meshIx].get(); |
| 329 | } |
| 330 | |
| 331 | TriGeometryResLodData* TriGeometryRes::GetMeshLod( unsigned int meshIx, float screenSize ) const |
| 332 | { |
no test coverage detected