| 494 | |
| 495 | #if AX_ENABLE_CACHE_TEXTURE_DATA |
| 496 | int ProgramGL::getMappedLocation(int location) const |
| 497 | { |
| 498 | if (_mapToCurrentActiveLocation.find(location) != _mapToCurrentActiveLocation.end()) |
| 499 | return _mapToCurrentActiveLocation.at(location); |
| 500 | else |
| 501 | return -1; |
| 502 | } |
| 503 | |
| 504 | int ProgramGL::getOriginalLocation(int location) const |
| 505 | { |
no test coverage detected