-------------------------------------------------------------------------------- Description: Return complete shader path with appropriate prefixes --------------------------------------------------------------------------------
| 600 | // Return complete shader path with appropriate prefixes |
| 601 | // -------------------------------------------------------------------------------- |
| 602 | std::string EveSOFDNA::GetCompleteShaderPath( const char* path ) const |
| 603 | { |
| 604 | std::string shaderPath = std::string( "/" ) + std::string( path ); |
| 605 | StringInsertStubAfter( shaderPath, "/", GetShaderPrefix( IsHullAnimated() ) ); |
| 606 | return GetAreaShaderLocationResPath() + shaderPath; |
| 607 | } |
| 608 | |
| 609 | // -------------------------------------------------------------------------------- |
| 610 | // Description: |
no test coverage detected