video_core/shader: Refactor JIT-Engines into JitEngine type (#7210)

This commit is contained in:
Wunk
2023-11-26 15:15:36 -08:00
committed by GitHub
parent db7b929e47
commit 83b329f6e1
12 changed files with 80 additions and 165 deletions

View File

@@ -37,7 +37,7 @@ static inline u64 ComputeStructHash64(const T& data) noexcept {
* Combines the seed parameter with the provided hash, producing a new unique hash
* Implementation from: http://boost.sourceforge.net/doc/html/boost/hash_combine.html
*/
inline u64 HashCombine(std::size_t seed, const u64 hash) {
inline u64 HashCombine(const u64 seed, const u64 hash) {
return seed ^ (hash + 0x9e3779b9 + (seed << 6) + (seed >> 2));
}