diff options
Diffstat (limited to 'video.cpp')
-rw-r--r-- | video.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -676,10 +676,11 @@ template<> struct Hash_Function<Pso_Key> { size_t operator()(const Pso_Key& k) const { + uint64_t rpoh = Hash_Function<Rpo_Key>{}(k.rpo); return fnv1a64_2( k.pso.pipeline_hash, - (uint8_t*)&k.rpo, - sizeof k.rpo + (uint8_t*)&rpoh, + sizeof rpoh ); } }; |