mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 06:02:28 +02:00
include fst URL in the GeometryExtra hash
This commit is contained in:
parent
6aede024f4
commit
ff8cb27256
1 changed files with 2 additions and 1 deletions
|
@ -80,7 +80,8 @@ namespace std {
|
|||
struct hash<GeometryExtra> {
|
||||
size_t operator()(const GeometryExtra& geometryExtra) const {
|
||||
size_t result = 0;
|
||||
hash_combine(result, geometryExtra.mapping.second, geometryExtra.textureBaseUrl, geometryExtra.combineParts);
|
||||
hash_combine(result, geometryExtra.mapping.first, geometryExtra.mapping.second, geometryExtra.textureBaseUrl,
|
||||
geometryExtra.combineParts);
|
||||
return result;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue