| 68 | } |
| 69 | |
| 70 | bool IsLowDetailVtaPath( const wchar_t* name ) |
| 71 | { |
| 72 | auto length = wcslen( name ); |
| 73 | return length > 14 && wcscmp( name + length - 14, L"_lowdetail.vta" ) == 0; |
| 74 | } |
| 75 | |
| 76 | const uint32_t INVALID_LOD = std::numeric_limits<uint32_t>::max(); |
| 77 |