mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-18 18:38:05 +08:00
Pin cache key and source id hashing to u64 fx state
This commit is contained in:
@@ -981,7 +981,7 @@ impl NodeNetwork {
|
||||
}
|
||||
|
||||
fn source_id_for_path(path: &[NodeId]) -> u64 {
|
||||
let mut hasher = DefaultHasher::new();
|
||||
let mut hasher = graphene_hash::FxHasher64::new();
|
||||
path.hash(&mut hasher);
|
||||
hasher.finish()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user